A14203 | Phoenix and Towers
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Phoenix has $n$ blocks of height $h_1, h_2, \dots, h_n$ , and all $h_i$ don't exceed some value $x$ . He plans to stack all $n$ blocks into $m$ separate towers. The height of a tower is simply the sum of the heights of its blocks. For the towers to look beautiful, no two towers may have a height difference of strictly more than $x$ .
Please help Phoenix build $m$ towers that look beautiful. Each tower must have at least one block and all blocks must be used.
Please help Phoenix build $m$ towers that look beautiful. Each tower must have at least one block and all blocks must be used.
输入格式
The input consists of multiple test cases. The first line contains an integer $t$ ( $1 \le t \le 1000$ ) — the number of test cases.
The first line of each test case contains three integers $n$ , $m$ , and $x$ ( $1 \le m \le n \le 10^5$ ; $1 \le x \le 10^4$ ) — the number of blocks, the number of towers to build, and the maximum acceptable height difference of any two towers, respectively.
The second line of each test case contains $n$ space-separated integers ( $1 \le h_i \le x$ ) — the heights of the blocks.
It is guaranteed that the sum of $n$ over all the test cases will not exceed $10^5$ .
The first line of each test case contains three integers $n$ , $m$ , and $x$ ( $1 \le m \le n \le 10^5$ ; $1 \le x \le 10^4$ ) — the number of blocks, the number of towers to build, and the maximum acceptable height difference of any two towers, respectively.
The second line of each test case contains $n$ space-separated integers ( $1 \le h_i \le x$ ) — the heights of the blocks.
It is guaranteed that the sum of $n$ over all the test cases will not exceed $10^5$ .
输出格式
For each test case, if Phoenix cannot build $m$ towers that look beautiful, print NO. Otherwise, print YES, followed by $n$ integers $y_1, y_2, \dots, y_n$ , where $y_i$ ( $1 \le y_i \le m$ ) is the index of the tower that the $i$ -th block is placed in.
If there are multiple solutions, print any of them.
If there are multiple solutions, print any of them.
输入输出样例
输入 #1
2 5 2 3 1 2 3 1 2 4 3 3 1 1 2 3
输出 #1
YES 1 1 1 2 2 YES 1 2 2 3
In the first test case, the first tower has height $1+2+3=6$ and the second tower has height $1+2=3$ . Their difference is $6-3=3$ which doesn't exceed $x=3$ , so the towers are beautiful.
In the second test case, the first tower has height $1$ , the second tower has height $1+2=3$ , and the third tower has height $3$ . The maximum height difference of any two towers is $3-1=2$ which doesn't exceed $x=3$ , so the towers are beautiful.
In the second test case, the first tower has height $1$ , the second tower has height $1+2=3$ , and the third tower has height $3$ . The maximum height difference of any two towers is $3-1=2$ which doesn't exceed $x=3$ , so the towers are beautiful.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted