Submission #443179

# Submission time Handle Problem Language Result Execution time Memory
443179 2021-07-10T04:03:54 Z blue Distributing Candies (IOI21_candies) C++17
0 / 100
1421 ms 49092 KB
#include "candies.h"
#include <vector>
#include <iostream>
using namespace std;

const long long INF = 3'000'000'000;

struct segtree //min, max, range add
{
    int l;
    int r;

    long long mn = 0;
    long long mx = 0;
    long long lp = 0;

    segtree* left = NULL;
    segtree* right = NULL;

    segtree()
    {
        ;
    }

    segtree(int L, int R)
    {
        l = L;
        r = R;
        if(l == r) return;
        int m = (l+r+10)/2 - 5;
        left = new segtree(l, m);
        right = new segtree(m+1, r);
    }

    long long rangemin(int L, int R)
    {
        if(R < l || r < L) return INF;
        else if(L <= l && r <= R) return mn;
        else return lp + min(left->rangemin(L, R), right->rangemin(L, R));
    }

    long long rangemax(int L, int R)
    {
        if(R < l || r < L) return -INF;
        else if(L <= l && r <= R) return mx;
        else return lp + max(left->rangemax(L, R), right->rangemax(L, R));
    }

    void add(int L, int R, long long V)
    {
        if(R < l || r < L) return;

        // cerr << "adding to " << l << ' ' << r << ": " << L << ' ' << R << ' ' << V << '\n';

        if(L <= l && r <= R)
        {
            mn += V;
            mx += V;
            lp += V;
        }
        else
        {
            left->add(L, R, V);
            right->add(L, R, V);
            mn = lp + min(left->mn, right->mn);
            mx = lp + max(left->mx, right->mx);
        }
    }
};

vector<int> distribute_candies(vector<int> c, vector<int> l, vector<int> r, vector<int> v)
{
    int N = c.size();
    int Q = l.size();

    vector<int> insertions[N], removals[N];
    for(int j = 0; j < Q; j++)
    {
        insertions[ l[j] ].push_back(j);
        removals[ r[j] ].push_back(j);
    }

    segtree S(-1, Q-1);
    long long curr_upd_sum = 0;

    vector<int> res(N);

    for(int i = 0; i < N; i++)
    {
        // cerr << "i = " << i << '\n';
        for(int o: insertions[i])
        {
            S.add(o, Q-1, +v[o]);
            curr_upd_sum += v[o];
        }

        // cerr << "segtree: ";
        // for(int j = 0; j < Q; j++) cerr << S.rangemin(j, j) << ' ';
        // cerr << '\n';

        long long lower_bound;

        long long MN = S.rangemin(0, Q-1), MX = S.rangemax(0, Q-1);

        if(0 <= MN && MX <= (long long)c[i])
        {
            lower_bound = 0;
        }
        else if(MN < 0 && MX - MN <= (long long)c[i])
        {
            lower_bound = MN;
        }
        else
        {
            int last_good = Q-1;
            for(int bit = 19; bit >= 0; bit--)
            {
                int new_good = last_good - (1 << bit);
                if(new_good < 0) continue;
                if(S.rangemax(new_good, Q-1) - S.rangemin(new_good, Q-1) > (long long)c[i]) continue;
                last_good = new_good;
            }
            if(S.rangemin(last_good-1, last_good-1) < S.rangemin(last_good, Q-1))
            {
                lower_bound = S.rangemax(last_good, Q-1) - (long long)c[i];
            }
            else
            {
                lower_bound = S.rangemin(last_good, Q-1);
            }
        }

        // cerr << curr_upd_sum << ' ' << lower_bound << '\n';

        res[i] = curr_upd_sum - lower_bound;

        for(int o: removals[i])
        {
            S.add(o, Q-1, -v[o]);
            curr_upd_sum -= v[o];
        }
    }

    return res;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1421 ms 49092 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 332 KB Output is correct
2 Incorrect 345 ms 32540 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 204 KB Output is correct
2 Correct 1 ms 332 KB Output is correct
3 Correct 159 ms 31732 KB Output is correct
4 Correct 260 ms 12452 KB Output is correct
5 Correct 871 ms 43368 KB Output is correct
6 Correct 938 ms 43368 KB Output is correct
7 Incorrect 1000 ms 43364 KB Output isn't correct
8 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -