Submission #306136

#TimeUsernameProblemLanguageResultExecution timeMemory
306136loliconCounting Mushrooms (IOI20_mushrooms)C++14
0 / 100
1 ms512 KiB
#include <bits/stdc++.h> #include "mushrooms.h" using namespace std; int count_mushrooms(int n) { vector<int> arr(n); int cnt = 0; int k = sqrt(n); 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 = keep.size() - 1; 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++; } assert(ask.size() > 1); 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; 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++; } assert(ask.size() > 1); ret += ((int)ask.size() / 2) - use_machine(ask) / 2; } } // [0, 2 * k) return ret; }
#Verdict Execution timeMemoryGrader output
Fetching results...