A12893 | Balanced Rating Changes
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Another Codeforces Round has just finished! It has gathered $n$ participants, and according to the results, the expected rating change of participant $i$ is $a_i$ . These rating changes are perfectly balanced — their sum is equal to $0$ .
Unfortunately, due to minor technical glitches, the round is declared semi-rated. It means that all rating changes must be divided by two.
There are two conditions though:
- For each participant $i$ , their modified rating change $b_i$ must be integer, and as close to $\frac{a_i}{2}$ as possible. It means that either $b_i = \lfloor \frac{a_i}{2} \rfloor$ or $b_i = \lceil \frac{a_i}{2} \rceil$ . In particular, if $a_i$ is even, $b_i = \frac{a_i}{2}$ . Here $\lfloor x \rfloor$ denotes rounding down to the largest integer not greater than $x$ , and $\lceil x \rceil$ denotes rounding up to the smallest integer not smaller than $x$ .
- The modified rating changes must be perfectly balanced — their sum must be equal to $0$ .
Can you help with that?
Unfortunately, due to minor technical glitches, the round is declared semi-rated. It means that all rating changes must be divided by two.
There are two conditions though:
- For each participant $i$ , their modified rating change $b_i$ must be integer, and as close to $\frac{a_i}{2}$ as possible. It means that either $b_i = \lfloor \frac{a_i}{2} \rfloor$ or $b_i = \lceil \frac{a_i}{2} \rceil$ . In particular, if $a_i$ is even, $b_i = \frac{a_i}{2}$ . Here $\lfloor x \rfloor$ denotes rounding down to the largest integer not greater than $x$ , and $\lceil x \rceil$ denotes rounding up to the smallest integer not smaller than $x$ .
- The modified rating changes must be perfectly balanced — their sum must be equal to $0$ .
Can you help with that?
输入格式
The first line contains a single integer $n$ ( $2 \le n \le 13\,845$ ), denoting the number of participants.
Each of the next $n$ lines contains a single integer $a_i$ ( $-336 \le a_i \le 1164$ ), denoting the rating change of the $i$ -th participant.
The sum of all $a_i$ is equal to $0$ .
Each of the next $n$ lines contains a single integer $a_i$ ( $-336 \le a_i \le 1164$ ), denoting the rating change of the $i$ -th participant.
The sum of all $a_i$ is equal to $0$ .
输出格式
Output $n$ integers $b_i$ , each denoting the modified rating change of the $i$ -th participant in order of input.
For any $i$ , it must be true that either $b_i = \lfloor \frac{a_i}{2} \rfloor$ or $b_i = \lceil \frac{a_i}{2} \rceil$ . The sum of all $b_i$ must be equal to $0$ .
If there are multiple solutions, print any. We can show that a solution exists for any valid input.
For any $i$ , it must be true that either $b_i = \lfloor \frac{a_i}{2} \rfloor$ or $b_i = \lceil \frac{a_i}{2} \rceil$ . The sum of all $b_i$ must be equal to $0$ .
If there are multiple solutions, print any. We can show that a solution exists for any valid input.
输入输出样例
输入 #1
3 10 -5 -5
输出 #1
5 -2 -3
输入 #2
7 -7 -29 0 3 24 -29 38
输出 #2
-3 -15 0 2 12 -15 19
In the first example, $b_1 = 5$ , $b_2 = -3$ and $b_3 = -2$ is another correct solution.
In the second example there are $6$ possible solutions, one of them is shown in the example output.
In the second example there are $6$ possible solutions, one of them is shown in the example output.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted