Submission #968515

# Submission time Handle Problem Language Result Execution time Memory
968515 2024-04-23T14:09:17 Z steveonalex Last supper (IOI12_supper) C++17
0 / 100
95 ms 12408 KB
#include <bits/stdc++.h>
#include "advisor.h"
 
using namespace std;
 
typedef long long ll;
typedef unsigned long long ull;
 
#define ALL(v) (v).begin(), (v).end()
#define MASK(i) (1LL << (i))
#define GETBIT(mask, i) (((mask) >> (i)) & 1)
 
// mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
mt19937_64 rng(1);
ll rngesus(ll l, ll r){return ((ull) rng()) % (r - l + 1) + l;}
 
ll max(ll a, ll b){return (a > b) ? a : b;}
ll min(ll a, ll b){return (a < b) ? a : b;}
 
ll LASTBIT(ll mask){return mask & (-mask);}
ll pop_cnt(ll mask){return __builtin_popcountll(mask);}
ll ctz(ll mask){return __builtin_ctzll(mask);}
ll clz(ll mask){return __builtin_clzll(mask);}
ll logOf(ll mask){return 63 - clz(mask);}
 
template <class T1, class T2>
    bool minimize(T1 &a, T2 b){
        if (a > b){a = b; return true;}
        return false;
    }
template <class T1, class T2>
    bool maximize(T1 &a, T2 b){
        if (a < b){a = b; return true;}
        return false;
    }
template <class T>
    void printArr(T& a, string separator = " ", string finish = "\n", ostream& out = cout){
        for(auto i: a) out << i << separator;
        out << finish;
    }
template <class T>
    void remove_dup(vector<T> &a){
        sort(ALL(a));
        a.resize(unique(ALL(a)) - a.begin());
    }
 
void ComputeAdvice(int *C, int n, int k, int m){
    vector<vector<int>> color(n);
    for(int i = 0; i<n; ++i) color[C[i]].push_back(i);
    for(int i = 0; i<n; ++i) color[i].push_back(n);
    set<pair<int, int>> S;
    for(int i = 0; i<k; ++i) S.insert({color[i][0], i});
 
    vector<int> oo;
    for(int i = 0; i<n; ++i){
        auto it = S.begin();
        if ((*it).first == i){
            pair<int, int> y = *it;
            S.erase(it);
            S.insert({*upper_bound(ALL(color[C[i]]), i), y.second});
            oo.push_back(-1);
        }
        else{
            auto it = S.end();
            it--;
            if (it != S.begin()){
                it--;
                if ((*it).first < i + k) it++; 
            }
            pair<int, int> y = *it;
            S.erase(y);
            oo.push_back(y.second);
            S.insert({*upper_bound(ALL(color[C[i]]), i), y.second});
        }
    }

    vector<int> nxt(k, n-1);
    vector<int> info;
    for(int i = n-1; i>=0; --i) if (oo[i] > -1){
        int cnt = upper_bound(ALL(color[C[i]]), nxt[oo[i]]) - upper_bound(ALL(color[C[i]]), i);
        info.push_back(cnt > 0);
        nxt[oo[i]] = i;
    }

    for(int i = k-1; i>=0; --i){
        int cnt = upper_bound(ALL(color[i]), nxt[i]) - lower_bound(ALL(color[i]), 0);
        info.push_back(cnt > 0);
    }
    reverse(ALL(info));
    // printArr(info);

    for(int i: info) WriteAdvice(i);
 
    // const int LOG_N = logOf(k * 2);
    // for(int i: oo){
    //     for(int j = 0; j < LOG_N; ++j){
    //         WriteAdvice(i % 2);
    //         i /= 2;
    //     }
    // }
}
 
// int main(void){
//     ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
 
//     int C[] = {2, 0, 3, 0};
 
//     ComputeAdvice(C, 4, 2, 1000);
 
//     return 0;
// }
#include <bits/stdc++.h>
#include "assistant.h"
 
using namespace std;
 
