#include <bits/stdc++.h>
#define f first
#define s second
using namespace std;
int main() {
int n;
cin >> n;
pair<long long, long long> a[n];long long b[n], c[n], mx=-INT64_MAX, mj=0, mnx;
for(int i=0; i<n; i++){
cin >> a[i].f >> a[i].s;
}
sort(a, a+n);
b[0]=a[0].s-a[0].f;mx=b[0];
for(int i=1; i<n ;i++){
b[i]=b[i-1]-a[i].f+a[i].s+a[i-1].f;
if(b[i]>mx){
mj=i; mx=b[i];
}
}
c[0]=a[0].f;mnx=c[0];
for(int i=1; i<=mj ;i++){
c[i]=c[i-1]-a[i-1].f+a[i].f-a[i-1].s;
if(mnx<c[i]){
mnx=c[i];
}
}
cout << mx+mnx;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |