# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
588985 | LIF | 버섯 세기 (IOI20_mushrooms) | C++14 | 2 ms | 208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "mushrooms.h"
#include<bits/stdc++.h>
using namespace std;
int count_mushrooms(int n) {
std::vector <int> m;
vector<int> a;
vector<int> b;
int aans = 1;
int bans = 0;
a.push_back(0);
m.push_back(0);
for(int i=1;i<200&&i<n;i++)
{
m.push_back(i);
if(use_machine(m) == 1)
{
bans++;
b.push_back(i);
}
else
{
aans++;
a.push_back(i);
}
m.pop_back();
}
if(n<200)return aans;
if(b.size()>a.size()) //that means we can use b to compute
{
for(int i=200;i<n;i+=b.size()-1)
{
int headb = 0;
int headch = i;
for(int j=0;j<b.size()*2-1;j++)
{
if(j%2==0)
{
m.push_back(b[headb]);
headb++;
}
else
{
if(headch>=n)break;
m.push_back(headch);
headch++;
}
}
int ans = use_machine(m);
ans /=2;
aans += ans;
m.clear();
}
}
else
{
for(int i=200;i<n;i+=a.size()-1)
{
int heada = 0;
int headch = i;
for(int j=0;j<a.size()*2-1;j++)
{
if(j%2==0)
{
m.push_back(a[heada]);
heada++;
}
else
{
if(headch>=n)break;
m.push_back(headch);
headch++;
}
}
int ans = use_machine(m);
ans /=2; //it is the count of b
int asize = m.size()/2+1;
aans+= (m.size() - asize - ans);
}
}
return aans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |