# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
346105 | poom2904 | 버섯 세기 (IOI20_mushrooms) | C++17 | 2 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "mushrooms.h"
#include <bits/stdc++.h>
using namespace std;
int cnt_A = 1,cnt_B = 0;
vector<int> A = {0},B;
int count_mushrooms(int n) {
int i=1;
if(n<=227)
{
while(i<n)
{
vector<int> vec = {0,i};
if(use_machine(vec))cnt_B++;
else cnt_A++;
i++;
}
return cnt_A;
}
/*while(max(cnt_A,cnt_B)<2)
{
vector<int> vec = {0,i};
if(use_machine(vec))
{
cnt_B++;
B.push_back(i);
}
else
{
cnt_A++;
A.push_back(i);
}
i++;
}
while(min(cnt_A,cnt_B)<2 && max(cnt_A,cnt_B)<3)
{
bool is_swapped = false;
if(cnt_A<2)
{
swap(cnt_A,cnt_B);
swap(A,B);
is_swapped = true;
}
vector<int> vec = {i,A[0],i+1,A[1]};
int res = use_machine(vec);
}*/
return cnt_A;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |