Submission #839132

#TimeUsernameProblemLanguageResultExecution timeMemory
839132sysiaCandies (JOI18_candies)C++17
100 / 100
286 ms20632 KiB
//Sylwia Sapkowska
#include <bits/stdc++.h>
#pragma GCC optimize("O3", "unroll-loops")
using namespace std;
 
void __print(int x) {cerr << x;}
void __print(long long x) {cerr << x;}
void __print(long double x) {cerr << x;}
void __print(char x) {cerr << "'" << x << "'";}
void __print(const char *x) {cerr << '"' << x << '"';}
void __print(const string &x) {cerr << '"' << x << '"';}
void __print(bool x) {cerr << (x ? "true" : "false");}
 
template<typename T, typename V>
void __print(const pair<T, V> &x) {cerr << '{'; __print(x.first); cerr << ", "; __print(x.second); cerr << '}';}
template<typename T>
void __print(const T &x) {int f = 0; cerr << '{'; for (auto &i: x) cerr << (f++ ? ", " : ""), __print(i); cerr << "}";}
void _print() {cerr << "]\n";}
template <typename T, typename... V>
void _print(T t, V... v) {__print(t); if (sizeof...(v)) cerr << ", "; _print(v...);}
#ifdef LOCAL
#define debug(x...) cerr << "[" << #x << "] = ["; _print(x)
#else
#define debug(x...)
#endif
 
#define int long long
typedef pair<int, int> T;
const int oo = 1e18, oo2 = 1e9+7, K = 30;
const int mod = 998244353;
 
void solve(){
    int n; cin >> n;
    vector<int>a(n+2), L(n+2), R(n+2);
    for (int i = 1; i<=n; i++) cin >> a[i];
    auto cost = a;
    //niezmiennik --> konce przedzialow sa puste
    iota(L.begin(), L.end(), 0);
    iota(R.begin(), R.end(), 0);
    set<T>s;
    for (int i = 1; i<=n; i++) s.insert({a[i], i});
    //przedzial ma zawsze nieparzysta dlugosc --> zmiana zwieksza ilosc ciastek o 1
    //not really, czasami nie da sie dolaczyc hshs
    //claim: przedzialy parzyste na prefiksie i sukfiksie sa useless
    //wtedy wartosci nie maja znaczenia, bo ostatni na prefiksie bedzie pusty
    int ans = 0;
    auto get = [&](int l, int r){return (r-l+1)%2;};
    for (int rep = 1; rep <= (n+1)/2; rep++){
        auto [val, l] = *s.rbegin();
        s.erase(--(s.end()));
        ans += val;
        debug(val, l, R[l]);
        int nl = l, nr = R[l], newcost = 0;
        if (l > 1) {
            nl = L[l-1];
            s.erase(T{cost[L[l-1]], L[l-1]});
            newcost += cost[nl];
        }
        if (R[l] < n) {
            nr = R[R[l]+1];
            s.erase(T{cost[R[l]+1], R[l]+1});
            newcost += cost[R[l]+1];
        }
        newcost -= cost[l];
        cost[nl] = newcost;
        if (get(nl, nr)) s.insert({cost[nl], nl});
        R[nl] = nr; L[nr] = nl;
        debug(s);
        cout << ans << "\n";
    }
}
 
int32_t main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
 
    int t = 1;
    //cin >> t;
    while (t--) solve();
 
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...