Lord_0f_D_C0des's blog

By Lord_0f_D_C0des, 12 years ago, In English


You have an N * M chessboard on which some squares are blocked out. In how many ways can you place one or more queens on the board such that no two queens attack each other? Two queens attack each other if one can reach the other by moving horizontally, vertically or diagonally without passing over any blocked square. At most one queen can be placed on a square. A queen cannot be placed on a blocked square.

Input:
The first line contains the number of test cases T. T test cases follow. Each test case contains integers N and M on the first line. The following N lines contain M characters each representing the board. A '#' represents a blocked square and a '.' represents an unblocked square.

Output:
Output T lines containing the required answer for each test case. As the answers can be really large, output them modulo 1000000007.

Constraints:

1 <= T <= 100
1 <= N <= 50
1 <= M <= 5

how to solve this using bitmask.

thank you.

Full text and comments »

  • Vote: I like it
  • -2
  • Vote: I do not like it