记录编号 |
34875 |
评测结果 |
AAAAAAAAAA |
题目名称 |
多人背包 |
最终得分 |
100 |
用户昵称 |
kaaala |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
1.110 s |
提交时间 |
2012-01-16 09:12:39 |
内存使用 |
9.99 MiB |
显示代码纯文本
#include<iostream>
#include<cstdlib>
#include<cmath>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int K,N,V,ans,f[51][50001],q1[51],q2[51];
int main()
{
freopen("bags.in","r",stdin);
freopen("bags.out","w",stdout);
scanf("%d%d%d",&K,&V,&N);
memset(f,-0x7,sizeof(f));
f[1][0]=0;
for(int k=1;k<=N;k++)
{
int wei,val;
scanf("%d%d",&wei,&val);
for(int w=V;w>=wei;w--)
{
for(int i=1;i<=K;i++)
{
q1[i]=f[i][w];
q2[i]=f[i][w-wei]+val;
}
int h1=1,h2=1,tot=0;
while(tot<K)
{
tot++;
if(q1[h1]>q2[h2])
{
f[tot][w]=q1[h1];
h1++;
}
else
{
f[tot][w]=q2[h2];
h2++;
}
}
}
}
for(int i=1;i<=K;i++)
ans+=f[i][V];
printf("%d\n",ans);
return 0;
}