【CODEFORCES】 B. Caisa and Pylons
2450 단어 codeforces물이 더 건강해요.
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
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 0has 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.
문제풀이: 문제의 뜻을 잘 알면 H[I]와 H[I-1]의 최소 차이를 찾아내면 된다.그리고 0보다 크면 추가 에너지를 필요로 하지 않는다는 판단을 한다. 답은 H[1]의 높이이고 그렇지 않으면 답은 H[1]-최소차다.
물, 물이 더 건강해~~~~
#include <iostream>
#include <cstdio>
using namespace std;
int n,i; long long h[100002],ans,t;
int main()
{
scanf("%d",&n);
for (int i=1;i<=n;i++)
scanf("%I64d",&h[i]);
ans=0; t=0;
for (int i=1;i<=n-1;i++)
{
t+=h[i]-h[i+1];
ans=min(ans,t);
}
if (ans>=0) ans=h[1];
else ans=h[1]-ans;
cout <<ans<<endl;
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.