Submission #813321

# Submission time Handle Problem Language Result Execution time Memory
813321 2023-08-07T15:55:49 Z Andrey Last supper (IOI12_supper) C++14
0 / 100
304 ms 18528 KB
#include<bits/stdc++.h>
#include "advisor.h"
using namespace std;

vector<int> haha[100001];
void ComputeAdvice(int *c, int n, int k, int m) {
    int br = 0,z = 1;
    while(z <= n) {
        z*=2;
        br++;
    }
    vector<int> ans(0);
    vector<int> p(n);
    vector<bool> bruh(n);
    int a,b;
    priority_queue<pair<int,int>> idk;
    for(int i = 0; i < n; i++) {
        haha[c[i]].push_back(i);
    }
    for(int i = 0; i < n; i++) {
        haha[i].push_back(INT_MAX);
    }
    for(int i = 0; i < k; i++) {
        bruh[i] = true;
        idk.push({haha[i][0],i});
    }
    for(int i = 0; i < n; i++) {
        if(bruh[c[i]]) {
            p[c[i]]++;
            if(haha[c[i]][p[c[i]]] == INT_MAX) {
                idk.push({INT_MAX,c[i]});
            }
            else {
                idk.push({rand(),c[i]});
            }
            ans.push_back(INT_MAX);
        }
        else {
            a = idk.top().first;
            b = idk.top().second;
            bruh[b] = false;
            idk.pop();
            ans.push_back(b);
            p[c[i]]++;
            if(haha[c[i]][p[c[i]]] == INT_MAX) {
                idk.push({INT_MAX,c[i]});
            }
            else {
                idk.push({rand(),c[i]});
            }
            bruh[c[i]] = true;
        }
    }
    for(int i = 0; i < n; i++) {
        for(int j = br-1; j >= 0; j--) {
            if((1 << j)&ans[i]) {
                WriteAdvice(1);
            }
            else {
                WriteAdvice(0);
            }
        }
    }
}
#include<bits/stdc++.h>
#include "assistant.h"
using namespace std;

void Assist(unsigned char *a, int n, int k, int r) {
    int br = 0,z = 1,x = 0;
    while(z <= n) {
        z*=2;
        br++;
    }
    int y = 0;
    for(int i = 0; i < n; i++) {
        GetRequest();
        x = 0;
        for(int j = 0; j < br; j++) {
            x*=2;
            x+=(int)a[y];
            y++;
        }
        if(x < n) {
            PutBack(x);
        }
    }
}

Compilation message

advisor.cpp: In function 'void ComputeAdvice(int*, int, int, int)':
advisor.cpp:15:9: warning: variable 'a' set but not used [-Wunused-but-set-variable]
   15 |     int a,b;
      |         ^
# Verdict Execution time Memory Grader output
1 Correct 1 ms 2956 KB Output is correct
2 Correct 2 ms 2948 KB Output is correct
3 Correct 3 ms 3068 KB Output is correct
4 Incorrect 8 ms 3412 KB Error - Putting back a color that is not on the scaffold
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 24 ms 4504 KB Error - Putting back a color that is not on the scaffold
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 220 ms 15308 KB Output is correct
2 Incorrect 38 ms 9436 KB Error - advice is too long
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 3088 KB Error - advice is too long
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 283 ms 18380 KB Error - Putting back a color that is not on the scaffold
2 Correct 280 ms 18292 KB Output is partially correct - 1700000 bits used
3 Correct 291 ms 18380 KB Output is partially correct - 1700000 bits used
4 Correct 281 ms 18456 KB Output is partially correct - 1700000 bits used
5 Correct 282 ms 18352 KB Output is partially correct - 1700000 bits used
6 Correct 273 ms 18372 KB Output is partially correct - 1700000 bits used
7 Correct 289 ms 18528 KB Output is partially correct - 1697263 bits used
8 Correct 304 ms 18348 KB Output is partially correct - 1700000 bits used
9 Correct 279 ms 18356 KB Output is partially correct - 1700000 bits used
10 Correct 281 ms 18512 KB Output is partially correct - 1700000 bits used