| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 829927 | rainboy | Toxic Gene (NOI23_toxic) | C++17 | 9 ms | 372 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "toxic.h"
#include <string>
#include <vector>
using namespace std;
typedef vector<int> vi;
const int S = 8;	/* 2^S <= 300 */
int min(int a, int b) { return a < b ? a : b; }
unsigned int X;
int rand_() {
	return (X *= 3) >> 1;
}
void determine_type(int n) {
	vi pp(n);
	for (int i = 0; i < n; i++)
		pp[i] = i;
	int z = -1;
	while (n > 0) {
		X = 12345;
		for (int i = 0; i < n; i++) {
			int j = rand_() % (i + 1), tmp;
			tmp = pp[i], pp[i] = pp[j], pp[j] = tmp;
		}
		string cc(n, '?');
		int m = (n + S - 1) / S;
		for (int h = 0; h < m; h++) {
			int l = h * S, r = min((h + 1) * S, n);
			vi ii;
			for (int i = l; i < r; i++)
				for (int t = 0; t < 1 << i - l; t++)
					ii.push_back(pp[i] + 1);
			int b = query_sample(ii);
			if (b == (1 << r - l) - 1) {
				for (int i = l; i < r; i++)
					cc[i] = '!';
				continue;
			}
			for (int i = l; i < r; i++)
				if ((b & 1 << i - l) != 0)
					cc[i] = 'S';
			int lower = l, upper = r;
			while (upper - lower > 1) {
				int i_ = (lower + upper) / 2;
				ii.clear();
				for (int i = lower; i < i_; i++)
					ii.push_back(pp[i] + 1);
				if (query_sample(ii) == i_ - lower) {
					for (int i = lower; i < i_; i++)
						if (cc[i] == '?')
							cc[i] = 'R';
					lower = i_;
				} else
					upper = i_;
			}
			cc[lower] = 'T';
		}
		int t = 0;
		while (t < n && cc[t] != 'T')
			t++;
		if (t < n)
			z = pp[t];
		for (int h = 0; h < m; h++) {
			int l = h * S, r = min((h + 1) * S, n);
			if (cc[l] == '!') {
				vi ii;
				ii.push_back(z + 1);
				for (int i = l; i < r; i++)
					for (int t = 0; t < 1 << i - l; t++)
						ii.push_back(pp[i] + 1);
				int b = query_sample(ii);
				for (int i = l; i < r; i++)
					cc[i] = (b & 1 << i - l) != 0 ? 'S' : 'R';
			}
		}
		int n_ = 0;
		for (int i = 0; i < n; i++)
			if (cc[i] == '?')
				pp[n_++] = pp[i];
			else
				answer_type(pp[i] + 1, cc[i]);
		n = n_;
	}
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
