记录编号 |
35402 |
评测结果 |
AAAAAAAAAA |
题目名称 |
物品 |
最终得分 |
100 |
用户昵称 |
kaaala |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.139 s |
提交时间 |
2012-02-21 14:53:21 |
内存使用 |
19.58 MiB |
显示代码纯文本
#include<cstdio>
#include<sstream>
#include<iostream>
using namespace std;
const int MAXN=1010,MAXM=5010;
const int oo=~0u>>2;
struct Node
{
int first,second;
}p[MAXN];
int top=1;
int N,P,money,sum,sum2;
int f[MAXN][MAXM];
int main()
{
freopen("magica.in","r",stdin);
freopen("magica.out","w",stdout);
cin>>N>>P;
for(int i=0;i<N;i++)
{
string str;
int x,y;
while(true)
{
getline(cin,str);
stringstream in(str);
if(in>>x)
{
if(in>>y)
{
if(y-x<=P)
money+=x;
else
{
p[top].first=x;
p[top].second=y-P;
sum+=y-P;
sum2+=x;
top++;
}
}
else money+=x;
break;
}
}
}
for(int i=money+1;i<=P;i++)
f[0][i]=oo;
for(int i=1;i<top;i++)
for(int j=0;j<=P;j++)
f[i][j]=min(f[i-1][j],f[i-1][j-p[i].first]+p[i].second-p[i].first);
if (f[top-1][P]!=oo)
cout<<sum+money-f[top-1][P]<<endl;
else
cout<<sum2+money<<endl;
return 0;
}