# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
588337 | supercatex | 버섯 세기 (IOI20_mushrooms) | C++14 | 199 ms | 576 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "mushrooms.h"
#include <bits/stdc++.h>
using namespace std;
void check_1(int x1, vector<int> &a, vector<int> &b)
{
int x = use_machine(vector<int>{0, x1});
if (x == 0) {
a.push_back(x1);
} else {
b.push_back(x1);
}
}
void check_2(int x1, int x2, vector<int> &a, vector<int> &b)
{
int x = use_machine(vector<int>{x1, 0, x2});
if (x == 0) {
a.push_back(x1);
a.push_back(x2);
} else if (x == 2) {
b.push_back(x1);
b.push_back(x2);
} else {
x = use_machine(vector<int>{0, x1});
if (x == 0) {
a.push_back(x1);
b.push_back(x2);
} else {
a.push_back(x2);
b.push_back(x1);
}
}
}
void check_3(int x1, int x2, int x3, vector<int> &a, vector<int> &b)
{
}
int count_mushrooms(int n)
{
vector<int> a, b;
a.push_back(0);
for (int i = 1; i < n; i += 2) {
if (i + 1 < n)
check_2(i, i + 1, a, b);
else
check_1(i, a, b);
}
return a.size();
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |