CF1607G.Banquet Preparations 1
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
A known chef has prepared n dishes: the i -th dish consists of ai grams of fish and bi 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 i=1∑nai−i=1∑nbi . 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≤t≤104 ) — 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≤n≤2⋅105 ; 0≤m≤106 ). The next n lines describe dishes, the i -th of them contains a pair of integers ai and bi ( 0≤ai,bi≤106 ) — 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≤ai+bi 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⋅105 .
输出格式
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 xi and yi ( 0≤xi≤ai ; 0≤yi≤bi ; xi+yi=m ), where xi is how many grams of fish taster should eat from the i -th meal and yi 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