A14749 | Banquet Preparations 1
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A known chef has prepared $n$ dishes: the $i$ -th dish consists of $a_i$ grams of fish and $b_i$ grams of meat.
The banquet organizers estimate the balance of $n$ dishes as follows. The balance is equal to the absolute value of the difference between the total mass of fish and the total mass of meat.
Technically, the balance equals to $\left|\sum\limits_{i=1}^n a_i - \sum\limits_{i=1}^n b_i\right|$ . The smaller the balance, the better.
In order to improve the balance, a taster was invited. He will eat exactly $m$ grams of food from each dish. For each dish, the taster determines separately how much fish and how much meat he will eat. The only condition is that he should eat exactly $m$ grams of each dish in total.
Determine how much of what type of food the taster should eat from each dish so that the value of the balance is as minimal as possible. If there are several correct answers, you may choose any of them.
The banquet organizers estimate the balance of $n$ dishes as follows. The balance is equal to the absolute value of the difference between the total mass of fish and the total mass of meat.
Technically, the balance equals to $\left|\sum\limits_{i=1}^n a_i - \sum\limits_{i=1}^n b_i\right|$ . The smaller the balance, the better.
In order to improve the balance, a taster was invited. He will eat exactly $m$ grams of food from each dish. For each dish, the taster determines separately how much fish and how much meat he will eat. The only condition is that he should eat exactly $m$ grams of each dish in total.
Determine how much of what type of food the taster should eat from each dish so that the value of the balance is as minimal as possible. If there are several correct answers, you may choose any of them.
输入格式
The first line of input data contains an integer $t$ ( $1 \leq t \leq 10^4$ ) — the number of the test cases.
Each test case's description is preceded by a blank line. Next comes a line that contains integers $n$ and $m$ ( $1 \leq n \leq 2 \cdot 10^5$ ; $0 \leq m \leq 10^6$ ). The next $n$ lines describe dishes, the $i$ -th of them contains a pair of integers $a_i$ and $b_i$ ( $0 \leq a_i, b_i \le 10^6$ ) — the masses of fish and meat in the $i$ -th dish.
It is guaranteed that it is possible to eat $m$ grams of food from each dish. In other words, $m \leq a_i+b_i$ for all $i$ from $1$ to $n$ inclusive.
The sum of all $n$ values over all test cases in the test does not exceed $2 \cdot 10^5$ .
Each test case's description is preceded by a blank line. Next comes a line that contains integers $n$ and $m$ ( $1 \leq n \leq 2 \cdot 10^5$ ; $0 \leq m \leq 10^6$ ). The next $n$ lines describe dishes, the $i$ -th of them contains a pair of integers $a_i$ and $b_i$ ( $0 \leq a_i, b_i \le 10^6$ ) — the masses of fish and meat in the $i$ -th dish.
It is guaranteed that it is possible to eat $m$ grams of food from each dish. In other words, $m \leq a_i+b_i$ for all $i$ from $1$ to $n$ inclusive.
The sum of all $n$ values over all test cases in the test does not exceed $2 \cdot 10^5$ .
输出格式
For each test case, print on the first line the minimal balance value that can be achieved by eating exactly $m$ grams of food from each dish.
Then print $n$ lines that describe a way to do this: the $i$ -th line should contain two integers $x_i$ and $y_i$ ( $0 \leq x_i \leq a_i$ ; $0 \leq y_i \leq b_i$ ; $x_i+y_i=m$ ), where $x_i$ is how many grams of fish taster should eat from the $i$ -th meal and $y_i$ is how many grams of meat.
If there are several ways to achieve a minimal balance, find any of them.
Then print $n$ lines that describe a way to do this: the $i$ -th line should contain two integers $x_i$ and $y_i$ ( $0 \leq x_i \leq a_i$ ; $0 \leq y_i \leq b_i$ ; $x_i+y_i=m$ ), where $x_i$ is how many grams of fish taster should eat from the $i$ -th meal and $y_i$ is how many grams of meat.
If there are several ways to achieve a minimal balance, find any of them.
输入输出样例
输入 #1
8 1 5 3 4 1 6 3 4 2 2 1 3 4 2 2 4 1 3 1 7 3 6 1 7 1 8 1 9 3 6 1 8 1 9 30 10 3 4 3 1 3 2 4 1 5 4 0 7 6 4 0 8 4 1 5 3
输出 #1
0 2 3 1 3 3 0 1 1 1 1 2 1 3 0 4 3 0 6 0 6 0 6 7 1 5 1 5 6 0 0 3 1 3 1 3 1 0 0 4 2 2 0 4 3 1 1 3
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted