# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
398393 | kevinxiehk | 버섯 세기 (IOI20_mushrooms) | C++17 | 14 ms | 328 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "mushrooms.h"
#include "bits/stdc++.h"
using namespace std;
int count_mushrooms(int n) {
vector<int> m;
vector<int> a, b;
int id = 1;
a.emplace_back(0);
while(max(a.size(), b.size()) <= min(99, (int)sqrt(n)) && id < n) {
int t = use_machine({0, id});
if(t == 1) {
b.emplace_back(id);
}
else a.emplace_back(id);
id++;
}
int ans = a.size();
if(a.size() > b.size()) {
for(int i = id; i < n; i += a.size() - 1) {
int l = i, r = min(n - 1, (int)(i + a.size() - 2));
m.clear();
m.emplace_back(a[0]);
for(int j = l; j <= r; j++) {
m.emplace_back(j);
m.emplace_back(a[j - l + 1]);
}
int t = use_machine(m);
ans += (r - l + 1) - (t / 2);
}
}
else {
for(int i = id; i < n; i += b.size() - 1) {
int l = i, r = min(n - 1, (int)(i + b.size() - 2));
m.clear();
m.emplace_back(b[0]);
for(int j = l; j <= r; j++) {
m.emplace_back(j);
m.emplace_back(b[j - l + 1]);
}
int t = use_machine(m);
ans += (t / 2);
}
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |