# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1066171 | Ahmed57 | Counting Mushrooms (IOI20_mushrooms) | C++17 | 7 ms | 600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
#include "mushrooms.h"
int count_mushrooms(int n){
int B = 273;
vector<int> BS[2];
int cnt = 1;
vector<int> pending;
BS[0].push_back(0);
for(int i = 1;i<min(n,B);i++){
if(use_machine({0,i})){
BS[1].push_back(i);
}else {
BS[0].push_back(i);cnt++;
}
}
int sz = max(BS[0].size(),BS[1].size());
vector<int> bs;
bool As = 0;
if(BS[0].size()>BS[1].size()){
As = 1;
bs = BS[0];
}else bs = BS[1];
for(int i = B;i<n;i+=sz){
int xd = i;
vector<int> lol;
int nah = 0;
for(int j = i;j<min(n,i+sz);j++){
nah++;
lol.push_back(bs[j-i]);
lol.push_back(j);
}
int ans = use_machine(lol);
if(ans%2){
if(As==0)cnt++;
ans--;
}else{
if(As==1)cnt++;
}
ans/=2;
nah--;
if(As==0)cnt+=ans;
else cnt+=nah-ans;
}
return cnt;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |