CF920D.Tanks

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Petya sometimes has to water his field. To water the field, Petya needs a tank with exactly VV ml of water.

Petya has got NN tanks, ii -th of them initially containing aia_{i} ml of water. The tanks are really large, any of them can contain any amount of water (no matter how large this amount is).

Also Petya has got a scoop that can contain up to KK ml of water (initially the scoop is empty). This scoop can be used to get some water from some tank, and after that pour it all into some other tank (it is impossible to get water from multiple tanks without pouring it, or leave some water in the scoop when pouring it). When Petya tries to get some water from a tank, he gets min(v,K)min(v,K) water, where vv is the current volume of water in the tank.

Is it possible to obtain a tank with exactly VV ml of water using these operations? If it is possible, print a sequence of operations that allows to do it. If there are multiple ways to obtain needed amount of water in some tank, print any of them.

输入格式

The first line contains 33 integers: NN (2<=N<=5000)(2<=N<=5000) , KK (1<=K<=5000)(1<=K<=5000) , and VV (0<=V<=109)(0<=V<=10^{9}) — the number of tanks, the maximum volume of water the scoop can contain, and the required amount of water in some tank, respectively.

The second line contains NN integers aia_{i} (0<=ai<=105)(0<=a_{i}<=10^{5}) , where aia_{i} is initial volume of water in ii -th tank.

输出格式

If it is impossible to obtain a tank with exactly VV ml of water, print NO.

Otherwise print YES in the first line, and beginning from the second line, print the sequence of operations in the following format:

Each line has to contain 33 numbers denoting a compressed operation: " cntcnt xx yy " (1<=cnt<=109,1<=x,y<=N)(1<=cnt<=10^{9},1<=x,y<=N) , where xx is the index of the tank where we get water, yy is the index of the tank where we pour water, and cntcnt is the number of times we transfer water from tank xx to tank yy .

The number of these lines must not exceed N+5N+5 .

输入输出样例

  • 输入#1

    2 3 5
    2 3
    

    输出#1

    YES
    1 2 1
    
  • 输入#2

    2 3 4
    2 3
    

    输出#2

    NO
    
  • 输入#3

    5 2 0
    1 3 5 7 9
    

    输出#3

    YES
    2 2 1
    3 3 1
    4 4 1
    5 5 1
    
首页