CF453D.Little Pony and Elements of Harmony

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The Elements of Harmony are six supernatural artifacts representing subjective aspects of harmony. They are arguably the most powerful force in Equestria. The inside of Elements of Harmony can be seen as a complete graph with nn vertices labeled from 0 to n1n-1 , where nn is a power of two, equal to 2m2^{m} .

The energy in Elements of Harmony is in constant movement. According to the ancient book, the energy of vertex uu in time ii (ei[u])(e_{i}[u]) equals to:

Here b[]b[] is the transformation coefficient — an array of m+1m+1 integers and f(u,v)f(u,v) is the number of ones in the binary representation of number (u xor v)(u xor v) .

Given the transformation coefficient and the energy distribution at time 0 (e0[])(e_{0}[]) . Help Twilight Sparkle predict the energy distribution at time tt (et[])(e_{t}[]) . The answer can be quite large, so output it modulo pp .

输入格式

The first line contains three integers mm , tt and pp ( 1<=m<=20; 0<=t<=1018; 2<=p<=1091<=m<=20; 0<=t<=10^{18}; 2<=p<=10^{9} ). The following line contains nn ( n=2mn=2^{m} ) integers e0[i]e_{0}[i] ( 1<=e0[i]<=109; 0<=i<n1<=e_{0}[i]<=10^{9}; 0<=i<n ). The next line contains m+1m+1 integers b[i]b[i] ( 0<=b[i]<=109; 0<=i<=m0<=b[i]<=10^{9}; 0<=i<=m ).

输出格式

Output nn lines, the ii -th line must contain a single integer et[i]e_{t}[i] modulo pp .

输入输出样例

  • 输入#1

    2 2 10000
    4 1 2 3
    0 1 0
    

    输出#1

    14
    6
    6
    14
    
首页