程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> hdu2159——FATE

hdu2159——FATE

編輯:C++入門知識

hdu2159——FATE


FATE

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 8296 Accepted Submission(s): 3879


Problem Description 最近xhd正在玩一款叫做FATE的游戲,為了得到極品裝備,xhd在不停的殺怪做任務。久而久之xhd開始對殺怪產生的厭惡感,但又不得不通過殺怪來升完這最後一級。現在的問題是,xhd升掉最後一級還需n的經驗值,xhd還留有m的忍耐度,每殺一個怪xhd會得到相應的經驗,並減掉相應的忍耐度。當忍耐度降到0或者0以下時,xhd就不會玩這游戲。xhd還說了他最多只殺s只怪。請問他能升掉這最後一級嗎?
Input 輸入數據有多組,對於每組數據第一行輸入n,m,k,s(0 < n,m,k,s < 100)四個正整數。分別表示還需的經驗值,保留的忍耐度,怪的種數和最多的殺怪數。接下來輸入k行數據。每行數據輸入兩個正整數a,b(0 < a,b < 20);分別表示殺掉一只這種怪xhd會得到的經驗值和會減掉的忍耐度。(每種怪都有無數個)
Output 輸出升完這級還能保留的最大忍耐度,如果無法升完這級輸出-1。
Sample Input
10 10 1 10
1 1
10 10 1 9
1 1
9 10 2 10
1 1
2 2

Sample Output
0
-1
1

Author Xhd
Source 2008信息工程學院集訓隊——選拔賽
Recommend linle | We have carefully selected several similar problems for you: 1203 2955 2844 2571 2084

一道二維費用的完全背包問題

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

using namespace std;

int dp[110][110];
const int inf = 0x3f3f3f3f;

struct node
{
	int w;
	int c;
}guaiwu[110];

int main()
{
	int n, m, k, s;
	while (~scanf("%d%d%d%d", &n, &m, &k, &s))
	{
		memset (dp, 0, sizeof(dp));
		int ans = inf;
		for (int i = 1; i <= k; ++i)
		{
			scanf("%d%d", &guaiwu[i].w, &guaiwu[i].c);
		}
		for (int i = 1; i <= k; ++i)
		{
			for (int j = 1; j <= s; ++j)
			{
				for (int l = guaiwu[i].c; l <= m; ++l)
				{
					dp[j][l] = max(dp[j][l], dp[j - 1][l - guaiwu[i].c] + guaiwu[i].w);
					if (dp[j][l] >= n)
					{
						ans = min(ans, l);
					}
				}
			}
		}
		if (dp[s][m] < n)
		{
			printf("-1\n");
			continue;
		}
		printf("%d\n", m - ans);
	}
	return 0;
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved