Submission #505910

#TimeUsernameProblemLanguageResultExecution timeMemory
505910sidonCandies (JOI18_candies)C++17
0 / 100
2 ms320 KiB
#include <bits/stdc++.h> using namespace std; using ll = long long; const int Z = 200'002; const ll oo = 1e18; /* Take maximum value (say A[i]) for K = 1, then we have that we either take A[i] or both A[i-1] and A[i+1]. So add a virtual element weighing A[i-1] - A[i] + A[i+1] replacing these three elements. Now solve inductively for (K - 1). */ int N, L[Z], R[Z]; ll A[Z], sum; int main() { ios::sync_with_stdio(0), cin.tie(0); cin >> N; priority_queue<array<ll, 2>> pq; for(int i = 1; i <= N; i++) { cin >> A[i]; L[i] = i - 1; R[i] = i + 1; pq.push({A[i], i}); } A[0] = A[N+1] = oo; R[N+1] = N+1; for(int k = 1; k<=(N+1)/2; k++) { while(A[pq.top()[1]] == oo) pq.pop(); auto [v, i] = pq.top(); pq.pop(); cout << (sum += v) << '\n'; if(A[L[i]] != oo) v -= A[L[i]], A[L[i]] = oo; if(A[R[i]] != oo) v -= A[R[i]], A[R[i]] = oo; pq.push({A[i] = -v, i}); R[L[i] = L[L[i]]] = i; L[R[i] = R[R[i]]] = i; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...