# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
13627 | gs14004 | 등산 경로 (IZhO12_route) | C++14 | 266 ms | 13548 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <algorithm>
#include <stack>
#include <queue>
#include <utility>
using namespace std;
int n,k,a[1000005];
int cost[1000005];
int main(){
scanf("%d %d",&n,&k);
for (int i=0; i<n; i++) {
scanf("%d",&a[i]);
}
int p = (int)(max_element(a,a+n) - a);
stack<int> s,t;
for (int i=p; i<=p+n; i++) {
if(s.empty() || s.top() >= a[i%n]){
s.push(a[i%n]);
t.push(i);
}
else{
while (!s.empty() && s.top() < a[i%n]) {
int val = 0, ptop = s.top();
s.pop();
if(!s.empty() && s.top() < a[i%n]){
val = s.top() - ptop;
}
else{
val = a[i%n] - ptop;
}
cost[i - t.top()] += val;
t.pop();
}
}
}
int ret = 0;
for (int i=1; i<=n; i++) {
int diff = min(k/i * i,cost[i] * i);
k -= diff;
ret += diff / i * 2;
}
printf("%d",ret);
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |