0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 16:45:24 +00:00
OI-codes/Luogu/P7667/P7667.cpp

32 lines
568 B
C++
Raw Normal View History

#include <bits/stdc++.h>
using namespace std;
struct node {
long long a, b;
bool operator<(const node& b) {
return a < b.a;
}
} a[500005];
2022-05-20 01:23:27 +00:00
int n;
long long s[500005], c, ans;
int main() {
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> a[i].a >> a[i].b;
}
sort(a + 1, a + 1 + n);
for (int i = 1; i <= n; i++) {
s[i] = s[i - 1] + a[i].b;
}
for (int i = 0; i <= n; i++) {
c = max(c, a[i].a - s[i - 1]);
ans = max(ans, s[i] - a[i].a + c);
}
cout << ans << endl;
return 0;
}