Submission #1039267

# Submission time Handle Problem Language Result Execution time Memory
1039267 2024-07-30T15:47:43 Z Tonyl The Potion of Great Power (CEOI20_potion) C++17
56 / 100
1710 ms 262144 KB
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using vi = vector<int>;
using pi = pair<int,int>;
#define REP(i,n) for (int i = 0; i < n; i++)
#define trav(a,x) for (auto &a : x)
#define all(x) (x).begin(), (x).end()
#define submit(a,b) cout << a << " " << b << endl
#define D(x) //cerr << #x << ": " << x << endl;

int n,d;
vi alln;

struct Treap {
    int num;
    short prio;
    Treap *left = nullptr, *right = nullptr;

    Treap(Treap *t) {
        num = t->num;
        prio = t->prio;
    }

    Treap(int nm, int pr) {
        num = nm;
        prio = pr;
    }

    Treap(int nm) {
        num = nm;
        prio = rand();
    }

    void gather_all() {
        alln.push_back(num);
        if (left != nullptr) left->gather_all();
        if (right != nullptr) right->gather_all();
    }
};

Treap* merge(Treap* left, Treap* right) {
    if (left == nullptr) return right;
    if (right == nullptr) return left;

    if (left->prio <= right->prio) {
        Treap *t = new Treap(left);
        t->left = left->left;
        t->right = merge(left->right, right);
        return t;
    } else {
        Treap *t = new Treap(right);
        t->right = right->right;
        t->left = merge(left, right->left);
        return t;
    }
}

pair<Treap*, Treap*> split(Treap* tr, int num) {
    if (tr == nullptr) return {tr, tr};
    if (tr->num < num) {
        Treap *t = new Treap(tr);
        t->left = tr->left;
        auto p = split(tr->right, num);
        t->right = p.first;
        return {t, p.second};
    } else {
        Treap *t = new Treap(tr);
        t->right = tr->right;
        auto p = split(tr->left, num);
        t->left = p.second;
        return {p.first, t};
    }
}

const int MAX_N = 1e5+2;
Treap* smol[MAX_N];

Treap* flipp(Treap* tr, int num) {
    Treap *lower, *exact, *bigger;
    auto p = split(tr, num);
    lower = p.first;
    auto p2 = split(p.second, num+1);
    exact = p2.first;
    bigger = p2.second;
    if (exact == nullptr) exact = smol[num];
    else exact = nullptr;

    Treap* t = merge(lower, exact);
    return merge(t, bigger);
}

struct TimeTraveller {
    vector<pair<int, Treap*>> history;

    TimeTraveller() {
        history.push_back({-1, nullptr});
    }

    void flip(int i, int time) {
        Treap* c = flipp(history.back().second, i);
        history.push_back({time, c});
    }

    vi get_all(int time) {
        auto p = lower_bound(all(history), pair<int, Treap*>(time+1, nullptr));
        p--;
        if (p->second == nullptr) return vi();
        alln = vi();
        p->second->gather_all();
        assert(alln.size() <= d);
        return alln;
    }
};

vi hs;

TimeTraveller fr[MAX_N];

int get_ans(vi a, vi b) {
    int best = 1e9;

    vi h1, h2;
    trav(aa, a) {
        h1.push_back(hs[aa]);
    }
    sort(all(h1));
    trav(bb, b) {
        h2.push_back(hs[bb]);
    }
    sort(all(h2));

    if (h1.size() == 0) return best;

    int i = 0;
    trav(hb, h2) {
        while (h1[i] < hb && i != h1.size()-1) i++;
        best = min(best, abs(hb - h1[i]));
        if (i!=0) best = min(best, abs(hb - h1[i-1]));
    }

    return best;
}

void init(int N, int D, int H[]) {
    srand(43249);
    n = N; d = D;
    REP(i,n) hs.push_back(H[i]);
    REP(i,n) smol[i] = new Treap(i, rand());
}

void curseChanges(int U, int A[], int B[]) {
    REP(uu, U) {
        int a = A[uu];
        int b = B[uu];
        fr[a].flip(b, uu+1);
        fr[b].flip(a, uu+1);
    }
}

int question(int x, int y, int v) {
    return get_ans(fr[x].get_all(v), fr[y].get_all(v));
}

Compilation message

In file included from /usr/include/c++/10/cassert:44,
                 from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:33,
                 from potion.cpp:1:
potion.cpp: In member function 'vi TimeTraveller::get_all(int)':
potion.cpp:111:28: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
  111 |         assert(alln.size() <= d);
      |                ~~~~~~~~~~~~^~~~
potion.cpp: In function 'int get_ans(vi, vi)':
potion.cpp:137:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  137 |         while (h1[i] < hb && i != h1.size()-1) i++;
      |                              ~~^~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 4 ms 5720 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 5 ms 5976 KB Output is correct
2 Correct 5 ms 5976 KB Output is correct
3 Correct 8 ms 6140 KB Output is correct
4 Correct 16 ms 10676 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 246 ms 65860 KB Output is correct
2 Correct 244 ms 65736 KB Output is correct
3 Correct 226 ms 133224 KB Output is correct
4 Runtime error 330 ms 262144 KB Execution killed with signal 9
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 242 ms 65772 KB Output is correct
2 Correct 1447 ms 197320 KB Output is correct
3 Correct 1014 ms 173140 KB Output is correct
4 Correct 1562 ms 195792 KB Output is correct
5 Correct 327 ms 78228 KB Output is correct
6 Correct 1710 ms 196344 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 44 ms 8228 KB Output is correct
2 Correct 71 ms 12120 KB Output is correct
3 Correct 103 ms 11352 KB Output is correct
4 Correct 627 ms 13912 KB Output is correct
5 Correct 609 ms 11608 KB Output is correct
6 Correct 103 ms 12120 KB Output is correct
7 Correct 488 ms 14168 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 4 ms 5720 KB Output is correct
2 Correct 5 ms 5976 KB Output is correct
3 Correct 5 ms 5976 KB Output is correct
4 Correct 8 ms 6140 KB Output is correct
5 Correct 16 ms 10676 KB Output is correct
6 Correct 246 ms 65860 KB Output is correct
7 Correct 244 ms 65736 KB Output is correct
8 Correct 226 ms 133224 KB Output is correct
9 Runtime error 330 ms 262144 KB Execution killed with signal 9
10 Halted 0 ms 0 KB -