# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
823925 | drdilyor | 버섯 세기 (IOI20_mushrooms) | C++17 | 92 ms | 336 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "mushrooms.h"
using namespace std;
using ll = long long;
int count_mushrooms(int n) {
vector<int> t(n);
t[1] = use_machine({0, 1});
if (n == 2) return 2 - t[1] - t[0];
t[2] = use_machine({0, 2});
bool inv = false;
int cmp1, cmp2;
if (t[1] && t[2]) {
cmp1 = 1;
cmp2 = 2;
inv = true;
t[0] ^= 1;
t[1] ^= 1;
t[2] ^= 1;
} else {
cmp1 = 0;
if (!t[1]) cmp2 = 1;
else cmp2 = 2;
}
for (int i = 3; i < n-1; i += 2) {
int res = use_machine({cmp1, i, cmp2, i+1});
t[i] = res / 2;
t[i+1] = res % 2;
}
if (inv) for (int& i : t) i ^= 1;
if (n % 2 == 0) t[n-1] = use_machine({0, n-1});
return n - accumulate(t.begin(), t.end(), 0);
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |