Submission #835647

#TimeUsernameProblemLanguageResultExecution timeMemory
835647BT21tataCounting Mushrooms (IOI20_mushrooms)C++17
80.43 / 100
8 ms340 KiB
#include "mushrooms.h" #include<bits/stdc++.h> #define pb push_back using namespace std; const int BLOCK=281; vector<int>a, b; int count_mushrooms(int n) { a.pb(0); if(n<=220) { for(int i=1; i<n; i++) { int cnt=use_machine({0, i}); if(cnt) b.pb(i); else a.pb(i); } return a.size(); } if(use_machine({0, 1})) b.pb(1); else a.pb(1); if(use_machine({0, 2})) b.pb(2); else a.pb(2); for(int i=3; i<BLOCK; i+=2) { if(a.size()>=2) { int cnt=use_machine({i, a[0], i+1, a[1]}); if(!cnt) a.pb(i), a.pb(i+1); else if(cnt==1) b.pb(i), a.pb(i+1); else if(cnt==2) a.pb(i), b.pb(i+1); else b.pb(i), b.pb(i+1); } else { int cnt=use_machine({i, b[0], i+1, b[1]}); if(!cnt) b.pb(i), b.pb(i+1); else if(cnt==1) a.pb(i), b.pb(i+1); else if(cnt==2) b.pb(i), a.pb(i+1); else a.pb(i), a.pb(i+1); } } if(a.size()>b.size()) { int ansb=b.size(); for(int i=BLOCK; i<n; i+=(a.size())) { vector<int>cur; int pos=0; for(int j=i; j<min(n, (int)(i+a.size())); j++) { cur.pb(a[pos++]); cur.pb(j); } int ret=use_machine(cur); ansb+=((ret+1)/2); } return n-ansb; } else { int ansa=a.size(); for(int i=BLOCK; i<n; i+=(b.size())) { vector<int>cur; int pos=0; for(int j=i; j<min(n, (int)(i+b.size())); j++) { cur.pb(b[pos++]); cur.pb(j); } int ret=use_machine(cur); ansa+=((ret+1)/2); } return ansa; } }
#Verdict Execution timeMemoryGrader output
Fetching results...