# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
473500 | Fgdxx | Potatoes and fertilizers (LMIO19_bulves) | C++17 | 418 ms | 8744 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int main(){
int n; cin>>n;
priority_queue<int, vector<int>, greater<int>> q;
for(int i = 0; i < 2*n; i++)q.push(0);
long long shift = 0;
long long val = 0;
for(int i = 0; i < n; i++){
int a, b; cin>>a>>b;
long long x1 = q.top(); q.pop(); long long x2 = q.top();//pochodna na x1, x2 0 wiec x1 niepotrzebne
shift += a - b;
x2 += shift;
if(x2 < 0){//w przeciwnym wypadku nic sie nie dzieje
val -= x2;
}
q.push(-shift);
q.push(-shift);
}
//cout<<q.top() + shift<<" "<<val<<"\n\n";
//obliczamy roznice miedzy 0 a tam gdzie znamy val
long long diff = 0;
long long slope = 0;
long long x = q.top();
if(x > 0){
diff = x;
}else{
while(x < 0){
q.pop();
long long newX = min(q.top(), 0);
diff += slope * (newX - x);
slope++;
x = newX;
}
}
cout<<(val + diff);
}
컴파일 시 표준 에러 (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... |