#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
int n;
cin >> n;
auto ab = new pair<long long, int>[n];
for (int i = 0; i < n; i++)
{
cin >> ab[i].first >> ab[i].second;
}
sort(ab, ab + n);
long long amin = 0;
long long s = ab[0].second;
long long m = 0;
for (int i = 1; i < n; i++)
{
s += ab[i].second;
while (s - (ab[i].first - ab[amin].first) < s - ab[amin].second - (ab[i].first - ab[amin + 1].first))
{
amin++;
}
if (s - (ab[i].first - ab[amin].first) > m)
{
m = s - (ab[i].first - ab[amin].first);
}
}
cout << m << '\n';
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |