# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
759764 | MilosMilutinovic | 버섯 세기 (IOI20_mushrooms) | C++14 | 12 ms | 308 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "mushrooms.h"
#include <bits/stdc++.h>
using namespace std;
const int C = 80;
int count_mushrooms(int n) {
if (n <= 227) {
int ans = 1;
for (int i = 1; i < n; i++) {
ans += !use_machine({0, i});
}
return ans;
}
vector<int> a(1, 0), b;
for (int i = 1; i < min(n, C); i++) {
if (use_machine({0, i}) == 1)
b.push_back(i);
else
a.push_back(i);
}
// printf("%d\n", a.size());
int ans = a.size();
for (int i = C; i < n; i++) {
int sz = max(a.size(), b.size());
vector<int> qv;
int cnt = 0;
for (int j = i; j < min(i + sz, n); j++) {
if (j != i + sz) {
if (a.size() == sz)
qv.push_back(a[j - i]);
else
qv.push_back(b[j - i]);
cnt += 1;
}
qv.push_back(j);
}
int diff = (use_machine(qv) + 1) / 2;
int same = (qv.size() - cnt - diff);
// printf("%d\n", diff);
if (a.size() == sz)
ans += same;
else
ans += diff;
i = qv.back();
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |