#include "advisor.h"
#include <bits/stdc++.h>
using namespace std;
#define all(x) x.begin(), x.end()
void ComputeAdvice(int *C, int N, int K, int M) {
int B = log2(K);
vector<int> idx[N];
for (int i = 0; i < N; i++) {
idx[C[i]].push_back(i);
}
for (int i = 0; i < N; i++) {
idx[i].push_back(N);
reverse(all(idx[i]));
}
int shelf[K];
set<pair<int, int>> st;
priority_queue<pair<int, int>> pq;
for (int i = 0; i < K; i++) {
shelf[i] = i;
st.insert(make_pair(i, i)); // (color, posicion)
pq.push(make_pair(idx[i].back(), i)); // (proxima aparicion, posicion)
idx[i].pop_back();
}
for (int i = 0; i < N; i++) {
int x = C[i];
auto it = st.lower_bound(make_pair(x, 0));
if (it != st.end() && it->first == x) continue;
int y = pq.top().second;
pq.pop();
st.erase(make_pair(shelf[y], y));
for (int j = B; j >= 0; j--) {
if ((y >> j) & 1) WriteAdvice(1);
else WriteAdvice(0);
}
shelf[y] = x;
st.insert(make_pair(x, y));
pq.push(make_pair(idx[x].back(), y));
idx[x].pop_back();
}
}
#include "assistant.h"
#include <bits/stdc++.h>
using namespace std;
void Assist(unsigned char *A, int N, int K, int R) {
int B = log2(K);
int shelf[K];
set<int> st;
for (int i = 0; i < K; i++) {
shelf[i] = i;
st.insert(i);
}
int curr = 0;
for (int i = 0; i < N; i++) {
int x = GetRequest();
if (st.find(x) != st.end()) continue;
int y = 0;
for (int j = B; j >= 0; j--) {
if (A[curr++] == 1) y ^= (1 << j);
}
PutBack(shelf[y]);
st.erase(shelf[y]);
shelf[y] = x;
st.insert(x);
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
796 KB |
Output isn't correct - not an optimal way |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
20 ms |
2352 KB |
Output isn't correct - not an optimal way |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
203 ms |
14900 KB |
Output isn't correct - not an optimal way |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
1060 KB |
Error - advice is too long |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
271 ms |
18516 KB |
Output isn't correct - not an optimal way |
2 |
Incorrect |
274 ms |
18580 KB |
Output isn't correct - not an optimal way |
3 |
Incorrect |
293 ms |
18384 KB |
Output isn't correct - not an optimal way |
4 |
Incorrect |
294 ms |
18380 KB |
Output isn't correct - not an optimal way |
5 |
Incorrect |
258 ms |
18372 KB |
Output isn't correct - not an optimal way |
6 |
Incorrect |
277 ms |
18288 KB |
Output isn't correct - not an optimal way |
7 |
Incorrect |
264 ms |
18284 KB |
Output isn't correct - not an optimal way |
8 |
Incorrect |
268 ms |
18428 KB |
Output isn't correct - not an optimal way |
9 |
Incorrect |
285 ms |
18304 KB |
Output isn't correct - not an optimal way |
10 |
Incorrect |
303 ms |
20060 KB |
Output isn't correct - not an optimal way |