제출 #903983

#제출 시각아이디문제언어결과실행 시간메모리
903983ItamarCoreputer (IOI23_coreputer)C++17
40 / 100
1 ms604 KiB
#include "coreputer.h"
#include <vector>
using namespace std;
#define vi vector<int>
#include <algorithm>
#include <map>
map<vi, int> m;
int run_diagnostici(vi v) {
	if (m[v])return m[v] - 2;
	m[v] = 2+run_diagnostic(v);
	return m[v] - 2;
}
std::vector<int> malfunctioning_cores(int N) {
	vi ans(N, -1);
	int l = 0, r = N-1;
	vi q;
	while (q.size()<5) {
		int mid = (l + r) / 2;
		vi v;
		for (int i = 0; i <= mid; i++)v.push_back(i);
		int a = run_diagnostici(v);
		q.push_back(a);
		if (a == 0) { l = mid, r = mid; }
		if (a == -1)l = mid+1;
		else r = mid;
	}
	if (l == N - 1) { ans[N - 1] = 1; return ans; }
	int t = q.back();
	int g=-1;
	int tt=t;
	for (int i = 0; i < N-1; i++) {
		vi v; for (int j = 0; j <= l; j++)if (i != j && (g!=j || i<=l))v.push_back(j);
		int a;
		if (i > l) {
			v.push_back(i);
			a = run_diagnostici(v);
			ans[i] = (tt < a);
		}
		else {
			a = run_diagnostici(v);
			ans[i] = (t > a);
			if (ans[i] && t!=0) {
				g = i; tt = a;
			}
		}
	}
	int x1=0;
	for (int i = 0; i < N - 1; i++) {
		if (ans[i] && i <= l)x1++;
		else if (ans[i])x1--;
	}
	ans[N - 1] = (x1 > (t));
	return ans;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...