程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> Codeforce 264 B Caisa and Pylons(模擬)

Codeforce 264 B Caisa and Pylons(模擬)

編輯:C++入門知識

Codeforce 264 B Caisa and Pylons(模擬)




題意 Caisa走台階 有n個台階 第i個台階的高度為h[i] 從第i個台階包括地面到下一個台階得到的能量為h[i]-h[i+1] 能量不足以跳到下一個台階就要補充能量 求Caisa跳完所有台階最少要補充多少能量

水題 直接模擬


#include
#include
using namespace std;
const int N = 100005;
int h[N];
int main()
{
    int n, e, ans;
    scanf("%d",&n);
    for (int i = 1; i <= n; ++i)
        scanf ("%d", &h[i]);
    ans = 0;
    for (int i = e = 0; i < n; ++i)
    {
        if (h[i] + e < h[i + 1])
        {
            int t = (h[i + 1] - e - h[i]);
            h[i] += t;
            ans += t;
        }
        e += (h[i] - h[i + 1]);
    }
    printf ("%d\n", ans);
    return 0;
}

Caisa solved the problem with the sugar and now he is on the way back to home.

Caisa is playing a mobile game during his path. There are (n?+?1) pylons numbered from 0 to n in this game. The pylon with number 0 has zero height, the pylon with number i (i?>?0) has height hi. The goal of the game is to reach n-th pylon, and the only move the player can do is to jump from the current pylon (let's denote its number as k) to the next one (its number will be k?+?1). When the player have made such a move, its energy increases by hk?-?hk?+?1 (if this value is negative the player loses energy). The player must have non-negative amount of energy at any moment of the time.

Initially Caisa stand at 0 pylon and has 0 energy. The game provides a special opportunity: one can pay a single dollar and increase the height of anyone pylon by one. Caisa may use that opportunity several times, but he doesn't want to spend too much money. What is the minimal amount of money he must paid to reach the goal of the game?

Input

The first line contains integer n (1?≤?n?≤?105). The next line contains n integers h1, h2,?..., hn (1??≤??hi??≤??105) representing the heights of the pylons.

Output

Print a single number representing the minimum number of dollars paid by Caisa.

Sample test(s) input
5
3 4 3 2 4
output
4
input
3
4 4 4
output
4
Note

In the first sample he can pay 4 dollars and increase the height of pylon with number 0 by 4 units. Then he can safely pass to the last pylon.



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