typedef long long ll;
typedef unsigned long long ull;
 
#define ALL(v) (v).begin(), (v).end()
#define MASK(i) (1LL << (i))
#define GETBIT(mask, i) (((mask) >> (i)) & 1)
 
// mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
mt19937_64 rng(1);
ll rngesus(ll l, ll r){return ((ull) rng()) % (r - l + 1) + l;}
 
ll max(ll a, ll b){return (a > b) ? a : b;}
ll min(ll a, ll b){return (a < b) ? a : b;}
 
ll LASTBIT(ll mask){return mask & (-mask);}
ll pop_cnt(ll mask){return __builtin_popcountll(mask);}
ll ctz(ll mask){return __builtin_ctzll(mask);}
ll clz(ll mask){return __builtin_clzll(mask);}
ll logOf(ll mask){return 63 - clz(mask);}
 
template <class T1, class T2>
    bool minimize(T1 &a, T2 b){
        if (a > b){a = b; return true;}
        return false;
    }
template <class T1, class T2>
    bool maximize(T1 &a, T2 b){
        if (a < b){a = b; return true;}
        return false;
    }
template <class T>
    void printArr(T& a, string separator = " ", string finish = "\n", ostream& out = cout){
        for(auto i: a) out << i << separator;
        out << finish;
    }
template <class T>
    void remove_dup(vector<T> &a){
        sort(ALL(a));
        a.resize(unique(ALL(a)) - a.begin());
    }
 
void Assist(unsigned char *A, int n, int k, int r){
    vector<int> state(k);
    for(int i = 0; i<k; ++i) state[i] = A[i];

    set<int> replacable;
    for(int i = 0; i<k; ++i) if (state[i] == 0) replacable.insert(i);

    vector<int> info;
    for(int i = k; i<r; ++i) info.push_back(A[i]);
    reverse(ALL(info));
 
    vector<int> scaffold(k);
    set<int> S;
    for(int i= 0; i<k; ++i) {
        scaffold[i] = i;
        S.insert(i);
    }
 
    for(int i = 0; i<n; ++i){
        int j = GetRequest();
        if (S.find(j) == S.end()){
            if (replacable.empty()){
                exit(1);
                int k = 0;
                PutBack(scaffold[k]);
                S.erase(scaffold[k]);
                scaffold[k] = j;
                S.insert(scaffold[k]);

                state[k] = info.back(); info.pop_back();
                if (state[k] == 0) replacable.insert(k);
            }
            else{
                int k = *replacable.begin();
                replacable.erase(k);

                PutBack(scaffold[k]);
                S.erase(scaffold[k]);
                scaffold[k] = j;
                S.insert(scaffold[k]);

                state[k] = info.back(); info.pop_back();
                if (state[k] == 0) replacable.insert(k);
            }
        }
        else{
 
        }
    }
}
// void PutBack(int T);
// int GetRequest();
 
 
// int main(void){
//     ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
 
//     return 0;
// }
# Verdict Execution time Memory Grader output
1 Correct 0 ms 780 KB Output is correct
2 Runtime error 0 ms 780 KB Execution failed because the return code was nonzero
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 8 ms 1888 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 64 ms 9732 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 1068 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 95 ms 11864 KB Execution failed because the return code was nonzero
2 Runtime error 86 ms 11912 KB Execution failed because the return code was nonzero
3 Runtime error 81 ms 12268 KB Execution failed because the return code was nonzero
4 Runtime error 81 ms 12076 KB Execution failed because the return code was nonzero
5 Runtime error 82 ms 12188 KB Execution failed because the return code was nonzero
6 Runtime error 86 ms 12148 KB Execution failed because the return code was nonzero
7 Runtime error 81 ms 12180 KB Execution failed because the return code was nonzero
8 Runtime error 81 ms 12136 KB Execution failed because the return code was nonzero
9 Runtime error 89 ms 12408 KB Execution failed because the return code was nonzero
10 Runtime error 71 ms 11936 KB Execution failed because the return code was nonzero