#3391. big

题目描述

你需要在 [ 0 , 2 n ) [ 0,2^n ) [0,2n) 中选一个整数 x x x,接着把 x x x 依次异或 m m m 个整数 a 1 ∼ a m a_1 \sim a_m a1am

在你选出 x x x 后,你的对手需要选择恰好一个时刻(刚选完数时、异或一些数后或是最后),将 x x x 变为 ( ⌊ 2 x 2 n ⌋ + 2 x ) m o d    2 n (\lfloor \frac{2x}{2^n} \rfloor + 2x )\mod 2^n (2n2x+2x)mod2n

你想使 x x x 最后尽量大,而你的对手会使 x x x 最后尽量小。

你需要求出 x x x 最后的最大值,以及得到最大值的初值数量。

数据范围

n ≤ 30 , m ≤ 100000 , 0 ≤ a i < 2 n n\le 30 , m\le 100000, 0 \leq a_i < 2^n n30,m100000,0ai<2n

题解

很妙的一道题

考虑那个奇妙操作,手画一下发现就是把最高位移到最后

然后假设 x x x 在前 i i i 个数 ( 0 ≤ i ≤ m ) (0 \le i \le m) (0im) 后做了得到了 x ⊕ s i x ⊕ s_i xsi ,然后经过这个操作得到了 y y y ,考虑到异或是按位异或,所以如果我们先把 x x x s i s_i si 先通过这个操作得到 x ′ x' x s i ′ s_i' si ,那 x ′ ⊕ s i ′ = y x' ⊕ s_i'=y xsi=y

于是我们可以先把 s i ′ ⊕ ( s m ⊕ s i ) s'_i ⊕ (s_m ⊕ s_i) si(smsi) 建立棵 t r i e trie trie ,在 t r i e trie trie 上寻找最优解即可

效率 O ( n m ) O(nm) O(nm)

代码

#include 
using namespace std;
const int N=1e5+5;
int n,m,s,t=1,a[N],ch[N*30][2];
void ins(int x){
	for (int p=1,v,j=n-1;~j;j--){
		v=(x>>j)&1;
		if (!ch[p][v]) ch[p][v]=++t;
		p=ch[p][v];
	}
}
void dfs(int x,int y,int d){
	if (!ch[x][0] && !ch[x][1]){
		if (y>s) s=y,t=0;t+=(s==y);return;
	}
	if (!ch[x][0] || !ch[x][1]) dfs(ch[x][!ch[x][0]],y|(1<>(n-1));
		s^=a[i];ins(s);
	}
	s=t=0;dfs(1,0,n-1);printf("%d\n%d\n",s,t);
	return 0;
}

你可能感兴趣的:(性质,异或,trie)