A14748 | Banquet Preparations 2
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The chef has cooked $n$ dishes yet again: the $i$ -th dish consists of $a_i$ grams of fish and $b_i$ grams of meat.
Banquet organizers consider two dishes $i$ and $j$ equal if $a_i=a_j$ and $b_i=b_j$ at the same time.
The banquet organizers estimate the variety of $n$ dishes as follows. The variety of a set of dishes is equal to the number of different dishes in it. The less variety is, the better.
In order to reduce the variety, a taster was invited. He will eat exactly $m_i$ 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 will eat exactly $m_i$ grams of the $i$ -th dish in total.
Determine how much of what type of food the taster should eat from each dish so that the value of variety is the minimum possible. If there are several correct answers, you may output any of them.
Banquet organizers consider two dishes $i$ and $j$ equal if $a_i=a_j$ and $b_i=b_j$ at the same time.
The banquet organizers estimate the variety of $n$ dishes as follows. The variety of a set of dishes is equal to the number of different dishes in it. The less variety is, the better.
In order to reduce the variety, a taster was invited. He will eat exactly $m_i$ 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 will eat exactly $m_i$ grams of the $i$ -th dish in total.
Determine how much of what type of food the taster should eat from each dish so that the value of variety is the minimum possible. If there are several correct answers, you may output any of them.
输入格式
The first line of input data contains an integer $t$ ( $1 \leq t \leq 10^4$ ) — the number of test cases.
Each test case's description is preceded by a blank line. Next comes a line that contains an integer $n$ ( $1 \leq n \leq 2 \cdot 10^5$ ) — the number of dishes. Then follows $n$ lines, $i$ -th of which contains three integers $a_i$ , $b_i$ and $m_i$ ( $0 \leq a_i, b_i \le 10^6$ ; $0 \le m_i \le a_i+b_i$ ) — the mass of fish in $i$ -th dish, the mass of meat in $i$ -th dish and how many grams in total the taster should eat in $i$ -th dish.
The sum of all $n$ values for all input data sets 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 an integer $n$ ( $1 \leq n \leq 2 \cdot 10^5$ ) — the number of dishes. Then follows $n$ lines, $i$ -th of which contains three integers $a_i$ , $b_i$ and $m_i$ ( $0 \leq a_i, b_i \le 10^6$ ; $0 \le m_i \le a_i+b_i$ ) — the mass of fish in $i$ -th dish, the mass of meat in $i$ -th dish and how many grams in total the taster should eat in $i$ -th dish.
The sum of all $n$ values for all input data sets in the test does not exceed $2 \cdot 10^5$ .
输出格式
For each test case, print on the first line the minimum value of variety that can be achieved by eating exactly $m_i$ grams of food (for all $i$ from $1$ to $n$ ) from a dish $i$ .
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_i$ ), where $x_i$ is how many grams of fish the taster should eat from $i$ -th dish, and $y_i$ is how many grams of meat.
If there are several ways to achieve a minimum balance, print 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_i$ ), where $x_i$ is how many grams of fish the taster should eat from $i$ -th dish, and $y_i$ is how many grams of meat.
If there are several ways to achieve a minimum balance, print any of them.
输入输出样例
输入 #1
5 3 10 10 2 9 9 0 10 9 1 2 3 4 1 5 1 2 3 7 2 5 6 5 4 5 5 6 1 13 42 50 5 5 7 12 3 1 4 7 3 7 0 0 0 4 1 5
输出 #1
1 1 1 0 0 1 0 2 0 1 1 1 2 3 2 0 4 1 5 1 8 42 2 5 7 3 1 4 3 0 0 4 1
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted