답안 #361569

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
361569 2021-01-30T15:14:01 Z MetB 최후의 만찬 (IOI12_supper) C++14
0 / 100
144 ms 11916 KB
#include <iostream>
#include <vector>
#include <set>
#include "advisor.h"

using namespace std;

void ComputeAdvice(int *C, int N, int K, int M) {
	vector<vector<int>> last(N);
	vector<int> ans(N), ans_k(K);
	vector<int> request(N, -1);
	vector<int> ptr(N, 0), st(N);
	set<pair<int, int>> s;

	for (int i = 0; i < N; i++) {
		last[C[i]].push_back(i);
	}

	for (int i = 0; i < N; i++) {
		last[i].push_back(N);
	}

	for (int i = 0; i < K; i++) {
		s.insert({last[i][0], i});
		ptr[i]++;
		st[i] = 1;
	}

	for (int i = 0; i < N; i++) {
		request[C[i]] = i;
		if (!st[C[i]]) {
			int x = s.rbegin()->second;
			s.erase(s.find(*s.rbegin()));
			st[x] = 0;
			if (request[x] != -1) ans[request[x]] = 1;
			else ans_k[x] = 1;
			s.insert({last[C[i]][ptr[C[i]]], C[i]});
			ptr[C[i]]++;
		} else {
			s.erase({last[C[i]][ptr[C[i]]-1], C[i]});
			s.insert({last[C[i]][ptr[C[i]]], C[i]});
			ptr[C[i]]++;

		}
		st[C[i]] = 1;
	}

	for (int i = 0; i < K; i++) {
		WriteAdvice(ans_k[i]);
	}

	for (int i = 0; i < N; i++) {
		WriteAdvice(ans[i]);
	}
}
#include <iostream>
#include <vector>
#include "assistant.h"

using namespace std;

void Assist(unsigned char *A, int N, int K, int R) {
	vector<int> st(N);
	vector<int> bottom_shelf;
	for (int i = 0; i < K; i++) {
		if (A[i]) bottom_shelf.push_back(i);
		st[i] = 1;
	}

	A += K;

	for (int i = 0; i < N; i++) {
		int x = GetRequest();
		if (!st[x]) {
			PutBack(bottom_shelf.back());
			bottom_shelf.pop_back();
		}
		st[x] = 1;
		if (A[i]) bottom_shelf.push_back(x);
	}

}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 988 KB Output is correct
2 Incorrect 1 ms 868 KB Error - Not putting back color when it is not on the scaffold
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 11 ms 1836 KB Error - Not putting back color when it is not on the scaffold
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 104 ms 9464 KB Error - Not putting back color when it is not on the scaffold
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 1384 KB Error - Not putting back color when it is not on the scaffold
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 137 ms 11560 KB Error - Not putting back color when it is not on the scaffold
2 Incorrect 136 ms 11596 KB Error - Not putting back color when it is not on the scaffold
3 Incorrect 140 ms 11824 KB Error - Not putting back color when it is not on the scaffold
4 Incorrect 142 ms 11728 KB Error - Not putting back color when it is not on the scaffold
5 Incorrect 144 ms 11916 KB Error - Not putting back color when it is not on the scaffold
6 Incorrect 136 ms 11832 KB Error - Not putting back color when it is not on the scaffold
7 Incorrect 133 ms 11580 KB Error - Not putting back color when it is not on the scaffold
8 Incorrect 135 ms 11828 KB Error - Not putting back color when it is not on the scaffold
9 Incorrect 135 ms 11688 KB Error - Not putting back color when it is not on the scaffold
10 Incorrect 134 ms 11852 KB Error - Not putting back color when it is not on the scaffold