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

POJ 2181

时间:2015-02-25 22:18:42      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

直接DP,设当前第i个数为结尾的算奇数次和偶数次的得到的最大值。分开设即可。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <climits>
#include <string.h>
#include <queue>
#include <cmath>
#include <vector>
using namespace std;

int main(){
	int oddn,even,n,tmp,to,te;
	while(scanf("%d",&n)!=EOF){
		for(int i=1;i<=n;i++){
			scanf("%d",&tmp);
			if(i==1){
				oddn=tmp;
				even=0;
			}
			else{
				to=even+tmp;
				te=oddn-tmp;
				oddn=max(oddn,to);
				even=max(te,even);
			}
		}
		printf("%d\n",max(oddn,even));
	}
	return 0;
}
	

  

POJ 2181

标签:

原文地址:http://www.cnblogs.com/jie-dcai/p/4300298.html

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