Submission #467727

#TimeUsernameProblemLanguageResultExecution timeMemory
467727spike1236Candies (JOI18_candies)C++14
0 / 100
2 ms460 KiB
#include <bits/stdc++.h> using namespace std; #define pb push_back #define mp make_pair #define f first #define s second #define ll long long #define ld long double #define all(_v) _v.begin(), _v.end() #define sz(_v) (int)_v.size() #define pii pair <int, int> #define pll pair <ll, ll> #define veci vector <int> #define vecll vector <ll> const int dx[4] = {1, -1, 0, 0}; const int dy[4] = {0, 0, -1, 1}; const double PI = 3.1415926535897932384626433832795; const double eps = 1e-9; const int MOD1 = 1e9 + 7; const int MOD2 = 998244353; const int MAXN = 2e5 + 10; ll a[MAXN]; int L[MAXN], R[MAXN]; int n; void solve() { cin >> n; set <pair <ll, int> > st; for(int i = 1; i <= n; ++i) { cin >> a[i]; st.insert(mp(a[i], i)); L[i] = i - 1; R[i] = i + 1; } ll ans = 0; for(int cs = 1; cs <= (n + 1) / 2; ++cs) { pair <ll, int> mx = *st.rbegin(); st.erase(mx); ans += mx.f; int i = mx.s; int lf = L[i], rg = R[i]; if(lf) st.erase(mp(a[lf], lf)); if(rg <= n) st.erase(mp(a[rg], rg)); if(lf) L[i] = L[lf]; else L[i] = 0; if(rg <= n) R[i] = R[rg]; else R[i] = n + 1; if(L[i]) R[L[i]] = i; if(R[i] <= n) L[R[i]] = i; if(lf || rg != n + 1) a[i] = a[lf] + a[rg] - a[i]; st.insert(mp(a[i], i)); cout << ans << '\n'; } } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int CNT_TESTS = 1; ///cin >> CNT_TESTS; for(int NUMCASE = 1; NUMCASE <= CNT_TESTS; ++NUMCASE) { solve(); if(NUMCASE != CNT_TESTS) cout << '\n'; } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...