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

XidianOJ 1146 万神的竞赛

时间:2016-11-25 00:55:48      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:std   iostream   i++   style   name   ges   价值   stream   print   

技术分享

--正文

学到了,原来背包还能这么写

由于最高价值(顶多是五万)很低而重量(10^8)太大,所以反过来找,f[i]为到达价值i所需的最小空间

  则 f[i] = min(f[i],f[i-w[i]]+v[i])

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm> 
using namespace std;

int f[100000]; 
int n;
int w;
int cost[1001],value[1001];
int main(){
    
    while (scanf("%d %d",&n,&w) != EOF){

        int i,j;
        int maxValue = 0;
        for (i=1;i<=n;i++){
            scanf("%d %d",&cost[i],&value[i]);
            maxValue += value[i];
        }
        for (i=1;i<=maxValue;i++){
            f[i] = w+1;
        }
        f[0] = 0;
        int maxj = 0; 
        for (i=1;i<=n;i++){
            for (j=maxValue;j>=value[i];j--){
                f[j] = min(f[j],f[j-value[i]]+cost[i]);
            }
        }

        int maxi = 1;
        for (i=1;i<=maxValue;i++){
            if (f[i] > w) continue; 
            maxi = i;
        }
        printf("%d\n",maxi);
    }
    return 0;
}

 

XidianOJ 1146 万神的竞赛

标签:std   iostream   i++   style   name   ges   价值   stream   print   

原文地址:http://www.cnblogs.com/ToTOrz/p/6099917.html

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