# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
675899 | VodkaInTheJar | 버섯 세기 (IOI20_mushrooms) | C++14 | 8 ms | 468 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int use_machine(vector <int> x);
int count_mushrooms(int n) {
vector <int> as;
vector <int> bs;
as.push_back(0);
int pos = 1, ans = 1;
while (pos < n) {
if ((int)as.size() >= (int)bs.size()) {
int nxt = min(n, pos + (int)as.size());
vector <int> temp;
for (int i = pos; i < nxt; i++) {
temp.push_back(as[i-pos]);
temp.push_back(i);
}
int cnt_b = use_machine(temp);
if (cnt_b & 1)
bs.push_back(nxt-1), ans += (int)temp.size() / 2 - (cnt_b + 1) / 2;
else
as.push_back(nxt-1), ans += (int)temp.size() / 2 - cnt_b / 2;
pos = nxt;
}
else {
int nxt = min(n, pos + (int)bs.size());
vector <int> temp;
for (int i = pos; i < nxt; i++) {
temp.push_back(bs[i-pos]);
temp.push_back(i);
}
int cnt_a = use_machine(temp);
if (cnt_a & 1)
as.push_back(nxt-1), ans += (cnt_a + 1) / 2;
else
bs.push_back(nxt-1), ans += cnt_a / 2;
pos = nxt;
}
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |