CF446E.DZY Loves Bridges
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
DZY owns 2m islands near his home, numbered from 1 to 2m . He loves building bridges to connect the islands. Every bridge he builds takes one day's time to walk across.
DZY has a strange rule of building the bridges. For every pair of islands u,v (u=v) , he has built 2k different bridges connecting them, where ( a∣b means b is divisible by a ). These bridges are bidirectional.
Also, DZY has built some bridges connecting his home with the islands. Specifically, there are ai different bridges from his home to the i -th island. These are one-way bridges, so after he leaves his home he will never come back.
DZY decides to go to the islands for sightseeing. At first he is at home. He chooses and walks across one of the bridges connecting with his home, and arrives at some island. After that, he will spend t day(s) on the islands. Each day, he can choose to stay and rest, or to walk to another island across the bridge. It is allowed to stay at an island for more than one day. It's also allowed to cross one bridge more than once.
Suppose that right after the t -th day DZY stands at the i -th island. Let ans[i] be the number of ways for DZY to reach the i -th island after t -th day. Your task is to calculate ans[i] for each i modulo 1051131 .
输入格式
To avoid huge input, we use the following way to generate the array a . You are given the first s elements of array: a1,a2,...,as . All the other elements should be calculated by formula: ai=(101⋅ai−s+10007) mod 1051131 (s<i<=2^{m}) .
The first line contains three integers m,t,s (1<=m<=25; 1<=t<=1018; 1<=s<=min(2m,105)) .
The second line contains s integers a1,a2,...,as (1<=ai<=106) .
输出格式
To avoid huge output, you only need to output xor-sum of all the answers for all i modulo 1051131 (1<=i<=2m) , i.e. (ans[1] mod 1051131) xor (ans[2] mod 1051131) xor... xor (ans[n] mod 1051131) .
输入输出样例
输入#1
2 1 4 1 1 1 2
输出#1
1
输入#2
3 5 6 389094 705719 547193 653800 947499 17024
输出#2
556970
说明/提示
In the first sample, ans=[6,7,6,6] .
If he wants to be at island 1 after one day, he has 6 different ways:
- home —> 1 -(stay)-> 1
- home —> 2 —> 1
- home —> 3 —> 1
- home —> 3 —> 1 (note that there are two different bridges between 1 and 3)
- home —> 4 —> 1
- home —> 4 —> 1 (note that there are two different bridges from home to 4)
In the second sample, (a1,a2,a3,a4,a5,a6,a7,a8)=(389094,705719,547193,653800,947499,17024,416654,861849) , ans=[235771,712729,433182,745954,139255,935785,620229,644335] .