Codechef WEASELTX

WEASELTX code
给你一棵 n 个节点的有根树(节点),以及每个节点 i 的初始权值 a[i] 。
一次操作则是指将每个节点的权值变为以其为根的子树中所有节点的权值之异或和。
维护 q 个询问,每个询问则是问 T 次操作之后,根节点的权值。
解:
相关题目:HDU 6129 http://acm.hdu.edu.cn/showproblem.php?pid=6129
HDU 6129 是树退化成一条链的情形。

我们的做法依然是考虑每个节点对答案的贡献。
如果是求和,则 T 次操作之后,考虑每个节点 i 对答案的贡献,结果为
$$\sum_{i} \binom{T+d[i]-1}{d[i]} a[i],$$
其中 d[i] 是节点 i 的深度(根节点深度为 0 ),额外定义$\binom{-1}{0} = 1$。

而对于异或和,我们只需要考虑系数模 2 的余数即可,上式可变为
$$\bigoplus_{i} \left( \binom{T+d[i]-1}{d[i]} \bmod 2 \right) a[i].$$

剩下我们要考虑 $\binom{a+b}{b} \bmod 2 = 1$ 的充要条件。
由 Lucas 定理,可得 $\binom{a}{b} \bmod 2 = 1$ 当且仅当 $a \operatorname{and} b = b$ 。
从而,$\binom{a+b}{b} \bmod 2 = 1$ 当且仅当 $(a+b) \operatorname{and} b = b$ ,即$a \operatorname{and} b = 0$(不是那么显然,需要读者自行证一下)。

观察式子可以发现,设$2^k > \max_i \{d[i]\}$,则 $T$ 次操作后的结果与 $T \bmod 2^k$ 次操作后的结果相同。
因此我们可以只考虑 $0 \le T < 2^k$ 的情况。

注意到 $\binom{T+d[i]-1}{d[i]} \bmod 2 = 1$ 当且仅当 $(T-1) \operatorname{and} d[i] = 0$。
于是我们先把所有节点按照其深度分组,同一个深度的节点先合并在一块,因为他们在参与运算时一定是捆绑在一起的。
接着根据 $(T-1)$,我们依次枚举满足条件的 $d[i]$ ,这是一个经典的子集枚举,即枚举 ~(T-1) 的子集。
枚举 s 的子集的方式为

for (int x = s; x; x = (x-1)&s)
{
    // we have enumerated every x satisfying x&s = x.
}

由于 T 会取遍 $[0, 2^k)$ 之间的值,这样对每个 T 都枚举一遍子集的时间复杂度为 $O(3^k)$ (不是那么显然,需要读者自行证明)。
而 $k = O(\log n)$,于是,总的时间复杂度为 $ O(3^{\log n}) $。

时间: 2024-09-28 19:38:11

Codechef WEASELTX的相关文章

Codechef SEPT17

比赛链接:https://www.codechef.com/SEPT17 CHEFSUM code给定数组 a[1..n] ,求最小的下标 i ,使得 prefixsum[i]+suffixsum[i] 最小.解:注意到 prefixsum[i]+suffixsum[i] = sum(a)+a[i].于是找到 a[i] 最小的下标 i 即可.时间复杂度 O(n) . MINPERM code找到字典序最小的 1..n 的排列 p[i] ,使得 p[i] != i .解:如果 n 是偶数,则满足条

CodeChef FNCS (分块+树状数组)

题目:https://www.codechef.com/problems/FNCS 题解: 我们知道要求区间和的时候,我们用前缀和去优化.这里也是一样,我们要求第 l 个函数到第 r 个函数 [l, r] 的函数和,那么我们可以用 sum[r] - sum[l-1] 来求得. 由于这个数据量有点大,所以我们将函数分块. 例如样例: 1 3 有5个函数,那么我们分成3块.{ [1 3] , [2 5] }, { [4 5], [3 5] }, { [1 2] }.每一块对应都有一个sum ,这时如

codechef营养题 第三弹

第三弾が始まる! codechef problems 第三弹 一.Motorbike Racing 题面 It's time for the annual exciting Motorbike Race in Byteland. There are N motorcyclists taking part in the competition. Johnny is watching the race. At the present moment (time 0), Johnny has taken

codechef 营养题 第一弹

第一弾が始まる! 定期更新しない! 来源:http://wenku.baidu.com/link?url=XOJLwfgMsZp_9nhAK15591XFRgZl7f7_x7wtZ5_3T2peHh5XXoERDanUcdxw08SmRj1a5VY1o7jpW1xYv_V1kuYao1Pg4yKdfG4MfNsNAEa codechef problems 第一弹 一.Authentication Failed原题题面Several days ago Chef decided to registe

bzoj4260: Codechef REBXOR

求异或maxmin一般用trie (二进制式的trie).query中找的是满足((x>>i)&1)^A=1,那么A=((x>>i)&1)^1:maxx=max(sumx,sumi)(i=[1,x]).(YY一下异或的性质 #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> using namespace std; #def

Codechef July Challenge 2014部分题解

Dish Owner(并查集) 链接:http://www.codechef.com/JULY14/problems/DISHOWN/ 题意分析:本题主要操作就是给出0 x y时,拥有第x道菜的厨师与拥有第y道菜的厨师pk,谁拥有的所有菜的其中一道菜(不一定是x或y)的分值比较高谁就获胜,并赢得loser的所有菜.即比较的是每个人分值最高的菜,所以对于非loser的人来说,他的分值最高的菜是不变的.综合题意用并查集易解. #include <cstdio> const int Maxn=100

codechef Row and Column Operations 题解

You are given an N × N grid initially filled by zeros. Let the rows and columns of the grid be numbered from1 to N, inclusive. There are two types of operations can be applied to the grid: RowAdd R X: all numbers in the row R should be increased by X

Codechef Nuclear Reactors 题解

There are K nuclear reactor chambers labelled from 0 to K-1. Particles are bombarded onto chamber 0. The particles keep collecting in the chamber 0. However if at any time, there are more than N particles in a chamber, a reaction will cause 1 particl

codechef Cleaning Up 题解

After a long and successful day of preparing food for the banquet, it is time to clean up. There is a list of n jobs to do before the kitchen can be closed for the night. These jobs are indexed from 1 to n. Most of the cooks have already left and onl