CF479B.Towers

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

As you know, all the kids in Berland love playing with cubes. Little Petya has nn towers consisting of cubes of the same size. Tower with number ii consists of aia_{i} cubes stacked one on top of the other. Petya defines the instability of a set of towers as a value equal to the difference between the heights of the highest and the lowest of the towers. For example, if Petya built five cube towers with heights (8, 3, 2, 6, 3), the instability of this set is equal to 6 (the highest tower has height 8, the lowest one has height 2).

The boy wants the instability of his set of towers to be as low as possible. All he can do is to perform the following operation several times: take the top cube from some tower and put it on top of some other tower of his set. Please note that Petya would never put the cube on the same tower from which it was removed because he thinks it's a waste of time.

Before going to school, the boy will have time to perform no more than kk such operations. Petya does not want to be late for class, so you have to help him accomplish this task.

输入格式

As you know, all the kids in Berland love playing with cubes. Little Petya has nn towers consisting of cubes of the same size. Tower with number ii consists of aia_{i} cubes stacked one on top of the other. Petya defines the instability of a set of towers as a value equal to the difference between the heights of the highest and the lowest of the towers. For example, if Petya built five cube towers with heights (8, 3, 2, 6, 3), the instability of this set is equal to 6 (the highest tower has height 8, the lowest one has height 2).

The boy wants the instability of his set of towers to be as low as possible. All he can do is to perform the following operation several times: take the top cube from some tower and put it on top of some other tower of his set. Please note that Petya would never put the cube on the same tower from which it was removed because he thinks it's a waste of time.

Before going to school, the boy will have time to perform no more than kk such operations. Petya does not want to be late for class, so you have to help him accomplish this task.

输出格式

In the first line print two space-separated non-negative integers ss and mm ( m<=km<=k ). The first number is the value of the minimum possible instability that can be obtained after performing at most kk operations, the second number is the number of operations needed for that.

In the next mm lines print the description of each operation as two positive integers ii and jj , each of them lies within limits from 11 to nn . They represent that Petya took the top cube from the ii -th tower and put in on the jj -th one ( iji≠j ). Note that in the process of performing operations the heights of some towers can become equal to zero.

If there are multiple correct sequences at which the minimum possible instability is achieved, you are allowed to print any of them.

输入输出样例

  • 输入#1

    3 2
    5 8 5
    

    输出#1

    0 2
    2 1
    2 3
    
  • 输入#2

    3 4
    2 2 4
    

    输出#2

    1 1
    3 2
    
  • 输入#3

    5 3
    8 3 2 6 3
    

    输出#3

    3 3
    1 3
    1 2
    1 3
    

说明/提示

In the first sample you need to move the cubes two times, from the second tower to the third one and from the second one to the first one. Then the heights of the towers are all the same and equal to 6.

首页