码迷,mamicode.com
首页 > 其他好文 > 详细

LuoguP1858 多人背包(DP)

时间:2019-10-27 18:56:37      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:har   etc   pause   files   背包   cost   swap   val   图片   

\(K\)优解这类问题可在\(DP\)过程中通过添维解决。归并出当前前\(K\)大的解。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <algorithm>
#include <cmath>
#define R(a,b,c) for(register int a = (b); a <= (c); ++a)
#define nR(a,b,c) for(register int a = (b); a >= (c); --a)
#define Fill(a,b) memset(a, b, sizeof(a))
#define Swap(a,b) ((a) ^= (b) ^= (a) ^= (b))
#define QWQ
#ifdef QWQ
#define D_e_Line printf("\n---------------\n")
#define D_e(x) cout << (#x) << " : " << x << "\n"
#define Pause() system("pause")
#define FileOpen() freopen("in.txt", "r", stdin)
#define FileSave() freopen("out.txt", "w", stdout)
#define TIME() fprintf(stderr, "\nTIME : %.3lfms\n", clock() * 1000.0 / CLOCKS_PER_SEC)
#else
#define D_e_Line ;
#define D_e(x) ;
#define Pause() ;
#define FileOpen() ;
#define FileSave() ;
#define TIME() ;
#endif
struct ios {
    template<typename ATP> inline ios& operator >> (ATP &x) {
        x = 0; int f = 1; char c;
        for(c = getchar(); c < '0' || c > '9'; c = getchar()) if(c == '-') f = -1;
        while(c >= '0' && c <='9') x = x * 10 + (c ^ '0'), c = getchar();
        x *= f;
        return *this;
    }
}io;
using namespace std;
template<typename ATP> inline ATP Max(ATP a, ATP b) {
    return a > b ? a : b;
}
template<typename ATP> inline ATP Min(ATP a, ATP b) {
    return a < b ? a : b;
}
template<typename ATP> inline ATP Abs(ATP a) {
    return a < 0 ? -a : a;
}

const int N = 207;

long long f[5007][51], tmp[5007];

struct nod {
    long long cost, val;
} a[N];
int main() {
    int n, K, V;
    io >> K >> V >> n;
    R(i,1,n){
        io >> a[i].cost >> a[i].val;
    }
    
    
    Fill(f, 0xcf);
    f[0][1] = 0;
    
    R(i,1,n){
        nR(j,V,a[i].cost){
            int tot1 = 1, tot2 = 1, tot3 = 0;
            while(tot3 <= K){
                if(f[j][tot1] > f[j - a[i].cost][tot2] + a[i].val){
                    tmp[++tot3] = f[j][tot1++];
                }
                else{
                    tmp[++tot3] = f[j - a[i].cost][tot2++] + a[i].val;
                }
            }
            R(k,1,K) f[j][k] = tmp[k];
        }
    }
    
    long long ans = 0;
    R(i,1,K){
        ans += f[V][i];
    }

    printf("%lld", ans);
    return 0;
}

技术图片

LuoguP1858 多人背包(DP)

标签:har   etc   pause   files   背包   cost   swap   val   图片   

原文地址:https://www.cnblogs.com/bingoyes/p/11748282.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!