답안 #1042639

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1042639 2024-08-03T08:53:04 Z DorostWef 버섯 세기 (IOI20_mushrooms) C++17
0 / 100
1 ms 344 KB
#include "mushrooms.h"
#include <bits/stdc++.h>

using namespace std;

int count_mushrooms(int n) {
	vector <int> a;
	for (int i = 1; i < n; i++)
		a.push_back(i);
	mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
	shuffle(a.begin(), a.end(), rng);
	if (n >= 100)
		use_machine (a);
	int ans = 1;
	vector <int> A = {0}, B;
	while (!a.empty()) {
		vector <int> v;
		if ((int)A.size() >= (int)B.size()) {
			int t = 0;
			for (int i = 0; i < (int) A.size() && !a.empty(); i++) {
				t++;
				v.push_back(A[i]);
				v.push_back(a.back());
				a.pop_back();
			}
			int k = use_machine (v);
			if (k % 2)
				B.push_back(v[0]);
			else
				A.push_back(v[0]);
			k = t - ((k + 1) / 2);
			ans += k;
		} else {
			int t = 0;
			for (int i = 0; i < (int) B.size() && !a.empty(); i++) {
				t++;
				v.push_back(a.back());
				v.push_back(B[i]);
				a.pop_back();
			}
			int k = use_machine (v);
			if (k % 2)
				A.push_back(v[0]);
			else
				B.push_back(v[0]);
			k = ((k + 1) / 2);
			ans += k;
		}
	}
	return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
3 Incorrect 0 ms 344 KB Duplicate value 0 in the query array.
4 Halted 0 ms 0 KB -