比赛 202103省实验桐柏一中普及组联赛 评测结果 AAAAAATTTT
题目名称 自助者天助 最终得分 60
用户昵称 菜鸟 运行时间 4.103 s
代码语言 C++ 内存使用 5.21 MiB
提交时间 2021-03-22 21:28:07
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
int n,m;
struct Thing
{
    int weigh;
    int value;
    
}thing[30001];
int p[30001]={0};
int ok[1001][1001]={0};
int main()
{
    freopen("delicious.in","r",stdin);
    freopen("delicious.out","w",stdout);
    cin>>n>>m;
    int a,b;
    int kinds=0;
    for(int i=1;i<=n;i++)
    {
        cin>>a>>b;
          
            kinds++;
            ok[a][b]=kinds;
            thing[kinds].weigh=a;
            thing[kinds].value=b;
            
        
        
    }
    for(int i=1;i<=kinds;i++)
    {//cout<<thing[i].value<<' '<<thing[i].weigh<<' '<<thing[i].sl<<endl;
        
        
            for(int j=m;j>=thing[i].weigh;j--)
            {
                p[j]=max(p[j],p[j-thing[i].weigh]+thing[i].value);
            }
         
         
    }
    cout<<p[m]<<endl;
    return 0;
}