이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
#define ll long long
#define ld long double
#define f first
#define s second
#define mp make_pair
#define pb push_back
#define vll vector<ll>
#define pll pair<ll,ll>
using namespace std;
const ll N = 5e5+100;
const ll MOD = 1e9+7;
ll pre[N];
ll maxx[N];
int main()
{
ios_base::sync_with_stdio(0);
//cin.tie(0);
ll n;
cin>>n;
pll a[n+1];
for(int i =1;i<=n;i++)cin>>a[i].f >> a[i].s;
sort(a+1,a+n+1);
for(int i =1;i<=n;i++){
pre[i] = pre[i-1] + a[i].s;
}
for(int i =1;i<=n;i++){
maxx[i] = max(maxx[i-1],a[i].f-pre[i-1]);
}
ll ans = 0;
for(int j =1;j<=n;j++){
ans = max(ans,(pre[j]-a[j].f) + (maxx[j]));
}
cout<<ans<<endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |