# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
772436 | SanguineChameleon | 버섯 세기 (IOI20_mushrooms) | C++17 | 9 ms | 940 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "mushrooms.h"
#include <bits/stdc++.h>
using namespace std;
const int maxn = 2e4 + 20;
const int lim = 94;
int order[maxn];
int type[maxn];
vector<int> group[maxn];
mt19937 gen(chrono::steady_clock::now().time_since_epoch().count());
int count_mushrooms(int n) {
for (int i = 0; i < n; i++) {
order[i] = i;
}
shuffle(order + 1, order + n, gen);
int pt = 1;
type[0] = 0;
group[0].push_back(0);
while (pt < n && (int)group[0].size() < lim && (int)group[1].size() < lim) {
uniform_int_distribution<int> dist(0, pt - 1);
int prv = dist(gen);
type[order[pt]] = type[order[prv]] ^ use_machine({order[prv], order[pt]});
group[type[order[pt]]].push_back(order[pt]);
pt++;
}
int g = (int)group[0].size() >= lim ? 0 : 1;
int res = (int)group[0].size();
for (; pt < n;) {
int k = min((int)group[g].size(), n - pt);
vector<int> a;
for (int i = 0; i < k; i++) {
a.push_back(group[g][i]);
a.push_back(order[pt + i]);
}
if (g == 0) {
res += k - (use_machine(a) + 1) / 2;
}
else {
res += (use_machine(a) + 1) / 2;
}
pt += k;
}
return res;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |