# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
610368 | Jomnoi | 버섯 세기 (IOI20_mushrooms) | C++17 | 12 ms | 360 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "mushrooms.h"
using namespace std;
int result;
vector <int> x;
vector <int> typeA, typeB;
int count_mushrooms(int N) {
typeA.push_back(0);
int i = 1;
while(typeA.size() < 140 and typeB.size() < 140 and i < N) {
result = use_machine({0, i});
if(result == 1) {
typeB.push_back(i);
}
else {
typeA.push_back(i);
}
i++;
}
int numberofA = 0, cnt;
while(i < N) {
if(typeA.size() > typeB.size()) {
x.clear();
cnt = -1;
for(int j = 0; j < typeA.size() and i < N; j++) {
x.push_back(typeA[j]);
x.push_back(i++);
cnt++;
}
result = use_machine(x);
numberofA += cnt - result / 2;
if(result % 2 == 0) {
typeA.push_back(i - 1);
}
else {
typeB.push_back(i - 1);
}
}
else {
x.clear();
for(int j = 0; j < typeB.size() and i < N; j++) {
x.push_back(typeB[j]);
x.push_back(i++);
}
result = use_machine(x);
numberofA += result / 2;
if(result % 2 == 1) {
typeA.push_back(i - 1);
}
else {
typeB.push_back(i - 1);
}
}
}
return numberofA + typeA.size();
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |