Submission #419131

# Submission time Handle Problem Language Result Execution time Memory
419131 2021-06-06T13:12:06 Z arayi Last supper (IOI12_supper) C++17
0 / 100
143 ms 32532 KB
#include "advisor.h"
#include <iostream>
#include <vector>
#include <queue>
#define MP make_pair
#define fr first
#define sc second
#define ad push_back
using namespace std;
const int N = 1e6 + 30;


int i1 = 0;
int col[N], b[N], c[N];
int ans[N];
vector<int> fp[N];
void ComputeAdvice(int *C, int N, int K, int M)
{
	for (int i = 0; i < N; i++) fp[i].ad(N);
	for (int i = N - 1; i >= 0; i--) fp[C[i]].ad(i);
	priority_queue <pair<int, int> > q;
	for (int i = 0; i < K; i++) q.push(MP(fp[i].back(), i)), col[i] = 1, b[i] = i;
	for (int i = 0; i < N; i += K)
	{
		int ss = min(N, i + K) - i;
		for (int j = 0; j < ss; j++) c[j] = i1 + j;
		for (int j = i; j < min(N, i + K); j++) 
		{
			if (col[C[j]]) continue;
			int p = q.top().sc;
			q.pop();
			ans[c[p]] = 1;
			col[C[j]] = 1, col[b[p]] = 0;
			b[p] = C[j], c[p] = i1 + ss + j - i;
			fp[C[j]].pop_back();
			q.push(MP(fp[C[j]].back(), p));
		}
		i1 += ss * 2;
	}
	for (int i = 0; i < i1; i++) WriteAdvice(ans[i]);
}
#include "assistant.h"
#include <iostream>
#include <vector>
#include <queue>
#define MP make_pair
#define fr first
#define sc second
#define ad push_back
using namespace std;
const int N1 = 1e6 + 30;

int ii;
int col1[N1], b1[N1];
vector <int> fp1;
void Assist(unsigned char *A, int N, int K, int R) 
{
	for (int i = 0; i < K; i++) col1[i] = 1, b1[i] = i;
	for (int i = 0; i < N; i += K)
	{
		int ss = min(N, i + K) - i;
		for (int j = 0; j < ss; j++) if (A[ii + j] == 1) fp1.ad(j);
		for (int j = i; j < min(N, i + K); j++)
		{
			int a = GetRequest();
			if (col1[a]) continue;
			int p = fp1.back();
			fp1.pop_back();
			col1[b1[p]] = 0, col1[a] = 1;
			PutBack(b1[p]);
			b1[p] = a;
			if (A[ii + ss + j - i] == 1) fp1.ad(p);
		}
		ii += ss * 2;
	}
}
# Verdict Execution time Memory Grader output
1 Correct 16 ms 24160 KB Output is correct
2 Incorrect 16 ms 24064 KB Output isn't correct - not an optimal way
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 26 ms 24996 KB Error - Putting back a color that is not on the scaffold
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 104 ms 30764 KB Error - Putting back a color that is not on the scaffold
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 19 ms 24496 KB Error - Putting back a color that is not on the scaffold
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 140 ms 32456 KB Error - Putting back a color that is not on the scaffold
2 Incorrect 140 ms 32436 KB Error - Putting back a color that is not on the scaffold
3 Incorrect 123 ms 32440 KB Error - Putting back a color that is not on the scaffold
4 Incorrect 130 ms 32432 KB Error - Putting back a color that is not on the scaffold
5 Incorrect 137 ms 32460 KB Error - Putting back a color that is not on the scaffold
6 Incorrect 127 ms 32456 KB Error - Putting back a color that is not on the scaffold
7 Incorrect 139 ms 32444 KB Error - Putting back a color that is not on the scaffold
8 Incorrect 143 ms 32532 KB Error - Putting back a color that is not on the scaffold
9 Incorrect 126 ms 32508 KB Error - Putting back a color that is not on the scaffold
10 Correct 129 ms 32200 KB Output is correct - 200000 bits used