• UESTC 电子科大专题训练 DP-M


    题意:中文题

    思路:混合背包,和D几乎一样

    AC代码:

    #include "iostream"
    #include "string.h"
    #include "stack"
    #include "queue"
    #include "string"
    #include "vector"
    #include "set"
    #include "map"
    #include "algorithm"
    #include "stdio.h"
    #include "math.h"
    #define ll long long
    #define bug(x) cout<<x<<" "<<"UUUUU"<<endl;
    #define mem(a) memset(a,0,sizeof(a))
    #define mp(x,y) make_pair(x,y)
    using namespace std;
    const long long INF = 1e18+1LL;
    const int inf = 1e9+1e8;
    const int N=1e5+100;
    const ll mod=1e9+7;
    
    int vol,dp[N],n,k,t[N],a[N],b[N];
    void zeroonepack(int cost,int weight){
        for(int i=vol; i>=cost; i--)
            dp[i]=max(dp[i],dp[i-cost]+weight);
    }
    
    void complete(int cost, int weight){
        for(int i=cost; i<=vol; i++)
            dp[i]=max(dp[i],dp[i-cost]+weight);
    }
    
    void mutilpack(int cost,int weight,int counts){
        if(counts*cost>vol){
            complete(cost,weight);
            return;
        }
        for(int i=1; i<counts; ){
            zeroonepack(cost*i,weight*i);
            counts-=i;
            i<<=1;
        }
        zeroonepack(cost*counts,weight*counts);
    }
    
    int main(){
        ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
        cin>>n>>vol;
        for(int i=1; i<=n; ++i){
            cin>>b[i]>>a[i]>>t[i];
        }
        for(int i=1; i<=n; ++i){
            mutilpack(b[i],a[i],t[i]);
        }
        cout<<dp[vol]<<endl;
        return 0;
    }
  • 相关阅读:
    脚本
    vim 马哥
    动态删除节点
    动态插入节点
    动态创建内容
    获取html元素内容
    设置元素的属性
    获取元素的属性
    jquery中:input和input的区别
    jQuery选择器总结
  • 原文地址:https://www.cnblogs.com/max88888888/p/7202439.html
Copyright © 2020-2023  润新知