hdu2616

Kill the monster

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1546    Accepted Submission(s): 1060


Problem Description
There is a mountain near yifenfei’s hometown. On the mountain lived a big monster. As a hero in hometown, yifenfei wants to kill it.
Now we know yifenfei have n spells, and the monster have m HP, when HP <= 0 meaning monster be killed. Yifenfei’s spells have different effect if used in different time. now tell you each spells’s effects , expressed (A ,M). A show the spell can cost A HP to monster in the common time. M show that when the monster’s HP <= M, using this spell can get double effect.
 

Input
The input contains multiple test cases.
Each test case include, first two integers n, m (2<n<10, 1<m<10^7), express how many spells yifenfei has.
Next n line , each line express one spell. (Ai, Mi).(0<Ai,Mi<=m).
 

Output
For each test case output one integer that how many spells yifenfei should use at least. If yifenfei can not kill the monster output -1.
 

Sample Input
3 100 10 20 45 89 5 40 3 100 10 20 45 90 5 40 3 100 10 20 45 84 5 40
 

Sample Output
3 2

-1

题意分析:有N个技能去打HP有M的怪兽,技能(A,M),技能伤害为A,当怪兽HP<=M时伤害为2*A。求打死怪兽(HP<=0)用的最少技能

AC代码:

#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
int a[15],b[15];
int used[15];
int n,m;
int minf;
void DFS(int blood,int cnt)
{
        if(cnt>n)
                return;
        if(cnt<minf&&blood<=0)
        {
                minf=cnt;
                return;
        }
        for(int i=1;i<=n;i++)
        {
                if(!used[i])
                {
                        used[i]=1;
                        if(blood<=b[i])
                                DFS(blood-2*a[i],cnt+1);
                        if(blood>b[i])
                                DFS(blood-a[i],cnt+1);
                        used[i]=0;
                }
        }
}
int main()
{
        while(scanf("%d%d",&n,&m)!=EOF)
        {
                for(int i=1;i<=n;i++)
                        scanf("%d%d",&a[i],&b[i]);
                memset(used,0,sizeof(used));
                minf=20;
                DFS(m,0);
                if(minf!=20)
                        printf("%d\n",minf);
                else
                        printf("-1\n");
        }
        return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值