本题来源于:Educational Codeforces Round 86 (Rated for Div. 2) Problem E
在 的国际象棋棋盘上放 个车,要求满足两个条件:
答案对 取模。
输入一行两个整数 。
输出一行一个整数,表示答案。
,。
3 2
6
3 3
0
4 0
24
1337 42
807905441
Calculate the number of ways to place rooks on chessboard so that both following conditions are met:
An empty cell is under attack if there is at least one rook in the same row or at least one rook in the same column. Two rooks attack each other if they share the same row or column, and there are no other rooks between them. For example, there are only two pairs of rooks that attack each other in the following picture:
One of the ways to place the rooks for and Two ways to place the rooks are considered different if there exists at least one cell which is empty in one of the ways but contains a rook in another way.
The answer might be large, so print it modulo .
The only line of the input contains two integers and ( ; ).
Print one integer — the number of ways to place the rooks, taken modulo .
3 2
6
3 3
0
4 0
24
1337 42
807905441