# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
613597 | Jarif_Rahman | 버섯 세기 (IOI20_mushrooms) | C++17 | 1 ms | 208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "mushrooms.h"
#include <bits/stdc++.h>
#define pb push_back
#define f first
#define sc second
using namespace std;
typedef long long int ll;
typedef string str;
int count_mushrooms(int n){
vector<int> A, B;
A.pb(0);
int sq = sqrt(n);
sq = max(2, sq);
int ls = 1;
for(int i = 1; i < n; i++){
if(use_machine({0, i})) B.pb(i);
else A.pb(i);
if(max(A.size(), B.size()) >= sq){
ls = i;
break;
}
}
sq--;
int ans = A.size();
if(A.size() == sq+1){
for(int i = ls+1; i < n; i+=sq){
vector<int> Q;
for(int j = 0; j < sq; j++){
Q.pb(A[j]);
if(i+j < min(n, i+sq)) Q.pb(i+j);
}
ans+=min(n, i+sq)-i+1-use_machine(Q)/2;
}
}
else{
for(int i = ls+1; i < n; i+=sq){
vector<int> Q;
for(int j = 0; j < sq; j++){
Q.pb(B[j]);
if(i+j < min(n, i+sq)) Q.pb(i+j);
}
ans+=use_machine(Q)/2;
}
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |