CF463B.Caisa and Pylons

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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)(n+1) pylons numbered from 00 to nn in this game. The pylon with number 00 has zero height, the pylon with number ii (i>0) has height hih_{i} . The goal of the game is to reach nn -th pylon, and the only move the player can do is to jump from the current pylon (let's denote its number as kk ) to the next one (its number will be k+1k+1 ). When the player have made such a move, its energy increases by hkhk+1h_{k}-h_{k+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 00 pylon and has 00 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?

输入格式

The first line contains integer nn (1<=n<=105)(1<=n<=10^{5}) . The next line contains nn integers h1h_{1} , h2h_{2} , ..., hnh_{n} (1<=hi<=105)(1<=h_{i}<=10^{5}) representing the heights of the pylons.

输出格式

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

输入输出样例

  • 输入#1

    5
    3 4 3 2 4
    

    输出#1

    4
    
  • 输入#2

    3
    4 4 4
    

    输出#2

    4
    

说明/提示

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

首页