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