結果

問題 No.1667 Forest
ユーザー tamatotamato
提出日時 2021-09-03 22:27:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,728 ms / 3,000 ms
コード長 1,200 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 81,444 KB
最終ジャッジ日時 2024-05-09 05:02:18
合計ジャッジ時間 18,644 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,728 ms
81,280 KB
testcase_01 AC 2,700 ms
81,444 KB
testcase_02 AC 2,637 ms
81,280 KB
testcase_03 AC 94 ms
72,704 KB
testcase_04 AC 2,616 ms
81,280 KB
testcase_05 AC 1,535 ms
81,024 KB
testcase_06 AC 941 ms
81,280 KB
testcase_07 AC 594 ms
80,512 KB
testcase_08 AC 320 ms
80,716 KB
testcase_09 AC 201 ms
80,684 KB
testcase_10 AC 143 ms
77,056 KB
testcase_11 AC 84 ms
71,424 KB
testcase_12 AC 62 ms
63,232 KB
testcase_13 AC 63 ms
63,104 KB
testcase_14 AC 66 ms
64,384 KB
testcase_15 AC 62 ms
63,360 KB
testcase_16 AC 64 ms
62,720 KB
testcase_17 AC 69 ms
63,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


def main():
    import sys
    input = sys.stdin.readline

    def f(x, mod):
        if x == 1:
            return 1
        return pow(x, x-2, mod)

    N, mod = map(int, input().split())

    # comb init
    # mod = 1000000007
    nmax = 2 * 10 ** 5 + 10  # change here
    fac = [0] * nmax
    finv = [0] * nmax
    inv = [0] * nmax
    fac[0] = 1
    fac[1] = 1
    finv[0] = 1
    finv[1] = 1
    inv[1] = 1
    for i in range(2, nmax):
        fac[i] = fac[i - 1] * i % mod
        inv[i] = mod - inv[mod % i] * (mod // i) % mod
        finv[i] = finv[i - 1] * inv[i] % mod

    def comb(n, r):
        if n < r:
            return 0
        else:
            return (fac[n] * ((finv[r] * finv[n - r]) % mod)) % mod

    dp = [[0] * N for _ in range(N+1)]
    dp[N][0] = 1
    for i in range(N, 0, -1):
        for j in range(N):
            for j_use in range(1, N):
                if j + j_use < N and i >= j_use + 1:
                    dp[i-(j_use + 1)][j + j_use] = (dp[i-(j_use + 1)][j + j_use] + ((dp[i][j] * f(j_use + 1, mod))%mod * comb(i-1, j_use))%mod)%mod
            dp[i-1][j] = (dp[i-1][j] + dp[i][j])%mod

    print(*dp[0], sep="\n")


if __name__ == '__main__':
    main()
0