Submission #888749

# Submission time Handle Problem Language Result Execution time Memory
888749 2023-12-18T07:17:13 Z abcvuitunggio Last supper (IOI12_supper) C++17
0 / 100
74 ms 12404 KB
#include "advisor.h"
#include <bits/stdc++.h>
using namespace std;
vector <int> pos[100001];
int a[125001],b[100001],c[100001];
set <pair <int, int>> s;
void ComputeAdvice(int *C, int N, int K, int M){
    for (int i=0;i<N;i++)
        pos[i].push_back(1000000);
    for (int i=N-1;i>=0;i--)
        pos[C[i]].push_back(i+K);
    for (int i=0;i<K;i++){
        b[i]=i;
        c[i]=1;
        s.insert({pos[i].back(),i});
        pos[i].pop_back();
    }
    for (int i=0;i<N;i++){
        if (c[C[i]]){
            a[b[C[i]]]=1;
            b[C[i]]=i+K;
            continue;
        }
        b[C[i]]=i+K;
        auto [x,y]=*--s.end();
        s.erase(--s.end());
        c[C[i]]=1;
        c[y]=0;
        s.insert({pos[C[i]].back(),C[i]});
        pos[C[i]].pop_back();
    }
    for (auto [x,y]:s)
        a[b[y]]=1;
    for (int i=0;i<N+K;i++)
        WriteAdvice(a[i]);
}
#include "assistant.h"
#include <bits/stdc++.h>
using namespace std;
int ch[100001];
void Assist(unsigned char *A, int N, int K, int R){
    vector <int> ve;
    for (int i=0;i<K;i++){
        if (!A[i])
            ve.push_back(i);
        ch[i]=1;
    }
    for (int i=0;i<N;i++){
        int c=GetRequest();
        if (!ch[c]){
            PutBack(ve.back());
            ch[ve.back()]=0;
            ch[c]=1;
            ve.pop_back();
        }
        if (!A[i+K])
            ve.push_back(c);
    }
}
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 4112 KB Output isn't correct - not an optimal way
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 7 ms 4964 KB Output isn't correct - not an optimal way
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 48 ms 10696 KB Output isn't correct - not an optimal way
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 4408 KB Output isn't correct - not an optimal way
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 64 ms 12020 KB Output isn't correct - not an optimal way
2 Incorrect 58 ms 11960 KB Output isn't correct - not an optimal way
3 Incorrect 61 ms 12148 KB Output isn't correct - not an optimal way
4 Incorrect 59 ms 12404 KB Output isn't correct - not an optimal way
5 Incorrect 61 ms 12084 KB Output isn't correct - not an optimal way
6 Incorrect 66 ms 12184 KB Output isn't correct - not an optimal way
7 Incorrect 67 ms 11864 KB Output isn't correct - not an optimal way
8 Incorrect 59 ms 12060 KB Output isn't correct - not an optimal way
9 Incorrect 65 ms 12292 KB Output isn't correct - not an optimal way
10 Incorrect 74 ms 12108 KB Output isn't correct - not an optimal way