hdu1864-最大报销额
Posted qq103013999
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu1864-最大报销额相关的知识,希望对你有一定的参考价值。
题目入口
01背包
坑点:单项不能超过600是指:所有A类的和或者所有B类的和……
#include <bits/stdc++.h>
using namespace std;
const int MAXN=1e7+10;
int v[MAXN];
int w[MAXN];
int dp[MAXN];
int main(){
int MAXV;
int n;double M;
int tot;
while(~scanf("%lf%d",&M,&n)){
if(n==0)break;
tot=1;
MAXV=M*100;
for(int i=0;i<=MAXV;i++)dp[i]=0;
for(int i=1;i<=n;i++){
int m;
scanf("%d",&m);
bool ok=true;
double sum=0;
double aa=0,bb=0,cc=0;
for(int j=1;j<=m;j++){
char x;double v;
scanf(" %c:%lf",&x,&v);
if(x==‘A‘)aa+=v;
else if(x==‘B‘)bb+=v;
else if(x==‘C‘)cc+=v;
else ok=false;
}
if(!ok)continue;
if(aa>600||bb>600||cc>600)continue;
v[tot]=w[tot]=(aa+bb+cc)*100;
tot++;
}
tot--;
for(int i=1;i<=tot;i++){
for(int j=MAXV;j>=w[i];j--){
dp[j]=max(dp[j],dp[j-w[i]]+v[i]);
}
}
printf("%.2f
",dp[MAXV]*1.0/100);
}
return 0;
}
以上是关于hdu1864-最大报销额的主要内容,如果未能解决你的问题,请参考以下文章