博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 2181 -- Jumping Cows
阅读量:4948 次
发布时间:2019-06-11

本文共 1956 字,大约阅读时间需要 6 分钟。

Jumping Cows
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 7624   Accepted: 4586

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

872184356

Sample Output

17

Source

 
思路:分奇偶考虑,奇数秒时比大,偶数秒时比小。但是目前并没有证明出这就是正确的(虽然找不到更优解)。
1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 #define MAXN 150010 8 using namespace std; 9 int a[MAXN];10 int main()11 {12 int n;13 scanf("%d",&n);14 for(int i=1;i<=n;i++) scanf("%d",&a[i]);15 int ans=0;16 bool b=1;17 for(int i=1;i<=n;i++)18 {19 if(b)20 {21 if(a[i]>a[i+1]) {ans+=a[i];b=0;}22 else continue;23 }24 else25 {26 if(a[i]
POJ 2181

 

转载于:https://www.cnblogs.com/YXY-1211/p/7137773.html

你可能感兴趣的文章
MYSQL数据库的导出的几种方法
查看>>
SQL Server-5种常见的约束
查看>>
硬件之美
查看>>
Jdk1.8 HashMap源码分析
查看>>
新环境安装 python3
查看>>
牛客多校第三场 G Removing Stones(分治+线段树)
查看>>
[转载]java开发中的23种设计模式
查看>>
arm:启动代码判断是从nand启动还是从norflash启动,拷贝程序到内存的过程
查看>>
洛谷 P1308 统计单词数【字符串处理】
查看>>
C#中的继承
查看>>
表格的拖拽功能
查看>>
再回首Java第十八天
查看>>
QT5:QSS
查看>>
OpenCV2:幼儿园篇 第二章 读取图像
查看>>
搞好团队建设的致胜法宝
查看>>
实验二
查看>>
函数的形参和实参
查看>>
数据科学从业者常见的不良小习惯
查看>>
文字过长 用 ... 表示 CSS实现单行、多行文本溢出显示省略号
查看>>
1Caesar加密
查看>>