A10630 | Polycarp at the Radio
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Polycarp is a music editor at the radio station. He received a playlist for tomorrow, that can be represented as a sequence $a_{1},a_{2},...,a_{n}$ , where $a_{i}$ is a band, which performs the $i$ -th song. Polycarp likes bands with the numbers from $1$ to $m$ , but he doesn't really like others.
We define as $b_{j}$ the number of songs the group $j$ is going to perform tomorrow. Polycarp wants to change the playlist in such a way that the minimum among the numbers $b_{1},b_{2},...,b_{m}$ will be as large as possible.
Find this maximum possible value of the minimum among the $b_{j}$ ( $1<=j<=m$ ), and the minimum number of changes in the playlist Polycarp needs to make to achieve it. One change in the playlist is a replacement of the performer of the $i$ -th song with any other group.
We define as $b_{j}$ the number of songs the group $j$ is going to perform tomorrow. Polycarp wants to change the playlist in such a way that the minimum among the numbers $b_{1},b_{2},...,b_{m}$ will be as large as possible.
Find this maximum possible value of the minimum among the $b_{j}$ ( $1<=j<=m$ ), and the minimum number of changes in the playlist Polycarp needs to make to achieve it. One change in the playlist is a replacement of the performer of the $i$ -th song with any other group.
输入格式
The first line of the input contains two integers $n$ and $m$ ( $1<=m<=n<=2000$ ).
The second line contains $n$ integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=10^{9}$ ), where $a_{i}$ is the performer of the $i$ -th song.
The second line contains $n$ integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=10^{9}$ ), where $a_{i}$ is the performer of the $i$ -th song.
输出格式
In the first line print two integers: the maximum possible value of the minimum among the $b_{j}$ ( $1<=j<=m$ ), where $b_{j}$ is the number of songs in the changed playlist performed by the $j$ -th band, and the minimum number of changes in the playlist Polycarp needs to make.
In the second line print the changed playlist.
If there are multiple answers, print any of them.
In the second line print the changed playlist.
If there are multiple answers, print any of them.
输入输出样例
输入 #1
4 2 1 2 3 2
输出 #1
2 1 1 2 1 2
输入 #2
7 3 1 3 2 2 2 2 1
输出 #2
2 1 1 3 3 2 2 2 1
输入 #3
4 4 1000000000 100 7 1000000000
输出 #3
1 4 1 2 3 4
In the first sample, after Polycarp's changes the first band performs two songs ( $b_{1}=2$ ), and the second band also performs two songs ( $b_{2}=2$ ). Thus, the minimum of these values equals to $2$ . It is impossible to achieve a higher minimum value by any changes in the playlist.
In the second sample, after Polycarp's changes the first band performs two songs ( $b_{1}=2$ ), the second band performs three songs ( $b_{2}=3$ ), and the third band also performs two songs ( $b_{3}=2$ ). Thus, the best minimum value is $2$ .
In the second sample, after Polycarp's changes the first band performs two songs ( $b_{1}=2$ ), the second band performs three songs ( $b_{2}=3$ ), and the third band also performs two songs ( $b_{3}=2$ ). Thus, the best minimum value is $2$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted