Submission #287907

# Submission time Handle Problem Language Result Execution time Memory
287907 2020-09-01T06:22:53 Z 2qbingxuan Last supper (IOI12_supper) C++14
0 / 100
364 ms 11668 KB
#include "advisor.h"
#include <bits/stdc++.h>
#ifdef local
#define debug(...) qqbx(#__VA_ARGS__, __VA_ARGS__)
template <typename H, typename ...T> void qqbx(const char *s, const H& h, T &&...args) {
    for(; *s && *s != ','; ++s) if(*s != ' ') std::cerr << *s;
    std::cerr << " = " << h << (sizeof...(T) ? ", " : "\n");
    if constexpr(sizeof...(T)) qqbx(++s, args...);
}
#define safe std::cerr<<__PRETTY_FUNCTION__<<" line "<<__LINE__<<" safe\n"
#else
#define debug(...) ((void)0)
#define safe ((void)0)
#endif // local

using namespace std;

void ComputeAdvice(int *C, int n, int k, int m) {
    int L = __lg(n-1)+1;
    auto W = [&](int x) -> void {
        for(int i = L-1; i >= 0; i--) WriteAdvice(x >> i & 1);
    };
    vector<bool> ok(n);
    for(int i = 0; i < k; i++) ok[i] = true;
    vector<int> nxt(n), last(n, n);
    for(int i = n-1; i >= 0; i--) {
        nxt[i] = last[C[i]];
        last[C[i]] = i;
    }
    priority_queue<pair<int,int>> pq;
    for(int i = 0; i < k; i++) pq.push({last[i], i});
    for(int i = 0; i < n; i++) {
        int r = C[i];
        if(!ok[r]) {
            int x = pq.top().second; pq.pop();
            W(x);
            ok[x] = false;
            ok[r] = true;
            pq.push({nxt[i], r});
        }
    }
}
#include "assistant.h"
#include <bits/stdc++.h>
#ifdef local
#define debug(...) qqbx(#__VA_ARGS__, __VA_ARGS__)
template <typename H, typename ...T> void qqbx(const char *s, const H& h, T &&...args) {
    for(; *s && *s != ','; ++s) if(*s != ' ') std::cerr << *s;
    std::cerr << " = " << h << (sizeof...(T) ? ", " : "\n");
    if constexpr(sizeof...(T)) qqbx(++s, args...);
}
#define safe std::cerr<<__PRETTY_FUNCTION__<<" line "<<__LINE__<<" safe\n"
#else
#define debug(...) ((void)0)
#define safe ((void)0)
#endif // local

using namespace std;

void Assist(unsigned char *A, int n, int k, int len) {
    int L = __lg(n-1)+1;
    int p = 0;
    auto nextint = [&]() -> int {
        int res = 0;
        for(int i = 0; i < L; i++) {
            res = res * 2 + A[p++];
        }
        return res;
    };
    vector<bool> ok(n);
    for(int i = 0; i < k; i++) ok[i] = true;
    for(int i = 0; i < n; i++) {
        int r = GetRequest();
        if(!ok[r]) {
            int x = nextint();
            PutBack(x);
            ok[x] = false;
            ok[r] = true;
        }
    }
}
# Verdict Execution time Memory Grader output
1 Correct 1 ms 1028 KB Output is correct
2 Incorrect 1 ms 776 KB Output isn't correct - not an optimal way
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 27 ms 1948 KB Output isn't correct - not an optimal way
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 221 ms 8608 KB Output isn't correct - not an optimal way
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 956 KB Error - advice is too long
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 295 ms 11180 KB Output isn't correct - not an optimal way
2 Incorrect 277 ms 10792 KB Output isn't correct - not an optimal way
3 Incorrect 263 ms 10316 KB Output isn't correct - not an optimal way
4 Incorrect 277 ms 10420 KB Output isn't correct - not an optimal way
5 Incorrect 260 ms 10388 KB Output isn't correct - not an optimal way
6 Incorrect 260 ms 10312 KB Output isn't correct - not an optimal way
7 Incorrect 262 ms 10208 KB Output isn't correct - not an optimal way
8 Incorrect 275 ms 10184 KB Output isn't correct - not an optimal way
9 Incorrect 291 ms 10304 KB Output isn't correct - not an optimal way
10 Correct 364 ms 11668 KB Output is partially correct - 1266636 bits used