Submission #966423

# Submission time Handle Problem Language Result Execution time Memory
966423 2024-04-19T20:30:31 Z anton The Potion of Great Power (CEOI20_potion) C++17
18 / 100
548 ms 60592 KB
#include<bits/stdc++.h>

using namespace std;
#define ll long long
#define pii pair<int, int>
typedef complex<int> point;

const int INF = 1e9;

int dist(vector<int>& a,  vector<int>& b){
    if(a.size() == 0 || b.size() == 0){
        return INF;
    }   
    int ia =0, ib = 0;

    int res= abs(a[0]-b[0]);
    while(ia<a.size()-1 || ib<b.size()-1){
        if(ia==a.size()-1){
            ib++;
        }
        else if(ib==b.size()-1){
            ia++;
        }
        else if(a[ia]<=b[ib]){
            ia++;
        }
        else{
            ib++;
        }

        res = min(res, abs(a[ia]-b[ib]));
    }
    return res;
}

vector<vector<int>> vs;
vector<int> h;
set<pii> cur;

vector<vector<int>> cur_vals;
vector<vector<pair<int, vector<int>>>> events;
int n;

void init(int N, int D, int H[]) {
    vs.resize(N);
    h.resize(N);
    cur_vals.resize(N, vector<int>(2, 0));
    events.resize(N);
    for(int i = 0; i<N; i++){
        h[i] = H[i];
    }
    n= N;
}


void curseChanges(int U, int A[], int B[]) {
    for(int i = 0; i<n; i++){
        events[i].push_back({-1, vector<int>(2, 0)});
    }
    for(int i = 0; i<U; i++){
        int a= A[i], b= B[i];
        if(cur.find({a, b})!=cur.end()){
            cur.erase({a, b});
            cur_vals[a][h[b]]--;
            cur_vals[b][h[a]]--;
        }
        else if(cur.find({b, a})!=cur.end()){
            cur.erase({b, a});
            cur_vals[a][h[b]]--;
            cur_vals[b][h[a]]--;
        }
        else{
            cur.insert({a, b});
            cur_vals[a][h[b]]++;
            cur_vals[b][h[a]]++;
        }
        events[a].push_back({i, cur_vals[a]});
        events[b].push_back({i, cur_vals[b]});
    }
}

vector<int> get_last_valid(int id, int d){
    int cur= 0;
    for(int step= (1<<28); step>=1; step/=2){
        if(cur +step<events[id].size()){
            if(events[id][cur+step].first<d){
                cur+=step;
            }
        }
    }
    return events[id][cur].second;
}
int question(int x, int y, int v) {
    auto xv =get_last_valid(x, v);
    auto yv = get_last_valid(y, v);
    int res= INF;

    for(int i = 0; i<2; i++){
        if(xv[i]>0 && yv[i^1]>0){
            res= 1;
        }
    }

    for(int i = 0; i<2; i++){
        if(xv[i]>0 && yv[i]>0){
            res =0;
        }
    }
    return res;
}

Compilation message

potion.cpp: In function 'int dist(std::vector<int>&, std::vector<int>&)':
potion.cpp:17:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   17 |     while(ia<a.size()-1 || ib<b.size()-1){
      |           ~~^~~~~~~~~~~
potion.cpp:17:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   17 |     while(ia<a.size()-1 || ib<b.size()-1){
      |                            ~~^~~~~~~~~~~
potion.cpp:18:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   18 |         if(ia==a.size()-1){
      |            ~~^~~~~~~~~~~~
potion.cpp:21:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   21 |         else if(ib==b.size()-1){
      |                 ~~^~~~~~~~~~~~
potion.cpp: In function 'std::vector<int> get_last_valid(int, int)':
potion.cpp:85:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, std::vector<int> > >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   85 |         if(cur +step<events[id].size()){
      |            ~~~~~~~~~^~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 344 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 856 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 71 ms 41836 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 548 ms 60592 KB Output is correct
2 Correct 286 ms 50688 KB Output is correct
3 Correct 437 ms 51720 KB Output is correct
4 Correct 405 ms 51768 KB Output is correct
5 Correct 512 ms 60144 KB Output is correct
6 Correct 403 ms 51880 KB Output is correct
# Verdict Execution time Memory Grader output
1 Runtime error 5 ms 4440 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 344 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -