# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
271960 |
2020-08-18T08:08:50 Z |
송준혁(#5108) |
최후의 만찬 (IOI12_supper) |
C++14 |
|
112 ms |
8664 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;
PQ.pop();
}
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 |
Correct |
1 ms |
1536 KB |
Output is correct |
3 |
Correct |
2 ms |
1536 KB |
Output is correct |
4 |
Incorrect |
3 ms |
1792 KB |
Error - Putting back a color that is not on the scaffold |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
11 ms |
2368 KB |
Output isn't correct - not an optimal way |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
76 ms |
7136 KB |
Output is correct |
2 |
Correct |
96 ms |
8408 KB |
Output is correct |
3 |
Correct |
108 ms |
8408 KB |
Output is correct |
4 |
Correct |
92 ms |
8664 KB |
Output is correct |
5 |
Incorrect |
95 ms |
8472 KB |
Output isn't correct - not an optimal way |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
1792 KB |
Output is correct |
2 |
Correct |
5 ms |
1792 KB |
Output is correct |
3 |
Incorrect |
5 ms |
1792 KB |
Error - Putting back a color that is not on the scaffold |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
112 ms |
8160 KB |
Output isn't correct - not an optimal way |
2 |
Correct |
93 ms |
8408 KB |
Output is correct - 122000 bits used |
3 |
Correct |
93 ms |
8408 KB |
Output is correct - 125000 bits used |
4 |
Correct |
99 ms |
8408 KB |
Output is correct - 125000 bits used |
5 |
Correct |
97 ms |
8416 KB |
Output is correct - 125000 bits used |
6 |
Correct |
94 ms |
8664 KB |
Output is correct - 125000 bits used |
7 |
Correct |
95 ms |
8664 KB |
Output is correct - 124828 bits used |
8 |
Correct |
100 ms |
8408 KB |
Output is correct - 124910 bits used |
9 |
Correct |
98 ms |
8408 KB |
Output is correct - 125000 bits used |
10 |
Correct |
90 ms |
8160 KB |
Output is correct - 125000 bits used |