This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
#include<bits/stdc++.h>
using namespace __gnu_pbds;
using namespace std;
typedef long long ll;
#define fr first
#define sc second
#define mk make_pair
#define pb push_back
#define pob pop_back
#define pf push_front
#define pof pop_front
#define int long long
#define pii pair<int,int>
#define piii pair<int,pii>
#define all(s) s.begin(), s.end()
#define allr(s) s.rbegin(), s.rend()
#define NeedForSpeed ios::sync_with_stdio(0), cin.tie(0)
#define ordered_set tree<int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update>
const int N = 5e5 + 12;
int n, m, k, a, b, c, d, pref[N];
vector<pii>v;
void solve(){
cin>>n;
v.pb({0, 0});
for(int i=0; i<n; i++){
int x, y;
cin>>x>>y;
v.pb({x, y});
}sort(all(v));
for(int i=1; i<=n; i++){
pref[i] = pref[i-1] + v[i].sc;
}
int l = 0, res = 0;
for(int i=1; i<=n; i++){
for(int j=1; j<=i; j++){
res = max(res, pref[i] - pref[j-1] - v[i].fr + v[j].fr);
}
}
cout<<res<<"\n";
}
main(){
NeedForSpeed;
int T = 1;
// cin >> T;
while(T--){
solve();
}
return 0;
}
Compilation message (stderr)
art.cpp: In function 'void solve()':
art.cpp:43:6: warning: unused variable 'l' [-Wunused-variable]
43 | int l = 0, res = 0;
| ^
art.cpp: At global scope:
art.cpp:51:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
51 | main(){
| ^~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |