답안 #271925

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
271925 2020-08-18T08:00:24 Z 송준혁(#5108) 최후의 만찬 (IOI12_supper) C++14
0 / 100
2500 ms 9432 KB
#include "advisor.h"
#include <bits/stdc++.h>
#define fi first
#define se second
using namespace std;
typedef long long LL;
typedef pair<int,int> pii;

static int A[202020], X[202020], R[101010];
static int B[202020];
static priority_queue<pii> PQ;

void ComputeAdvice(int *C, int N, int K, int M) {
	for (int i=0; i<K; i++) A[i]=i;
	for (int i=0; i<N; i++) A[i+K]=C[i], R[i]=N+K;
	for (int i=N+K-1; i>=0; i--) X[i]=R[A[i]], R[A[i]]=i;
	memset(R, -1, sizeof R);
	for (int i=0; i<K; i++) PQ.push(pii(X[i], i)), R[i]=i;
	for (int i=K; i<K+N; i++){
		if (R[A[i]]<0){
			while (R[A[PQ.top().se]] != PQ.top().se) PQ.pop();
			B[PQ.top().se]=1, R[PQ.top().se]=-1;
		}
		R[A[i]]=i, PQ.push(pii(X[i], i));
	}
	for (int i=0; i<K+N; i++) WriteAdvice(B[i]);
}
#include "assistant.h"
#include <bits/stdc++.h>
#define fi first
#define se second
using namespace std;
typedef long long LL;
typedef pair<int,int> pii;

static bool chk[101010];
static set<int> E;

void Assist(unsigned char *A, int N, int K, int R) {
	for (int i=0; i<K; i++){
		if (A[i]) E.insert(i);
		chk[i]=true;
	}
	for (int i=0; i<N; i++){
		int x=GetRequest();
		if (!chk[x]) PutBack(*E.begin()), chk[*E.begin()]=false, E.erase(E.begin());
		if (A[i+K]) E.insert(x);
		else E.erase(x);
		chk[x]=true;
	}
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 1536 KB Output is correct
2 Execution timed out 2566 ms 1536 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2590 ms 2304 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2512 ms 7640 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2596 ms 1792 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2593 ms 8920 KB Time limit exceeded
2 Execution timed out 2507 ms 9176 KB Time limit exceeded
3 Execution timed out 2524 ms 9184 KB Time limit exceeded
4 Execution timed out 2594 ms 9176 KB Time limit exceeded
5 Execution timed out 2512 ms 9176 KB Time limit exceeded
6 Execution timed out 2598 ms 9176 KB Time limit exceeded
7 Execution timed out 2568 ms 9176 KB Time limit exceeded
8 Execution timed out 2594 ms 9176 KB Time limit exceeded
9 Execution timed out 2508 ms 9176 KB Time limit exceeded
10 Correct 88 ms 9432 KB Output is correct - 125000 bits used