您的位置:首页 > 大数据 > 人工智能

USACO Score Inflation,完全背包问题

2012-08-12 16:25 302 查看
很经典的完全背包问题

我的代码
/*
ID: wangxin12
PROG: inflate
LANG: C++
*/
#include <iostream>
#include <fstream>
using namespace std;
#define MAX 10000

int M, N;
int point[MAX + 1]; // points
int miniute[MAX + 1]; // miniutes
int dp[MAX + 1];

int main() {
ifstream fin("inflate.in");
ofstream fout("inflate.out");

int i, j;
fin>>M>>N;
for(i = 1; i <= N; i++) {
fin>>point[i]>>miniute[i];
dp[i] = point[i];
}

//init, dp[1],只装第一种物品时的情况
for(j = 0; j <= M; j++) {
dp[j] = (j / miniute[1]) * point[1];
}

//从第二种物品开始,进行动态规划
for(i = 2; i <= N; i++) {
for(j = miniute[i]; j <= M; j++) {
//状态转移方程
dp[j] = (dp[j] > dp[ j - miniute[i] ] + point[i]) ? dp[j] : dp[ j-miniute[i] ] + point[i] ;
}
}

fout<<dp[M]<<endl;

return 0;
}


------------------------------------------------------------------------------------------------------------------------

The more points students score in our contests, the happier we here at the USACO are. We try to design our contests so that people can score as many points as possible, and would like your assistance.

We have several categories from which problems can be chosen, where a "category" is an unlimited set of contest problems which all require the same amount of time to solve and deserve the same number of points for a correct solution. Your task is write a program
which tells the USACO staff how many problems from each category to include in a contest so as to maximize the total number of points in the chosen problems while keeping the total solution time within the length of the contest.

The input includes the length of the contest, M (1 <= M <= 10,000) (don't worry, you won't have to compete in the longer contests until training camp) and N, the number of problem categories, where 1 <= N <= 10,000.

Each of the subsequent N lines contains two integers describing a category: the first integer tells the number of points a problem from that category is worth (1 <= points <= 10000); the second tells the number of minutes a problem from that category takes
to solve (1 <= minutes <= 10000).

Your program should determine the number of problems we should take from each category to make the highest-scoring contest solvable within the length of the contest. Remember, the number from any category can be any nonnegative integer (0, one, or many). Calculate
the maximum number of possible points.


PROGRAM NAME: inflate


INPUT FORMAT

Line 1:M, N -- contest minutes and number of problem classes
Lines 2-N+1:Two integers: the points and minutes for each class


SAMPLE INPUT (file inflate.in)

300 4
100 60
250 120
120 100
35 20


OUTPUT FORMAT

A single line with the maximum number of points possible given the constraints.


SAMPLE OUTPUT (file inflate.out)

605


 

(Take two problems from #2 and three from #4.) 

 

 

 


描述

学生在我们USACO的竞赛中的得分越多我们越高兴。

我们试着设计我们的竞赛以便人们能尽可能的多得分,这需要你的帮助。

我们可以从几个种类中选取竞赛的题目,这里的一个"种类"是指一个竞赛题目的集合,解决集合中的题目需要相同多的时间并且能得到相同的分数。 你的任务是写一个程序来告诉USACO的职员,应该从每一个种类中选取多少题目,使得解决题目的总耗时在竞赛规定的时间里并且总分最大。 输入包括竞赛的时间,M(1 <= M <= 10,000)(不要担心,你要到了训练营中才会有长时间的比赛)和N,"种类"的数目1 <= N <= 10,000。 后面的每一行将包括两个整数来描述一个"种类":

第一个整数说明解决这种题目能得的分数(1 <= points <= 10000),第二整数说明解决这种题目所需的时间(1 <= minutes <= 10000)。 你的程序应该确定我们应该从每个"种类"中选多少道题目使得能在竞赛的时间中得到最大的分数。

来自任意的"种类"的题目数目可能是任何非负数(0或更多)。

计算可能得到的最大分数。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息