# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
824257 | thimote75 | 버섯 세기 (IOI20_mushrooms) | C++14 | 9 ms | 336 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "mushrooms.h"
#include <bits/stdc++.h>
using namespace std;
using idata = vector<int>;
const int QK = 186;
int count_mushrooms(int n) {
idata Av = { 0 };
idata Bv = { };
for (int i = 1; i < n && i < QK; i ++) {
int res = use_machine({ 0, i });
if (res == 0) Av.push_back(i);
else Bv.push_back(i);
}
int offset = 0;
int multiplier = 1;
if (Bv.size() > Av.size()) {
Bv.swap(Av);
offset = n;
multiplier = -1;
}
int total = Av.size();
for (int i = QK; i < n; i += Av.size() - 1) {
idata templ;
int cnt = 0;
for (int j = 0; j < Av.size() - 1; j ++) {
templ.push_back(Av[j]);
if (i + j >= n) continue ;
cnt ++;
templ.push_back(i + j);
}
templ.push_back(Av[Av.size() - 1]);
int res = use_machine(templ);
int c0 = (cnt) - (res >> 1);
total += c0;
}
return offset + multiplier * total;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |