#P12793. [NERC 2022] Dominoes
[NERC 2022] Dominoes
题目描述
Dora likes to play with dominoes. She takes table, marks some cells as occupied, and then tries to fill all unoccupied cells with dominoes.
Her little brother Dani loves to play pranks on his older sister. So when she is away, he marks two more unoccupied cells as occupied. He wants to do it in such a way that it will be impossible to fill all unoccupied cells with dominoes.
Help Dani to count the number of ways he can select these two cells. Since Dani can only count to one million, if this number of ways is , output .
输入格式
The first line contains integers and (). Next lines contain characters each --- the initial state of the table. Character corresponds to an occupied cell, and character corresponds to an unoccupied cell. It is guaranteed that there are at least two unoccupied cells, and that it is possible to fill all unoccupied cells with dominoes.
输出格式
Let be the number of ways Dani can mark two cells in such a way that it will be impossible to fill all unoccupied cells with dominoes.
Print one integer .
3 6
...#..
......
#...##
52
2 2
..
..
2
2 2
#.
#.
0