CF1607G.Banquet Preparations 1

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A known chef has prepared nn dishes: the ii -th dish consists of aia_i grams of fish and bib_i grams of meat.

The banquet organizers estimate the balance of nn 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=1naii=1nbi\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 mm 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 mm 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 tt ( 1t1041 \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 nn and mm ( 1n21051 \leq n \leq 2 \cdot 10^5 ; 0m1060 \leq m \leq 10^6 ). The next nn lines describe dishes, the ii -th of them contains a pair of integers aia_i and bib_i ( 0ai,bi1060 \leq a_i, b_i \le 10^6 ) — the masses of fish and meat in the ii -th dish.

It is guaranteed that it is possible to eat mm grams of food from each dish. In other words, mai+bim \leq a_i+b_i for all ii from 11 to nn inclusive.

The sum of all nn values over all test cases in the test does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, print on the first line the minimal balance value that can be achieved by eating exactly mm grams of food from each dish.

Then print nn lines that describe a way to do this: the ii -th line should contain two integers xix_i and yiy_i ( 0xiai0 \leq x_i \leq a_i ; 0yibi0 \leq y_i \leq b_i ; xi+yi=mx_i+y_i=m ), where xix_i is how many grams of fish taster should eat from the ii -th meal and yiy_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
首页