# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
484949 | M4mou | 버섯 세기 (IOI20_mushrooms) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#pragma GCC optimize ("Ofast")
#pragma GCC target ("avx2")
using namespace std;
using ll = long long;
using vi = vector<int>;
#define pb push_back
#define ff first
#define ss second
#define lb lower_bound
#define all(x) (x).begin() , (x).end()
//int use_machine(vector<int> a);
int count_mushrooms(int n) {
int cnt = 1;
int k = 210;
vector<int>arrA, arrB;
for(int i = 1;i<k;i++){
vector<int> a;
a = {0, i};
if(use_machine(a)) arrB.pb(i);
else arrA.pb(i);
}
#define sz(x) (int)x.size()
if(sz(arrA) >= sz(arrB)) {
int i = k;
while(i<n){
vector<int> a;
for(int j : arrA){
a.pb(j);
a.pb(i);
i++;
if(i == n)break;
}
int x = use_machine(a);
cnt += (int)a.size() - (x+1)/2;
}
}
else {
int i = k;
while(i<n){
vector<int> b;
for(int j : arrB){
b.pb(j);
b.pb(i);
i++;
if(i == n)break;
}
int x = use_machine(b);
cnt += (x+1)/2;
}
}
return cnt;
}