# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
38311 | romanasa | 등산 경로 (IZhO12_route) | C++14 | 749 ms | 26300 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define err(...) fprintf(stderr, __VA_ARGS__), fflush(stderr)
using namespace std;
typedef long long ll;
priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>> > S;
#define TASK "g"
int main() {
int n, k;
cin >> n >> k;
vector<int> a(n);
for (int i = 0; i < n; i++) cin >> a[i];
rotate(a.begin(), max_element(a.begin(), a.end()), a.end());
a.push_back(a[0]);
vector<int> s;
for (int i = 0; i <= n; i++) {
while (s.size() && a[s.back()] < a[i]) {
int val = a[s.back()];
s.pop_back();
S.push({ (i - s.back() - 1), min(a[s.back()], a[i]) - val });
}
s.push_back(i);
}
int ans = 0;
while (S.size()) {
auto c = S.top();
S.pop();
int t = min(k / c.first, c.second);
ans += t * 2;
k -= t * c.first;
}
cout << ans << "\n";
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |