Holding Bin-Laden Captive!
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 12069 Accepted Submission(s): 5394
“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!
#include<iostream>
#define maxn 9000
using namespace std;
int c1[maxn],c2[maxn];
int main()
{
int num1,num2,num3,i,j;
while(cin>>num1>>num2>>num3,num1+num2+num3)
{
memset(c1,,sizeof(c1));
memset(c2,,sizeof(c2));
for(i=;i<=num1;i++)
{
c1[i]=;
for(j=;j<=num2;j++)
{
c2[*j+i]+=c1[i];
}
}
for(i=;i<=num1+*num2;i++)
{
c1[i]=c2[i];
c2[i]=;
}
for(i=;i<=num1+*num2;i++)
{
for(j=;j<=num3;j++)
{
c2[i+*j]+=c1[i];
}
}
for(i=;i<=num1+*num2+*num3;i++)
{
if(c2[i]==)
{
break;
}
}
cout<<i<<endl;
}
return ;
}