杨瑞凯


私信TA

用户名:dotcpp0729403

访问量:232

签 名:

等  级
排  名 23284
经  验 638
参赛次数 0
文章发表 3
年  龄 0
在职情况 学生
学  校 成都理工大学
专  业

  自我简介:

TA的其他文章

解题思路:按照w+v的值从小到大排列后可以使后面的能够放在下面的可能最大。。。

注意事项:

参考代码:

#include<bits/stdc++.h>

using namespace std;

const int N=1e3+5,M=2e4+5;

int n;

int f[M];

struct Node{

    int w,v;

    bool operator <(const Node &W)const{

        return w+v==W.w+W.v?w<W.w:w+v<W.w+W.v;

    }

}nodes[N];

int main()

{

    cin>>n;

    for(int i=1;i<=n;i++){

    int w,v;

        cin>>w>>v;

        nodes[i]={w,v};

    }

    sort(nodes+1,nodes+n+1);

    for(int i=1;i<=n;i++){

        int w=nodes[i].w,v=nodes[i].v;

        for(int j=20000;j>=0;j--)

            if(j<=v && (f[j] || !j)) 

                f[j+w]=max(f[j+w],f[j]+v);

    }

    int res=0;

    for(int i=1;i<=20000;i++) res=max(res,f[i]);

    cout<<res<<endl;

    return 0;

}


 

0.0分

1 人评分

  评论区

  • «
  • »