Time Limit: 2 sec / Memory Limit: 256 MB
配点 : 300 点
問題文
すぬけ君は、犬を N 匹と猿を M 匹飼っています。すぬけ君は、この N+M 匹を一列に並べようと思っています。
文字通り犬猿の仲の犬たちと猿たちを仲直りさせたいすぬけ君は、犬同士、または猿同士が隣り合うところができないように並べようと思っています。
このような並べ方は何通りあるでしょうか。犬と猿は 10^9+7 以上の数を理解できないので、並べ方の個数を 10^9+7 で割ったあまりを求めてください。 ただし、犬同士、また猿同士は互いに区別します。また、左右が反転しただけの列も異なる列とみなします。
制約
- 1 ≦ N,M ≦ 10^5
入力
入力は以下の形式で標準入力から与えられる。
N M
出力
並べ方の個数を 10^9+7 で割ったあまりを出力せよ。
入力例 1
2 2
出力例 1
8
犬をそれぞれ A
,B
とし、猿をそれぞれ C
,D
とすると、ACBD
,ADBC
,BCAD
,BDAC
,CADB
,CBDA
,DACB
,DBCA
の 8 通りの並べ方があります。
入力例 2
3 2
出力例 2
12
入力例 3
1 8
出力例 3
0
入力例 4
100000 100000
出力例 4
530123477
Score : 300 points
Problem Statement
Snuke has N dogs and M monkeys. He wants them to line up in a row.
As a Japanese saying goes, these dogs and monkeys are on bad terms. ("ken'en no naka", literally "the relationship of dogs and monkeys", means a relationship of mutual hatred.) Snuke is trying to reconsile them, by arranging the animals so that there are neither two adjacent dogs nor two adjacent monkeys.
How many such arrangements there are? Find the count modulo 10^9+7 (since animals cannot understand numbers larger than that). Here, dogs and monkeys are both distinguishable. Also, two arrangements that result from reversing each other are distinguished.
Constraints
- 1 ≤ N,M ≤ 10^5
Input
Input is given from Standard Input in the following format:
N M
Output
Print the number of possible arrangements, modulo 10^9+7.
Sample Input 1
2 2
Sample Output 1
8
We will denote the dogs by A
and B
, and the monkeys by C
and D
. There are eight possible arrangements: ACBD
, ADBC
, BCAD
, BDAC
, CADB
, CBDA
, DACB
and DBCA
.
Sample Input 2
3 2
Sample Output 2
12
Sample Input 3
1 8
Sample Output 3
0
Sample Input 4
100000 100000
Sample Output 4
530123477