Submission #1032191

#TimeUsernameProblemLanguageResultExecution timeMemory
1032191hotboy2703Counting Mushrooms (IOI20_mushrooms)C++17
84.33 / 100
8 ms708 KiB
#include "mushrooms.h"
#include<bits/stdc++.h>
using namespace std;
using ll = int;
#define pll pair <ll,ll>
#define fi first
#define se second
#define MP make_pair
#define sz(a) (ll((a).size()))
#define BIT(mask,i) (((mask) >> (i))&1)
#define MASK(i) (1LL<<(i))
ll use(vector <ll> tmp){
	return use_machine(tmp);
}
int count_mushrooms(int n) {
	if (n==2){
		return 2 - use({0,1});
	}
	vector <ll> c[2];
	c[0].push_back(0);
	c[use({0,1})].push_back(1);
	c[use({0,2})].push_back(2);
	ll ptr = 3;
	ll res = 0;
	while (ptr < n){
		if (max(sz(c[0]),sz(c[1])) >= 110){
			ll id = 0;
			if (sz(c[1]) > sz(c[0]))id = 1;
			vector <ll> tmp;
			for (ll j = 0;j < sz(c[id]) && ptr < n;j ++,ptr++){
				tmp.push_back(c[id][j]);
				tmp.push_back(ptr);
			}
			ll cur = use(tmp);
			if (cur%2)c[1-id].push_back(tmp.back());
			if (id==1)res += cur/2;
			else res += sz(tmp)/2 - (cur+1)/2;
		}
		else{
			if (ptr + 1 < n){
				if (sz(c[0]) >= 2){
					ll tmp = use({ptr,c[0][0],ptr+1,c[0][1]});
					c[BIT(tmp,0)].push_back(ptr);
					c[BIT(tmp,1)].push_back(ptr+1);
				}
				else{
					ll tmp = use({ptr,c[1][0],ptr+1,c[1][1]});
					c[1-BIT(tmp,0)].push_back(ptr);
					c[1-BIT(tmp,1)].push_back(ptr+1);
				}
				ptr+=2;
			}
			else{
				c[use({0,ptr})].push_back(ptr);
				ptr++;
			}
		}
	}
	res += sz(c[0]);
	return res;
}
#Verdict Execution timeMemoryGrader output
Fetching results...