結果

問題 No.140 みんなで旅行
ユーザー tonyu0tonyu0
提出日時 2021-01-28 17:07:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 5,000 ms
コード長 1,285 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 78,580 KB
最終ジャッジ日時 2024-06-26 01:27:24
合計ジャッジ時間 3,201 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,360 KB
testcase_01 AC 37 ms
52,400 KB
testcase_02 AC 56 ms
64,768 KB
testcase_03 AC 38 ms
52,624 KB
testcase_04 AC 37 ms
52,552 KB
testcase_05 AC 38 ms
52,696 KB
testcase_06 AC 37 ms
53,724 KB
testcase_07 AC 36 ms
53,124 KB
testcase_08 AC 38 ms
52,072 KB
testcase_09 AC 37 ms
53,160 KB
testcase_10 AC 44 ms
52,712 KB
testcase_11 AC 279 ms
78,580 KB
testcase_12 AC 54 ms
64,368 KB
testcase_13 AC 52 ms
63,992 KB
testcase_14 AC 284 ms
78,216 KB
testcase_15 AC 278 ms
78,240 KB
testcase_16 AC 111 ms
69,836 KB
testcase_17 AC 76 ms
68,084 KB
testcase_18 AC 209 ms
74,216 KB
testcase_19 AC 232 ms
78,308 KB
testcase_20 AC 68 ms
67,436 KB
testcase_21 AC 47 ms
61,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
# ペアをひと固まりと考えると、各グループ、少なくとも一つ以上の塊が必要
# 夫婦で一緒になる組xを固定して、xのスターリング数を求める。
# 残った人は夫婦同氏同じグループにならないように割り振る。

mod = 10 ** 9 + 7
fac=[1]*(n+1)
finv=[1]*(n+1)
inv=[1]*(n+1)
for i in range(2, n + 1):
    # p = i*p // i + p % i -> i*p//i+p%i=0 mod p
    # inv[i] = -i*p//i * inv[p%i]
    inv[i] = mod - mod // i * inv[mod % i] % mod
for i in range(1, n + 1):
    fac[i] = fac[i - 1] * i % mod
    finv[i] = finv[i - 1] * inv[i] % mod

def comb(n, k):
    if n < 0 or k < 0 or n < k:
        return 0
    return fac[n] * finv[n - k] % mod * finv[k] % mod
dp = [[0] * (n + 1) for _ in range(n + 1)]
dp[0][0] = 1
for i in range(1, n + 1):
    for j in range(1, n + 1):
        dp[i][j] = j * dp[i - 1][j] % mod + dp[i - 1][j - 1]
        if dp[i][j] >= mod:
            dp[i][j] -= mod
ans = 0
for g in range(1, n + 1):
    for x in range(g, n + 1):
        y = n - x
        z = dp[x][g]
        tmp = 1
        for w in range(y):
            tmp *= g * (g - 1) % mod
            tmp %= mod
        ans += tmp * dp[x][g] % mod * comb(n, x) % mod
        if ans >= mod:
            ans -= mod
print(ans)
0