eolymp
bolt
Try our new interface for solving problems
Məsələlər

One-Dimensional Cellular Automaton

One-Dimensional Cellular Automaton

There is a one-dimensional cellular automaton consisting of \textbf{N} cells. Cells are numbered from \textbf{0} to \textbf{N-1}. Each cell has a state represented as a non-negative integer less than \textbf{M}. The states of cells evolve through discrete time steps. We denote the state of the \textbf{i}-th cell at time \textbf{t} as \textbf{S(i, t)}. The state at time \textbf{t+1} is de ned by the equation \textbf{S(i, t+1) = (A × S(i-1, t) + B × S(i, t) + C × S(i+1, t))mod M}, (1) where \textbf{A}, \textbf{B} and \textbf{C} are non-negative integer constants. For \textbf{i} < \textbf{0} or \textbf{N} ≤ \textbf{i}, we de ne \textbf{S(i, t) = 0}. Given an automaton de nition and initial states of cells, your mission is to write a program that computes the states of the cells at a speci ed time \textbf{T}. \InputFile The input is a sequence of datasets. Each dataset is formatted as follows. \textbf{N M A B C T} \textbf{S(0, 0) S(1, 0) ... S(N-1, 0)} The first line of a dataset consists of six integers, namely \textbf{N}, \textbf{M}, \textbf{A}, \textbf{B}, \textbf{C} and \textbf{T}. \textbf{N} is the number of cells. \textbf{M} is the modulus in the equation (1). \textbf{A}, \textbf{B} and \textbf{C} are coefficients in the equation (1). Finally, \textbf{T} is the time for which you should compute the states. You may assume that \textbf{0} < \textbf{N} ≤ \textbf{50}, \textbf{0} < \textbf{M} ≤ \textbf{1000}, \textbf{0} ≤ \textbf{A}, \textbf{B}, \textbf{C} < \textbf{M} and \textbf{0} ≤ \textbf{T} ≤ \textbf{10^9}. The second line consists of \textbf{N} integers, each of which is non-negative and less than \textbf{M}. They represent the states of the cells at time zero. A line containing six zeros indicates the end of the input. \OutputFile For each dataset, output a line that contains the states of the cells at time \textbf{T}. The format of the output is as follows. \textbf{S(0, T) S(1, T) ... S(N-1, T)} Each state must be represented as an integer and the integers must be separated by a space.
Zaman məhdudiyyəti 30 saniyə
Yaddaşı istafadə məhdudiyyəti 128 MiB
Giriş verilənləri #1
5 4 1 3 2 0
0 1 2 0 1
5 7 1 3 2 1
0 1 2 0 1
5 13 1 3 2 11
0 1 2 0 1
5 5 2 0 1 100
0 1 2 0 1
6 6 0 2 3 1000
0 1 2 0 1 4
20 1000 0 2 3 1000000000
0 1 2 0 1 0 1 2 0 1 0 1 2 0 1 0 1 2 0 1
30 2 1 0 1 1000000000
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
30 2 1 1 1 1000000000
1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
30 5 2 3 1 1000000000
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0
Çıxış verilənləri #1
0 1 2 0 1
2 0 0 4 3
2 12 10 9 11
3 0 4 2 1
0 4 2 0 4 4
0 376 752 0 376 0 376 752 0 376 0 376 752 0 376 0 376 752 0 376
1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
1 1 3 2 2 2 3 3 1 4 3 1 2 3 0 4 3 3 0 4 2 2 2 2 1 1 2 1 3 0
Mənbə ACM International Collegiate Programming Contest, Asia Regional Contest, Tokyo, 2012-11-18