# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
586305 | M_W | Safety (NOI18_safety) | C++17 | 62 ms | 5500 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
priority_queue<long long> lo;
priority_queue<long long, vector<long long>, greater<long long>> hi;
int main(){
int N; long long H, x, ymin = 0, shift = 0;
scanf("%d %lld %lld", &N, &H, &x);
lo.push(x); hi.push(x);
for(int i = 1; i < N; i++){
scanf("%lld", &x);
shift += H;
long long left = lo.top() - shift, right = hi.top() + shift;
if(x <= left){
hi.push(left - shift);
lo.pop();
lo.push(x + shift);
lo.push(x + shift);
ymin += left - x;
}
else if(x >= right){
lo.push(right + shift);
hi.pop();
hi.push(x - shift);
hi.push(x - shift);
ymin += x - right;
}
else{
lo.push(x + shift);
hi.push(x - shift);
}
}
printf("%lld", ymin);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |