Submission #970646

#TimeUsernameProblemLanguageResultExecution timeMemory
970646Roumak77Art Exhibition (JOI18_art)C++17
50 / 100
1012 ms20672 KiB
#pragma GCC optimize ("O3") #pragma GCC optimize ("unroll-loops") #pragma GCC optimize("-Ofast") #include <bits/stdc++.h> #include <algorithm> #include <iostream> #include <vector> #include <limits> #include <cmath> #include <stack> #include <queue> #include <map> #include <math.h> using namespace std; using ll = long long; void solve(){ ll n; cin >> n; vector<pair<ll, ll>> list_n(n, pair<ll, ll>{0, 0}); for(ll i = 0; i < n; i++){ cin >> list_n[i].first; cin >> list_n[i].second; } sort(list_n.begin(), list_n.end()); ll curr_max = -1E15 - 5; for(ll i = 0; i < n; i++){ ll start = list_n[i].first; ll curr = 0; for(ll j = i; j < n; j++){ curr += list_n[j].second; curr_max = max(curr_max, curr - list_n[j].first + start); } } cout << curr_max << endl; } int main(){ ios_base::sync_with_stdio(false); cout.tie(0); cin.tie(0); ll t = 1; while(t--){ solve(); } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...