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

POJ 2181 -- Jumping Cows

时间:2017-07-08 20:18:55      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:ice   size   cep   i++   can   output   created   sea   奇数   

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

8
7
2
1
8
4
3
5
6

Sample Output

17

Source

 
思路:分奇偶考虑,奇数秒时比大,偶数秒时比小。但是目前并没有证明出这就是正确的(虽然找不到更优解)。
技术分享
 1 #include <iostream>
 2 #include <cmath>
 3 #include <cstring>
 4 #include <cstdio>
 5 #include <cstdlib>
 6 #include <algorithm>
 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         else
25         {
26             if(a[i]<a[i+1]) {ans-=a[i];b=1;}
27             else continue;
28         }
29     }
30     printf("%d",ans);
31     return 0;
32 }
POJ 2181

 

POJ 2181 -- Jumping Cows

标签:ice   size   cep   i++   can   output   created   sea   奇数   

原文地址:http://www.cnblogs.com/YXY-1211/p/7137773.html

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