# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
828612 | Minindu206 | 버섯 세기 (IOI20_mushrooms) | C++14 | 0 ms | 208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "mushrooms.h"
#include<bits/stdc++.h>
using namespace std;
int count_mushrooms(int n) {
vector<int> posa, posb, pos;
int acnt = 1, bcnt = 0, cnt, ans = 0;
posa.push_back(0);
for(int i=1;i<min(200, n);i++)
{
int cur = use_machine({0, i});
if(cur == 0)
posa.push_back(i), acnt++;
else
posb.push_back(i), bcnt++, ans++;
}
if(n < 200)
{
return ans;
}
if(acnt >= bcnt)
pos = posa, cnt = acnt;
else
pos = posb, cnt = bcnt;
int i = 200;
while(i < n)
{
vector<int> chk;
int cur = 0;
while(i < min(n, i + cnt))
{
chk.push_back(i);
chk.push_back(posb[cur]);
cur++;
i++;
}
int ncur = use_machine(chk);
if(acnt >= bcnt)
ans += ncur /= 2;
else
ans += (cur - (ncur / 2));
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |