A12135 | Vasya and Multisets
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Vasya has a multiset $s$ consisting of $n$ integer numbers. Vasya calls some number $x$ nice if it appears in the multiset exactly once. For example, multiset $\{1, 1, 2, 3, 3, 3, 4\}$ contains nice numbers $2$ and $4$ .
Vasya wants to split multiset $s$ into two multisets $a$ and $b$ (one of which may be empty) in such a way that the quantity of nice numbers in multiset $a$ would be the same as the quantity of nice numbers in multiset $b$ .
Vasya wants to split multiset $s$ into two multisets $a$ and $b$ (one of which may be empty) in such a way that the quantity of nice numbers in multiset $a$ would be the same as the quantity of nice numbers in multiset $b$ .
输入格式
The first line contains a single integer $n~(2 \le n \le 100)$ .
The second line contains $n$ integers $s_1, s_2, \dots s_n~(1 \le s_i \le 100)$ — the multiset $s$ .
The second line contains $n$ integers $s_1, s_2, \dots s_n~(1 \le s_i \le 100)$ — the multiset $s$ .
输出格式
If there exists no split of $s$ to satisfy the given requirements, then print "NO" in the first line.
Otherwise print "YES" in the first line.
The second line should contain a string, consisting of $n$ characters. $i$ -th character should be equal to 'A' if the $i$ -th element of multiset $s$ goes to multiset $a$ and 'B' if if the $i$ -th element of multiset $s$ goes to multiset $b$ . Elements are numbered from $1$ to $n$ in the order they are given in the input.
If there exist multiple solutions, then print any of them.
Otherwise print "YES" in the first line.
The second line should contain a string, consisting of $n$ characters. $i$ -th character should be equal to 'A' if the $i$ -th element of multiset $s$ goes to multiset $a$ and 'B' if if the $i$ -th element of multiset $s$ goes to multiset $b$ . Elements are numbered from $1$ to $n$ in the order they are given in the input.
If there exist multiple solutions, then print any of them.
输入输出样例
输入 #1
4 3 5 7 1
输出 #1
YES BABA
输入 #2
3 3 5 1
输出 #2
NO
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted