CF37B.Computer Game

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Vasya’s elder brother Petya loves playing computer games. In one of his favourite computer games Petya reached the final level where a fight with the boss take place.

While playing the game Petya found spell scrolls and now he is about to use them. Let’s describe the way fighting goes on this level:

1) The boss has two parameters: maxmax — the initial amount of health and regreg — regeneration rate per second.

2) Every scroll also has two parameters: powipow_{i} — spell power measured in percents — the maximal amount of health counted off the initial one, which allows to use the scroll (i.e. if the boss has more than powipow_{i} percent of health the scroll cannot be used); and dmgidmg_{i} the damage per second inflicted upon the boss if the scroll is used. As soon as a scroll is used it disappears and another spell is cast upon the boss that inflicts dmgidmg_{i} of damage per second upon him until the end of the game.

During the battle the actions per second are performed in the following order: first the boss gets the damage from all the spells cast upon him, then he regenerates regreg of health (at the same time he can’t have more than maxmax of health), then the player may use another scroll (no more than one per second).

The boss is considered to be defeated if at the end of a second he has nonpositive ( <=0<=0 ) amount of health.

Help Petya to determine whether he can win with the set of scrolls available to him and if he can, determine the minimal number of seconds he needs to do it.

输入格式

The first line contains three integers NN , maxmax and regreg ( 1<=N,max,reg<=10001<=N,max,reg<=1000 ) –– the amount of scrolls and the parameters of the boss. The next NN lines contain two integers powipow_{i} and dmgidmg_{i} each — the parameters of the ii -th scroll ( 0<=powi<=1000<=pow_{i}<=100 , 1<=dmgi<=20001<=dmg_{i}<=2000 ).

输出格式

In case Petya can’t complete this level, output in the single line NO.

Otherwise, output on the first line YES. On the second line output the minimal time after which the boss can be defeated and the number of used scrolls. In the next lines for each used scroll output space-separated number of seconds passed from the start of the battle to the moment the scroll was used and the number of the scroll. Scrolls are numbered starting from 1 in the input order. The first scroll is considered to be available to be used after 00 seconds.

Output scrolls in the order they were used. It is not allowed to use scrolls after the boss is defeated.

输入输出样例

  • 输入#1

    2 10 3
    100 3
    99 1
    

    输出#1

    NO
    
  • 输入#2

    2 100 10
    100 11
    90 9
    

    输出#2

    YES
    19 2
    0 1
    10 2
    
首页