Submission #988836

# Submission time Handle Problem Language Result Execution time Memory
988836 2024-05-26T12:32:32 Z lalig777 Last supper (IOI12_supper) C++14
Compilation error
0 ms 0 KB
#include <iostream>
#include <vector>
#include <unordered_set>
#include <queue>
using namespace std;

void ComputeAdvice(vector<int>C, int N, int K, int M){
    int digits;
    for (int i=0; i<21; i++){
        if ((1<<i)>=N-1){
            digits=i;
            break;
        }
    }
    if (K==1) return;
    unordered_set<int>current;
    priority_queue<pair<int,int>>next;
    vector<queue<int>>orden(N);
    for (int i=0; i<N; i++){
        int x=C[i];
        if (x<K){
            if (!(current.find(x)!=current.end())){
                next.push(make_pair(i, x));
                current.insert(x);
            }
        }orden[x].push(i);
    }for (int i=0; i<K; i++){
        if (!(current.find(i)!=current.end())){
            next.push(make_pair(1e9, i));
            current.insert(i);
        }
    }
    for (int i=0; i<N; i++){
        int x=C[i];
        orden[x].pop();
        int pos;
        if (orden[x].empty()) pos=1e9;
        else pos=orden[x].front();
        if (!(current.find(x)!=current.end())){
            current.insert(x);
            int remov=next.top().second;
            next.pop();
            current.erase(remov);
            for (int j=digits-1; j>=0; j--){
                int y=1<<j;
                if (remov>=y){
                    remov-=y;
                    WriteAdvice('1');
                }else WriteAdvice('0');
            }
        }
        next.push(make_pair(pos, x));
    }return;
}
#include <iostream>
#include <vector>
#include <unordered_set>
#include <queue>
using namespace std;

void Assist(vector<unsigned char>A, int N, int K, int R){
    if (K==1){
        int now=0;
        for (int i=0; i<N; i++){
            int follow=GetRequest();
            if (follow!=now){
                PutBack(now);
                now=follow;
            }
        }return;
    }
    int digits, count=0;
    for (int i=0; i<21; i++){
        if ((1<<i)>=N){
            digits=i;
            break;
        }
    }
    unordered_set<int>current;
    for (int i=0; i<K; i++) current.insert(i);
    for (int i=0; i<N; i++){
        int follow=GetRequest();
        if (!(current.find(follow)!=current.end())){
            int remov=0;
            for (int j=0; j<digits; j++){
                if (A[j+count*digits]=='1') remov+=(1<<(digits-j-1));
            }count++;
            PutBack(remov);
            current.erase(remov);
            current.insert(follow);
        }
    }
}

Compilation message

advisor.cpp: In function 'void ComputeAdvice(std::vector<int>, int, int, int)':
advisor.cpp:48:21: error: 'WriteAdvice' was not declared in this scope; did you mean 'ComputeAdvice'?
   48 |                     WriteAdvice('1');
      |                     ^~~~~~~~~~~
      |                     ComputeAdvice
advisor.cpp:49:23: error: 'WriteAdvice' was not declared in this scope; did you mean 'ComputeAdvice'?
   49 |                 }else WriteAdvice('0');
      |                       ^~~~~~~~~~~
      |                       ComputeAdvice

assistant.cpp: In function 'void Assist(std::vector<unsigned char>, int, int, int)':
assistant.cpp:11:24: error: 'GetRequest' was not declared in this scope
   11 |             int follow=GetRequest();
      |                        ^~~~~~~~~~
assistant.cpp:13:17: error: 'PutBack' was not declared in this scope
   13 |                 PutBack(now);
      |                 ^~~~~~~
assistant.cpp:28:20: error: 'GetRequest' was not declared in this scope
   28 |         int follow=GetRequest();
      |                    ^~~~~~~~~~
assistant.cpp:34:13: error: 'PutBack' was not declared in this scope
   34 |             PutBack(remov);
      |             ^~~~~~~