Codeforces Beta Round #37 B. Computer Game 暴力 贪心

B. Computer Game

题目连接:

http://www.codeforces.com/contest/37/problem/B

Description

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: max — the initial amount of health and reg — regeneration rate per second.

2) Every scroll also has two parameters: powi — 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 powi percent of health the scroll cannot be used); and dmgi 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 dmgi 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 reg of health (at the same time he can’t have more than max 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) 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.

Input

The first line contains three integers N, max and reg (1 ≤ N, max, reg ≤ 1000) –– the amount of scrolls and the parameters of the boss. The next N lines contain two integers powi and dmgi each — the parameters of the i-th scroll (0 ≤ powi ≤ 100, 1 ≤ dmgi ≤ 2000).

Output

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 0 seconds.

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

Sample Input

2 10 3
100 3
99 1

Sample Output

NO

Hint

题意

有一个boss有hp点血,然后每秒钟回复reg

现在你有n个魔法,每个魔法只能在BOSS的血量大于p[i]%的时候使用,会给boss挂上一个每秒钟掉d[i]的buff

现在问你你怎么使用这个魔法,才能让boss死的最快

题解:

贪心,每一秒钟使用最厉害的技能就好了……

然后直接暴力莽一波

代码

#include<bits/stdc++.h>
using namespace std;
const int maxn = 1005;
vector<pair<int,int> >ans;
int b[maxn],c[maxn],vis[maxn];
int main()
{
    int n,hp,reg;
    scanf("%d%d%d",&n,&hp,&reg);
    for(int i=0;i<n;i++)scanf("%d%d",&b[i],&c[i]);
    int cur=hp,dmg=0,t=0;
    int flag=0;
    while(cur>0)
    {
        cur-=dmg;
        cur+=reg;
        cur=min(hp,cur);
        if(cur<=0)break;
        int p = -1;
        for(int i=0;i<n;i++)
        {
            if(!vis[i]&&b[i]*hp>=100*cur)
            {
                if(p==-1||c[i]>c[p])
                    p=i;
            }
        }
        if(p!=-1)
        {
            vis[p]=1;
            dmg+=c[p];
            ans.push_back(make_pair(t,p+1));
        }
        else{
            if(cur==hp)
            {
                flag=1;
                break;
            }
        }
        ++t;
    }
    if(flag)return puts("NO"),0;
    else
    {
        printf("YES\n");
        printf("%d %d\n",t,ans.size());
        for(int i=0;i<ans.size();i++)
            cout<<ans[i].first<<" "<<ans[i].second<<endl;
    }
}
    原文作者:qscqesze
    原文地址: https://www.cnblogs.com/qscqesze/p/5509003.html
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