# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
306141 | 2020-09-24T16:08:38 Z | lolicon | 버섯 세기 (IOI20_mushrooms) | C++14 | 0 ms | 0 KB |
#include <bits/stdc++.h> #include "mushrooms.h" using namespace std; int use_machine(vector<int> a) { return 0; } int count_mushrooms(int n) { int cnt = 0; int k = sqrt(n); vector<int> arr(n, 0); for(int i = 1; i < 2 * k; i++) { vector<int> m = {0, i}; if(use_machine(m)) { arr[i] = 1; cnt++; } } int ret = 2 * k - cnt; if(cnt >= k) { // 1 is more vector<int> keep; for(int i = 0; i < 2 * k; i++) { if(arr[i] == 1) keep.push_back(i); } int block = (int)keep.size() - 1; assert(block + 1 >= k); for(int i = 2 * k; i < n; i += block) { vector<int> ask; ask.push_back(0); for(int j = 0, k = 1; j + i < n && j < block; j++) { ask.push_back(j + i); ask.push_back(keep[k]); k++; } ret += use_machine(ask) / 2; } } else { // 0 is more vector<int> keep; for(int i = 0; i < 2 * k; i++) { if(arr[i] == 0) keep.push_back(i); } int block = keep.size() - 1; assert(block + 1 >= k); for(int i = 2 * k; i < n; i += block) { vector<int> ask; ask.push_back(0); for(int j = 0, k = 1; j + i < n && j < block; j++) { ask.push_back(j + i); ask.push_back(keep[k]); k++; } ret += ((int)ask.size() / 2) - use_machine(ask) / 2; } } // [0, 2 * k) return ret; }