3114.Little Pony and Elements of Harmony

Time Limit: 1s Memory Limit: 256MB

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 n vertices labeled from 0 to n-1, where n is a power of two, equal to 2m. 3114_1.png The energy in Elements of Harmony is in constant movement. According to the ancient book, the energy of vertex u in time i (ei[u]) equals to: 3114_2.png Here b[] is the transformation coefficient - an array of m+1 integers and f(u,v) is the number of ones in the binary representation of number (uxorv).Given the transformation coefficient and the energy distribution at time 0 (e0[]). Help Twilight Sparkle predict the energy distribution at time t (et[]). The answer can be quite large, so output it modulo p.

Input Format(From the terminal/stdin)

Input The first line contains three integers m, t and p (1 \le m \le 20;0 \le t \le 1018;2 \le p \le 109). The following line contains n (n=2m) integers e0[i] (1 \le e0[i] \le 109;0 \le i \lt n). The next line contains m+1 integers b[i] (0 \le b[i] \le 109;0 \le i \le m).

Output Format(To the terminal/stdout)

Output Output n lines, the i-th line must contain a single integer et[i] modulo p.

Sample Input

Copy
2 2 10000
4 1 2 3
0 1 0
 · ·     \n
 · · · \n
 · · \n

Sample Output

Copy
14
6
6
14
  \n
 \n
 \n
  \n

Submit

请先 登录

© 2025 FAQs