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

Hrbust1053 Warcraft III (完全背包)

时间:2014-05-03 16:06:14      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:算法   dp   acm   c++   

本文出自:http://blog.csdn.net/svitter

原题:http://acm.hrbust.edu.cn/index.php?m=ProblemSet&a=showProblem&problem_id=1053

题意:完全背包不解释。。直接贴代码。。


#include <iostream>
#include <stdio.h>
#include <string.h>

using namespace std;

#define max(a, b) a > b? a : b

struct Unit
{
	int val;
	int cost;
};

Unit unit[100000];
int f[100000];

void ace()
{
	//work point
	int t;
	int i, j, k;

	//num
	int g, u, n; // n means size

	cin >> t;
	while(t--)
	{
		memset(f, 0 ,sizeof(f));
		scanf("%d%d", &g, &u);
		for(i = 0; i < u; i++)
		{
			scanf("%d%d", &unit[i].val, &unit[i].cost);
		}

		for(i = 0; i < u; i++){
			n = g - unit[i].cost;
			for(j = 0; j <= n; j++){
				f[j + unit[i].cost] = max(f[j +unit[i].cost], f[j] + unit[i].val);
			}
		}

		printf("%d\n", f[g]);
	}

}

int main()
{
    ace();
	return 0;
}


Hrbust1053 Warcraft III (完全背包),布布扣,bubuko.com

Hrbust1053 Warcraft III (完全背包)

标签:算法   dp   acm   c++   

原文地址:http://blog.csdn.net/svitter/article/details/24883237

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