#include "advisor.h"
#include <bits/stdc++.h>
using namespace std;
typedef pair <int, int> pii;
static int P[151515], K[151515];
static priority_queue <pii> Q;
static bool chk[151515], ans[151515];
void ComputeAdvice(int *C, int n, int k, int m)
{
int i, t, x;
for(i=0; i<n; i++) P[i] = n + k + 1;
for(i=n-1; i>=0; i--){
K[k + i] = P[C[i]];
P[C[i]] = k + i;
}
for(i=0; i<k; i++){
K[i] = P[i];
P[i] = i; chk[i] = 1;
Q.push(pii(K[i], i));
}
for(i=0; i<n; i++){
if(!chk[C[i]]){
for(; ;){
t = Q.top().second; Q.pop();
x = t >= k? C[t] : t;
if(chk[x]){
chk[x] = 0; ans[t] = 1;
break;
}
}
Q.pop();
chk[C[i]] = 1;
}
Q.push(pii(K[k + i], k + i));
}
for(i=0; i<n+k; i++){
WriteAdvice(ans[i]);
}
}
#include "assistant.h"
#include <bits/stdc++.h>
using namespace std;
static vector <int> V;
static bool chk[101010];
void Assist(unsigned char *A, int n, int k, int r)
{
int i, c;
for(i=0; i<k; i++){
if(A[i]) V.push_back(i);
chk[i] = 1;
}
for(i=0; i<n; i++){
c = GetRequest();
if(!chk[c]){
chk[V.back()] = 0;
PutBack(V.back());
V.pop_back();
}
if(A[k + i]) V.push_back(c);
chk[c] = 1;
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2536 ms |
248 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2550 ms |
612 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2550 ms |
1840 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2551 ms |
1840 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
2565 ms |
2296 KB |
Time limit exceeded |
2 |
Execution timed out |
2574 ms |
2296 KB |
Time limit exceeded |
3 |
Execution timed out |
2578 ms |
2304 KB |
Time limit exceeded |
4 |
Execution timed out |
2558 ms |
2372 KB |
Time limit exceeded |
5 |
Execution timed out |
2576 ms |
2372 KB |
Time limit exceeded |
6 |
Execution timed out |
2584 ms |
2372 KB |
Time limit exceeded |
7 |
Execution timed out |
2578 ms |
2372 KB |
Time limit exceeded |
8 |
Execution timed out |
2572 ms |
2372 KB |
Time limit exceeded |
9 |
Execution timed out |
2588 ms |
2372 KB |
Time limit exceeded |
10 |
Execution timed out |
2580 ms |
2372 KB |
Time limit exceeded |