程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> HDU - 1003 - Max Sum && POJ - 1050 - To the Max (經典DP問題)

HDU - 1003 - Max Sum && POJ - 1050 - To the Max (經典DP問題)

編輯:C++入門知識

HDU - 1003 - Max Sum && POJ - 1050 - To the Max (經典DP問題)


 

題目傳送:HDU - 1003

 

思路:最大子序列和

dp[i]= a[i] (dp[i-1]<0)

dp[i]= dp[i-1]+a[i] (dp[i-1]>=0)

 

AC代碼:

 

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include
#include 
#include 
#include 
#define LL long long
#define INF 0x7fffffff
using namespace std;

int n;

int main() {
	int T;
	int cas = 1;
	scanf("%d", &T);
	while(T --) {
		scanf("%d", &n);
		int sum = 0;
		int ans = -INF;
		int from, to;
		int qi = 1, zhong = 1;
		for(int i = 1; i <= n; i ++) {
			int t;
			scanf("%d", &t);
			sum += t;
			zhong = i;
			if(sum > ans) {
				ans = sum; from = qi; to = zhong; 
			}
			if(sum < 0) {
				qi = i + 1; sum = 0;
			}
		}
		printf("Case %d:\n%d %d %d\n", cas ++, ans, from, to);
		if(T != 0) printf("\n");
	}
	return 0;
}


 

 

題目傳送:POJ - 1050

 

思路:最大子矩陣和,原理和上面那個題一樣,就是把i~j行的列上的數加到一行去,再算該行的最大子序列和即可(0<=i<=j

 

AC代碼:

 

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include
#include 
#include 
#include 
#define LL long long
#define INF 0x7fffffff
using namespace std;

int a[105][105];
int tmp[105];
int n;

int fun() {
	int max = -1, sum = 0;
	for(int i = 0; i < n; i ++) {
		sum += tmp[i];
		if(sum > max) max = sum;
		if(sum < 0) sum = 0;
	}
	return max;
}

int main() {
	while(scanf("%d", &n) != EOF) {
		for(int i = 0; i < n; i ++) {
			for(int j = 0; j < n; j ++) {
				scanf("%d", &a[i][j]);
			}
		}
		
		int ans = -1;
		for(int i = 0; i < n; i ++) {
			memset(tmp, 0, sizeof(tmp));
			for(int j = i; j < n; j ++) {
				for(int k = 0; k < n; k ++) {
					tmp[k] += a[j][k];
				}
				int t = fun();
				if(ans < t) ans = t;
			}
		}
		cout << ans << endl;
	}
	return 0;
}


 

 

 

 

 

 

 

 

 

 

 

 

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