Jumping Cows
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 6398   Accepted: 3828

Description

Farmer John's cows would like to jump over the moon, just like the cows in their favorite nursery rhyme. Unfortunately, cows can not jump.

The local witch doctor has mixed up P (1 <= P <= 150,000) potions to aid the cows in their quest to jump. These potions must be administered exactly in the order they were created, though some may be skipped.

Each potion has a 'strength' (1 <= strength <= 500) that enhances the cows' jumping ability. Taking a potion during an odd time step increases the cows' jump; taking a potion during an even time step decreases the jump. Before taking any potions the cows' jumping ability is, of course, 0.

No potion can be taken twice, and once the cow has begun taking potions, one potion must be taken during each time step, starting at time 1. One or more potions may be skipped in each turn.

Determine which potions to take to get the highest jump.

Input

* Line 1: A single integer, P

* Lines 2..P+1: Each line contains a single integer that is the strength of a potion. Line 2 gives the strength of the first potion; line 3 gives the strength of the second potion; and so on.

Output

* Line 1: A single integer that is the maximum possible jump. 

Sample Input

8
7
2
1
8
4
3
5
6

Sample Output

17
题目大意:从一列数字中按照编号从小到大有选择的取数,若取到的数字的为第奇数个则加上该数,否则减去该数,问取到的数的最大总和。
解题方法:动态规划,dp[i][0] = max(dp[i - 1][0], dp[i - 1][1] + num[i])表示当前取的是第奇数个,dp[i][1] = max(dp[i - 1][1], dp[i - 1][0] - num[i])表示当前取的是第偶数个。
#include <stdio.h>
#include <iostream>
#include <string.h>
using namespace std; int num[];
int dp[][]; int main()
{
int n;
scanf("%d", &n);
for (int i = ; i <= n; i++)
{
scanf("%d", &num[i]);
}
for (int i = ; i <= n; i++)
{
dp[i][] = max(dp[i - ][], dp[i - ][] + num[i]);
dp[i][] = max(dp[i - ][], dp[i - ][] - num[i]);
}
printf("%d\n", max(dp[n][], dp[n][]));
return ;
}

最新文章

  1. Android笔记:DrawerLayout抽屉布局的使用
  2. Java面向对象编程 第二章 第一个Java应用
  3. Innodb 表空间卸载、迁移、装载
  4. 6月27日 OGDF不同的布局算法
  5. 【C++】运算符重载
  6. Spring Boot交流平台
  7. ubuntu为Python添加默认搜索路径
  8. poj 2891 Strange Way to Express Integers (扩展gcd)
  9. asp.net实现伪静态遇到的问题
  10. HtmlAgilityPack + Fizzler
  11. JS中substr和substring的用法和区别
  12. Windbg调试中遇到的问题
  13. Visual studio code快捷键
  14. http请求参数中包含特殊字符的严重后果,比如:#
  15. SqlServer 语法
  16. 用ajax对数据进行删除和查看
  17. Codeforces Beta Round #46 (Div. 2)
  18. IDA动态调试so文件出现SIGILL
  19. Dictionary 对象
  20. win7 64位debug解决方法

热门文章

  1. Windows系统命令行下编译连接C/C++源代码方法
  2. ansys-表格
  3. linux python升级及全局环境变量设置
  4. Cocos2d-x数据相关的类用法简介(附示例)
  5. 10款免费的MySQL数据库图形化管理工具
  6. 2002-2003 ACM-ICPC Northeastern European Regional Contest (NEERC 02) H Heroes Of Might And Magic (隐含dp)
  7. java String中的replace(oldChar,newChar) replace(CharSequence target,CharSequence replacement) replaceAll replaceFirst 面试题:输入英文语句,单词首字符大写后输出 char String int 相互转换
  8. Java第11次作业:什么是继承?继承的好处?什么是覆写?super()?构造代码块?子父类初始化顺序? 抽象类能用final声明吗?final关键字声明类 方法 变量以及全局常量?抽象类的构造方法?
  9. iOS 证书、真机调试、发布 App Store
  10. c#—OpenFileDialog