CF979E.Kuro and Topological Parity
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Kuro has recently won the "Most intelligent cat ever" contest. The three friends then decided to go to Katie's home to celebrate Kuro's winning. After a big meal, they took a small break then started playing games.
Kuro challenged Katie to create a game with only a white paper, a pencil, a pair of scissors and a lot of arrows (you can assume that the number of arrows is infinite). Immediately, Katie came up with the game called Topological Parity.
The paper is divided into n pieces enumerated from 1 to n . Shiro has painted some pieces with some color. Specifically, the i -th piece has color ci where ci=0 defines black color, ci=1 defines white color and ci=−1 means that the piece hasn't been colored yet.
The rules of the game is simple. Players must put some arrows between some pairs of different pieces in such a way that for each arrow, the number in the piece it starts from is less than the number of the piece it ends at. Also, two different pieces can only be connected by at most one arrow. After that the players must choose the color ( 0 or 1 ) for each of the unpainted pieces. The score of a valid way of putting the arrows and coloring pieces is defined as the number of paths of pieces of alternating colors. For example, [1→0→1→0] , [0→1→0→1] , [1] , [0] are valid paths and will be counted. You can only travel from piece x to piece y if and only if there is an arrow from x to y .
But Kuro is not fun yet. He loves parity. Let's call his favorite parity p where p=0 stands for "even" and p=1 stands for "odd". He wants to put the arrows and choose colors in such a way that the score has the parity of p .
It seems like there will be so many ways which satisfy Kuro. He wants to count the number of them but this could be a very large number. Let's help him with his problem, but print it modulo 109+7 .
输入格式
The first line contains two integers n and p ( 1≤n≤50 , 0≤p≤1 ) — the number of pieces and Kuro's wanted parity.
The second line contains n integers c1,c2,...,cn ( −1≤ci≤1 ) — the colors of the pieces.
输出格式
Print a single integer — the number of ways to put the arrows and choose colors so the number of valid paths of alternating colors has the parity of p .
输入输出样例
输入#1
3 1 -1 0 1
输出#1
6
输入#2
2 1 1 0
输出#2
1
输入#3
1 1 -1
输出#3
2
说明/提示
In the first example, there are 6 ways to color the pieces and add the arrows, as are shown in the figure below. The scores are 3,3,5 for the first row and 5,3,3 for the second row, both from left to right.