# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1021261 | Ahmed_Solyman | 버섯 세기 (IOI20_mushrooms) | C++14 | 1 ms | 344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
In the name of Allah
made by: Ahmed_Solyman
*/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int use_machine(vector<int>x);
int count_mushrooms(int n){
if(n<=226){
int ret=1;
for(int i=1;i<n;i++){
ret+=1-use_machine({0,i});
}
return ret;
}
int ret=0,k=93;
vector<int>v[2];
v[0].push_back(0);
for(int i=1;i<=2*k-2;i++){
if(use_machine({0,i})==0)v[0].push_back(i);
else v[1].push_back(i);
}
bool typ;
vector<int>g;
if(v[0].size()>=k){
typ=0;
for(int i=0;i<k;i++)g.push_back(v[0][i]);
}
else{
typ=1;
for(int i=0;i<k;i++)g.push_back(v[1][i]);
}
auto f=[&](int l,int r){
vector<int>p;
for(int i=l;i<=r;i++){
p.push_back(i);
if(i!=r)p.push_back(g[i-l]);
}
int g=use_machine(p);
if(typ)return (r-l+1)-g/2;
else return g/2;
};
ret=(int)v[0].size();
for(int i=2*k-1;i<n;i+=k+1){
ret+=f(i,min(i+k,n-1));
}
return ret;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |