Submission #972195

# Submission time Handle Problem Language Result Execution time Memory
972195 2024-04-30T08:29:44 Z RaresFelix The Potion of Great Power (CEOI20_potion) C++17
38 / 100
1402 ms 262144 KB
#include <bits/stdc++.h>
 
using namespace std;
 
using ii = pair<int, int>;
using vi = vector<int>;
 
int n, rad;
int *H0, *A0, *B0;
vi Perm;
 
vector<vector<vi> > Snapshot;
vector<set<int> > S;
 
void init(int N, int D, int H[]) {
    n = N;
    H0 = H;
    S.resize(n);
    for(int i = 0; i < n; ++i)
        Perm.push_back(i);
    sort(Perm.begin(), Perm.end(), [&](auto a, auto b) {
        return H[a] < H[b];
    });
}

 
void curseChanges(int U, int A[], int B[]) {
    rad = max(int(sqrt(U)) * 2, 1);
    A0 = A;
    B0 = B;
    for(int nr = 0; nr < U; ++nr) {
        if(nr % rad == 0) {
            vector<vi> Nou;
            for(int i = 0; i < n; ++i) {
                vi V;
                for(auto it : S[i]) V.push_back(it);
                Nou.push_back(V);
            }
            Snapshot.push_back(Nou);
        }
        int a = A[nr], b = B[nr];
        if(S[a].count(b))  {
            S[a].erase(b);
            S[b].erase(a);
        } else {
            S[b].insert(a);
            S[a].insert(b);
        }
    }
}
 
const int INF = 1e9;
 
int question(int x, int y, int v) {
    if(!v) {
        return INF;
    }
    --v;
    vi VSX = Snapshot[v / rad][x];
    vi VSY = Snapshot[v / rad][y];
    set<int> SX, SY;
    for(auto it : VSX) SX.insert(it);
    for(auto it : VSY) SY.insert(it);
    for(int i = v / rad * rad; i <= v; ++i) {
        int a = A0[i], b = B0[i];
        if(b == x) swap(a, b);
        if(a == x) {
            if(SX.count(b)) SX.erase(b);
            else SX.insert(b);
        }
        if(b == y) swap(a, b);
        if(a == y) {
            if(SY.count(b)) SY.erase(b);
            else SY.insert(b);
        }
    }

    vi VA, VB;
    for(auto it : SX)
        VA.push_back(H0[it]);
    for(auto it : SY)
        VB.push_back(H0[it]);
    sort(VA.begin(), VA.end());
    sort(VB.begin(), VB.end());

    int p1 = 0, p2 = 0;
    int re = INF;
    while(p1 < VA.size() && p2 < VB.size()) {
        re = min(re, abs(VB[p2] - VA[p1]));
        if(VA[p1] < VB[p2]) ++p1;
        else ++p2;
    }

    return re;
}

Compilation message

potion.cpp: In function 'int question(int, int, int)':
potion.cpp:88:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   88 |     while(p1 < VA.size() && p2 < VB.size()) {
      |           ~~~^~~~~~~~~~~
potion.cpp:88:32: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   88 |     while(p1 < VA.size() && p2 < VB.size()) {
      |                             ~~~^~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 2 ms 344 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 4 ms 1112 KB Output is correct
2 Correct 3 ms 1112 KB Output is correct
3 Correct 3 ms 1112 KB Output is correct
4 Correct 57 ms 49544 KB Output is correct
# Verdict Execution time Memory Grader output
1 Runtime error 615 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 592 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 143 ms 22880 KB Output is correct
2 Correct 105 ms 13424 KB Output is correct
3 Correct 394 ms 13184 KB Output is correct
4 Correct 1145 ms 18908 KB Output is correct
5 Correct 1402 ms 21568 KB Output is correct
6 Correct 146 ms 5468 KB Output is correct
7 Correct 1094 ms 14444 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 2 ms 344 KB Output is correct
2 Correct 4 ms 1112 KB Output is correct
3 Correct 3 ms 1112 KB Output is correct
4 Correct 3 ms 1112 KB Output is correct
5 Correct 57 ms 49544 KB Output is correct
6 Runtime error 615 ms 262144 KB Execution killed with signal 9
7 Halted 0 ms 0 KB -