# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
601972 | FatihSolak | 버섯 세기 (IOI20_mushrooms) | C++17 | 165 ms | 460 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "mushrooms.h"
#include <bits/stdc++.h>
#define N 20000
using namespace std;
int count_mushrooms(int n){
vector<int> a,b;
a.push_back(0);
int point = 1;
int cur = 0;
while( (n-point + max(a.size(),b.size()) - 1) / max(a.size(),b.size()) + cur > 396 ){
if(use_machine({0,point})){
b.push_back(point);
}
else a.push_back(point);
point++;
cur++;
}
int ret = 0;
int asz = a.size();
int bsz = b.size();
if(asz > bsz){
for(int i = point;i<n;i+=asz){
vector<int> nums;
int cnt = 0;
for(int j = i;j<min(n,i + asz);j++){
nums.push_back(a[cnt++]);
nums.push_back(j);
}
int sz = nums.size()/2;
ret += sz - (use_machine(nums) + 1)/2;
}
}
else{
for(int i = point;i<n;i+=bsz){
vector<int> nums;
int cnt = 0;
for(int j = i;j<min(n,i + bsz);j++){
nums.push_back(b[cnt++]);
nums.push_back(j);
}
int sz = nums.size()/2;
ret += (use_machine(nums) + 1)/2;
}
}
return ret + asz;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |