답안 #280491

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
280491 2020-08-22T20:23:21 Z amiratou 최후의 만찬 (IOI12_supper) C++14
0 / 100
314 ms 24976 KB
#include "advisor.h"
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define sz(x) (int)(x.size())
typedef pair<int,int> ii;
const int INF = (int)(1e9);

vector<int> vec[100005];
int occ[100005];
set<ii,greater<ii> > myset;
int pos[100005],in[100005];

void ComputeAdvice(int *C, int N, int K, int M) {
	int l=31-__builtin_clz(K+1)+1;
	for (int i = 0; i < N; ++i)
	{
		occ[i]=sz(vec[C[i]]);
		vec[C[i]].push_back(i);
	}
	for (int i = 0; i < K; ++i){
		pos[i]=i,in[i]=1;
		if(!sz(vec[i]))myset.insert({INF,i});
		else myset.insert({vec[i][0],i});
	}
	vector<int> code;
	for (int i = 0; i < N; ++i)
	{
		if(in[C[i]]){
			myset.erase({i,C[i]});
			if((occ[i]+1)<sz(vec[C[i]]))myset.insert({vec[C[i]][occ[i]+1],C[i]});
			else myset.insert({INF,C[i]});
		}
		else{
			ii h=*myset.begin();
			myset.erase(myset.begin());
			code.push_back(h.se);
			in[h.se]=0,in[C[i]]=1;
			if((occ[i]+1)<sz(vec[C[i]]))myset.insert({vec[C[i]][occ[i]+1],C[i]});
			else myset.insert({INF,C[i]});
			pos[C[i]]=pos[h.se];
		}
		/*for(auto it:myset){
			cerr<<it.fi<<","<<it.se<<"\n";
		}
		cerr<<"--------\n";*/
	}
	//cerr<<l<<" ";
	for(auto it:code){
		//cerr<<it<<" ";
		for (int i = 0; i < l; ++i){
			//cerr<<((it>>i)&1)<<" ";
			WriteAdvice((it>>i)&1);
		}
		//cerr<<"\n";
	}
	//cerr<<"\n";
}
#include "assistant.h"
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define sz(x) (int)(x.size())
typedef pair<int,int> ii;
const int INF = (int)(1e9);

int tab[100005],here[100005];

void Assist(unsigned char *A, int N, int K, int R) {
	int l=31-__builtin_clz(K+1)+1;
	for (int i = 0; i < K; ++i)
		tab[i]=i,here[i]=1;
	assert(!(R%l));
	vector<int> vec;
	for (int i = 0; i < R; i+=l)
	{
		int nb=0;
		for (int j = 0; j < l; ++j)
			if(A[i+j]=='1')nb+=(1<<j);
		vec.push_back(nb);
	}
	int idx=0;
	for (int i = 0; i < N; ++i)
	{
		int h=GetRequest();
		if(!here[h]){
			assert(idx<sz(vec));
			here[vec[idx]]=0;
			here[h]=1;
			PutBack(vec[idx]),idx++;
		}
	}
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 5376 KB Error - Putting back a color that is not on the scaffold
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 21 ms 6912 KB Error - Putting back a color that is not on the scaffold
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 208 ms 17664 KB Error - Putting back a color that is not on the scaffold
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 5888 KB Error - advice is too long
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 265 ms 20304 KB Error - Putting back a color that is not on the scaffold
2 Incorrect 252 ms 20584 KB Error - Putting back a color that is not on the scaffold
3 Incorrect 249 ms 20832 KB Error - Putting back a color that is not on the scaffold
4 Incorrect 253 ms 20600 KB Error - Putting back a color that is not on the scaffold
5 Incorrect 245 ms 20408 KB Error - Putting back a color that is not on the scaffold
6 Incorrect 255 ms 20696 KB Error - Putting back a color that is not on the scaffold
7 Incorrect 247 ms 20600 KB Error - Putting back a color that is not on the scaffold
8 Incorrect 251 ms 20600 KB Error - Putting back a color that is not on the scaffold
9 Incorrect 257 ms 20600 KB Error - Putting back a color that is not on the scaffold
10 Incorrect 314 ms 24976 KB Error - Putting back a color that is not on the scaffold