Kill the monster
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 642 Accepted Submission(s): 453
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.
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).
3 100 10 20 45 89 5 40 3 100 10 20 45 90 5 40 3 100 10 20 45 84 5 40
3 2 -1
#include<iostream>
#include<cstring>
using namespace std;
int a[15],b[15];
int used[15];
int minf;
int n,m;
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(cin>>n>>m)
{
for(int i=1;i<=n;i++)
{
cin>>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;
}
方法二:
#include <iostream> #include <stdio.h> #include <algorithm> using namespace std; int main() { int o[10],a[10],m[10]; int n,M,count,min; while(cin>>n>>M) { for(int i=0;i<n;i++) cin>>a[i]>>m[i]; for(int i=0;i<n;i++) o[i] = i; min = 100; do{ count = 0; int tem = M; for(int i=0;i<n;i++) { count++; if(tem<=m[o[i]]) tem -= a[o[i]]*2; else tem -= a[o[i]]; if(tem<=0) { if(count<min) min = count; break; } } }while(next_permutation(o,o+n)); if(min==100)printf("-1\n"); else printf("%d\n",min); } return 0; }