Submission #234895

# Submission time Handle Problem Language Result Execution time Memory
234895 2020-05-26T07:52:21 Z amoo_safar Art Exhibition (JOI18_art) C++14
0 / 100
5 ms 384 KB
#include <bits/stdc++.h>

#define pb push_back
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define debug(x) cerr << #x << " : " << x << '\n'

using namespace std;

typedef long long ll;
typedef long double ld;
typedef string str;
typedef pair<ll, ll> pll;

const ll Mod = 1000000007LL;
const int N = 2e5 + 10;
const ll Inf = 2242545357980376863LL;
const ll Log = 30;

vector<pll> V;

int main(){
	ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
	int n;
	cin >> n;
	int a, b;
	for(int i = 0; i < n; i++){
		cin >> a >> b;
		V.pb({a, b});
	}
	ll ans = 0;
	sort(all(V));
	ll mx = -Inf;
	ll s = 0;
	for(int i = 0; i < n; i++){
		mx = max(mx, V[i].F - s);
		s += V[i].S;
		ans = max(ans, s - V[i].F + mx);
	}
	cout << ans << '\n';
	return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -