zoukankan      html  css  js  c++  java
  • HDU 1085 Holding BinLaden Captive!

    Holding Bin-Laden Captive!

    We all know that Bin-Laden is a notorious terrorist, and he has disappeared for a long time. But recently, it is reported that he hides in Hang Zhou of China! 
    “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!

     
    Input
    Input contains multiple test cases. Each test case contains 3 positive integers num_1, num_2 and num_5 (0<=num_i<=1000). A test case containing 0 0 0 terminates the input and this test case is not to be processed.
     
    Output
    Output the minimum positive value that one cannot pay with given coins, one line for one case.
     
    Sample Input
    1 1 3 0 0 0
     
    Sample Output
    4

    解:母函数求解

    #include<iostream>
    using namespace std;
    #include<string.h>
    int c1[10000],c2[10000];
    int main()
    {
        int c[3];
        int i,j,k,k1,m;    
        while(scanf("%d%d%d",&c[0],&c[1],&c[2])!=EOF&&(c[0]||c[1]||c[2]))
        {
            m=c[0]*1+c[1]*2+c[2]*5;
            memset(c1,0,sizeof(c1));
            memset(c2,0,sizeof(c2));
            for(i=0;i<=c[0];i++)
            {
                c1[i]=1;
            }
           for(j=0;j<=m;j++)
            for(k=0,k1=0;k+j<=m&&k1<=c[1];k+=2,k1++)
            {
                c2[k+j]+=c1[j];    
            }
            for(j=0;j<=m;j++)
             {
                 c1[j]=c2[j];
                 c2[j]=0;
             }
            for(j=0;j<=m;j++)
             for(k=0,k1=0;k+j<=m&&k1<=c[2];k+=5,k1++)
             {
                 c2[k+j]+=c1[j];
             }
            for(j=0;j<=m;j++)
             {
                 c1[j]=c2[j];
             }
            for(j=0;j<=m;j++)
            {
                if(c1[j]==0)
                {
                 printf("%d\n",j);
                 break;
                }
            }
            if(j==m+1)
            printf("%d\n",j);
        }//while
            
        return 0;
    }
  • 相关阅读:
    tkinter_战队数据查询系统
    python_tkinter组件
    python_tkinter基本属性
    python_tkinter组件摆放方式
    python_推导式
    python_装饰器
    python_模块1
    python_生成随机验证码
    linux基础_使用指令3
    linux部署django项目流程(全)
  • 原文地址:https://www.cnblogs.com/hsqdboke/p/2455835.html
Copyright © 2011-2022 走看看