2 条题解

  • 2
    @ 2022-10-29 18:24:36

    最简单的背包问题,直接套模板

    #include<bits/stdc++.h>
    using namespace std;
    int maxw,n,w[105],p[105],f[20005];
    int main(){
        ios::sync_with_stdio(false); // 输入输出加速
        cin.tie(0);
        cout.tie(0);
        cin>>maxw>>n;
        for(int i=1;i<=n;i++)cin>>w[i]>>p[i];
        for(int i=1;i<=n;i++)
            for(int j=maxw;j>=w[i];j--)
                f[j]=max(f[j],f[j-w[i]]+p[i]);
        cout<<f[maxw];
        return 0;
    }
    
  • 0
    @ 2023-11-7 20:32:27

    背包应用好吧

    #include <bits/stdc++.h>
    using namespace std;
    int n,m,f[1005],v[105],w[105];
    int main()
    {
        cin>>m>>n;
        for(int i=1;i<=n;i++)
    		cin>>w[i]>>v[i];
        for(int i=1;i<=n;i++)
            for(int j=m;j>=w[i];j--)
                f[j]=max(f[j],f[j-w[i]]+v[i]);
        cout<<f[m];
        return 0;
    }
    
    • 1

    信息

    ID
    1695
    时间
    1000ms
    内存
    256MiB
    难度
    5
    标签
    递交数
    602
    已通过
    225
    上传者