이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
pair<long long, long long> arr[n];
for(int i=0; i<n; i++){
cin>>arr[i].first>>arr[i].second;
}
sort(arr, arr+n);
long long pref[n];
pref[0] = arr[0].second;
for(int i=1; i<n; i++){
pref[i] = pref[i-1] + arr[i].second;
}
long long ans = 0;
long long mn = -arr[0].first;
for(int i=0; i<n; i++){
if(i != 0) mn = min(mn, pref[i-1] - arr[i].first);
ans = max(ans, (pref[i]-arr[i].first)-mn);
}
cout<<ans<<endl;
return 0;
}
# | 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... |