#include<bits/stdc++.h>
#define ll long long
#define pll pair<ll,ll>
#define plx pair<ll,int>
#define f first
#define s second
#define pb push_back
#define all(x) x.begin(),x.end()
using namespace std;
int main(){
ios_base::sync_with_stdio(0);cin.tie(0);
int n;cin>>n;
ll ans=LLONG_MIN;pll x[n+1];x[0]={0,0};
for(int i=1;i<=n;i++)cin>>x[i].f>>x[i].s;
sort(x+1,x+n+1);for(int i=1;i<=n;i++)x[i].s=x[i-1].s+x[i].s;
int r=n;
for(int l=n-1;l>=1;l--){
ans=max(ans,x[r].s-x[l-1].s-(x[r].f-x[l].f));
if(x[r].s-x[r].f<x[l].s-x[l].f)r=l;
}cout<<ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |