#Lutece0809. Everywhere
Everywhere
Migrated from Lutece 809 Everywhere
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
The "Biology Operator-X" (BOX) is a new system developed by scientists, to help them learn the characteristics of a special kind of cell.
The BOX has rows, each row contain exactly squares, forming a rectangle. At first scientists choose squares from the first row, and for each of them, they put a single cell in it.
The BOX will not look beautiful if is too large, so will always be no more than .
The cell will grow following some rules:
For a square at row , column , as , each cell in that square will split into three cells, one will move to the square below, as , one will move to the square at lower-left , and one will move to the square at lower-right . So, after moving, there will be no cell in the original square.
Some cells may move out of the BOX, those cells will die immediately, and will not grow any more.
Scientist chooses a single square at the bottom of the BOX. Any cells moving into that square will be collected, and will not split and move anymore.
Given the position of that square, how many cell will they collect in the end?
The answer may be large, please output the number module a prime number given in the input.
Input
The first line contains two integers , , , describing the size(height and width) of BOX.
Next line has a single integer (), it is the number of squares chosen by the scientists to put cells at the very beginning.
The third line contains integers , seperated by space. They are the squares chosen by the scientists to put cells in the first row. In other words, those squares will locate at .
Then two integers and are given in the fourth line. Scientists will collect cells from the square , and is the module number. (, is a prime number).
Output
Output the answer module .
Samples
5 5
5
1 2 3 4 5
3 11
3
Note
The example is shown in the picture below.
Resources
the 12th UESTC Programming Contest Final