# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
307803 | CodePlatina | 버섯 세기 (IOI20_mushrooms) | C++14 | 2 ms | 256 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "mushrooms.h"
#include <vector>
using namespace std;
int count_mushrooms(int n)
{
if(n <= 462)
{
int ret = 1;
for(int i = 1; i < n; i += 2)
{
if(i == n - 1) ret += 1 - use_machine({0, i});
else ret += 2 - use_machine({i, 0, i + 1});
}
return ret;
}
else
{
int ret = 1;
vector<int> A, B, C;
A.push_back(0);
for(int i = 1; i < n; ++i) C.push_back(i);
while(A.size() < 116 && B.size() < 116)
{
if(B.empty() || B.size() > A.size())
{
int x = C.back(); C.pop_back();
int y = C.back(); C.pop_back();
int t = use_machine({A[0], x, y});
if(t == 0)
{
A.push_back(x);
A.push_back(y);
}
else if(t == 1)
{
B.push_back(y);
C.push_back(x);
}
else if(t == 2)
{
A.push_back(y);
B.push_back(x);
}
}
else
{
int x = C.back(); C.pop_back();
int y = C.back(); C.pop_back();
int t = use_machine({B[0], x, y});
if(t == 0)
{
B.push_back(x);
B.push_back(y);
}
else if(t == 1)
{
A.push_back(y);
C.push_back(x);
}
else if(t == 2)
{
A.push_back(x);
B.push_back(y);
}
}
}
if(A.size() >= B.size())
{
for(int i = 0; i < (int)C.size(); i += (int)A.size())
{
int cnt = 0;
vector<int> tmp;
for(int j = i; j < n && j < i + (int)A.size(); ++j)
{
++cnt;
tmp.push_back(A[j - i]);
tmp.push_back(C[j]);
}
int t = use_machine(tmp);
if(t & 1) ++t;
t /= 2;
ret += cnt - t;
}
}
else
{
swap(A, B);
for(int i = 0; i < (int)C.size(); i += (int)A.size())
{
int cnt = 0;
vector<int> tmp;
for(int j = i; j < n && j < i + (int)A.size(); ++j)
{
++cnt;
tmp.push_back(A[j - i]);
tmp.push_back(C[j]);
}
int t = use_machine(tmp);
if(t & 1) ++t;
t /= 2;
ret += t;
}
}
return ret;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |