# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
560544 | AlperenT | 버섯 세기 (IOI20_mushrooms) | C++17 | 3063 ms | 208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "mushrooms.h"
#include <bits/stdc++.h>
using namespace std;
const int K = 100;
int count_mushrooms(int n){
int acnt = 0;
vector<int> a, b;
a.push_back(0);
stack<int> rem;
for(int i = n - 1; i >= 1; i--) rem.push(i);
while(!rem.empty() && (a.size() < K && b.size() < K)){
int ans = use_machine({0, rem.top()});
if(ans){
b.push_back(rem.top());
rem.pop();
}
else{
a.push_back(rem.top());
rem.pop();
}
}
while(!rem.empty()){
if(a.size() > b.size()){
vector<int> m;
int cnt = 0;
for(int i = 1; i < a.size(); i++){
if(!rem.empty()){
m.push_back(rem.top());
rem.pop();
cnt++;
}
m.push_back(a[i]);
}
int ans = use_machine(m);
acnt += cnt - (ans + 1) / 2;
}
}
return a.size() + acnt;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |