hdu1864 最大报销额 (01背包)

分析:将满足题意的发票(N<=30)放入数组中,进行01背包。


题意:题目要求只有A,B,C三类能报销,其他类报销不了,并且每类总价钱不能超过600,每个发票总价钱不能超过1000.


题目:http://acm.hdu.edu.cn/showproblem.php?pid=1864


参考博客: http://blog.csdn.net/libin56842/article/details/9338841

http://www.cnblogs.com/lzmfywz/archive/2012/02/15/2353320.html   


#include<iostream>
#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
int dp[3000050]; //30*1000再扩大100背,
int main(){
    double X;
    int N,V;
    while(cin >>X >> N &&N){
        V=(int)(X*100);//注意这里要加括号

        int num=0,v[50];
        double mon,a[50];
        memset(dp,0,sizeof(dp));

        while(N--){
            char ch,ch2;
            memset(a,0,sizeof(a));
            double total=0;
            int n,ok=1;//判断是否符合条件,如果符合题意说的条件,则加入数组中

            cin >> n;
            for(int i=0;i<n;i++){
                cin >> ch >> ch2 >> mon;//ch2吸收冒号
                a[ch-'A']+=mon;
                total+=mon;
                if(ch-'A'>2) ok=0;
            }

            for(int i=0;i<3;i++)
                if(a[i]>600) ok=0;

            if(total>1000) ok=0;
            if(ok) v[num++]=(int)(total*100);//扩大100倍
        }
        for(int i=0;i<num;i++)
            for(int j=V;j>=v[i];j--)
                dp[j]=max(dp[j],dp[j-v[i]]+v[i]);

        printf("%.2lf\n",dp[V]/100.0);
    }
    return 0;
}


你可能感兴趣的:(hdu1864 最大报销额 (01背包))