Holding Bin-Laden Captive!
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 11583 Accepted Submission(s): 5188
“Oh, God! How terrible! ”
Don’t be so afraid, guys. Although he hides in a cave of Hang Zhou, he dares not to go out. Laden is so bored recent years that he fling himself into some math problems, and he said that if anyone can solve his problem, he will give himself up!
Ha-ha! Obviously, Laden is too proud of his intelligence! But, what is his problem?
“Given some Chinese Coins (硬币) (three kinds-- 1, 2, 5), and their number is num_1, num_2 and num_5 respectively, please output the minimum value that you cannot pay with given coins.”
You, super ACMer, should solve the problem easily, and don’t forget to take $25000000 from Bush!
0 0 0
#include <iostream>
#include <cstdio>
#include <cstring> using namespace std; const int maxn=;
const int valu[]={,,,};
int c1[maxn],c2[maxn];
int a,b,c; void isOK()
{
int t[];
t[]=;t[]=a;t[]=b;t[]=c;
memset(c1,,sizeof(c1));
memset(c2,,sizeof(c2));
int n=*t[]+*t[]+*t[];//最大的项数
for(int i=;i<=a;i++)
{
c1[i]=;
}
for(int i=;i<=;i++)//层数的限制
{
for(int j=;j<=n;j++)
{
for(int k=;k+j<=n&&k<=valu[i]*t[i];k+=valu[i])//个数的限制
{
c2[k+j]+=c1[j];
}
}
for(int j=;j<=n;j++)
{
c1[j]=c2[j]; c2[j]=;
}
} for(int i=;i<=n+;i++)
{
if(c1[i]==)
{
printf("%d\n",i);
break;
}
}
} int main()
{
while(scanf("%d%d%d",&a,&b,&c)!=EOF)
{
if(a==&&b==c&&c==) break;
isOK();
}
return ;
}