# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
306690 | ivan24 | Counting Mushrooms (IOI20_mushrooms) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
bool t = 0;
if (byType[t].size() < 2){
t = 1;
}
ll res = use_machine(vi{x,byType[t][0],y,byType[t][1]});
add_type(x,(res&1) ? !t : t);
add_type(y,(res&2) ? !t : t);
}
public:
Solver(ll n): n(n), isChecked(n,0), type(n,-1), ctr(2,0), byType(2){
type[0] = 0;
ctr[0]++;
byType[0].push_back(0);
}
int solve(){
addOne(1);
if (n > 2) addOne(2);
for (ll i = 2; n > 2*i; i++){
addTwo(2*i-1,2*i);
}
if (n%2 == 1){
addOne(n-1);
}
return ctr[0];
}
};
int count_mushrooms(int n) {
Solver mySolver(n);
return mySolver.solve();
}