結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-05-02 12:08:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 76,476 KB
最終ジャッジ日時 2024-10-05 03:03:05
合計ジャッジ時間 5,892 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,040 KB
testcase_01 AC 42 ms
59,936 KB
testcase_02 AC 45 ms
61,284 KB
testcase_03 AC 35 ms
52,772 KB
testcase_04 AC 34 ms
52,528 KB
testcase_05 AC 144 ms
73,876 KB
testcase_06 AC 116 ms
73,028 KB
testcase_07 AC 178 ms
76,036 KB
testcase_08 AC 51 ms
64,152 KB
testcase_09 AC 48 ms
64,256 KB
testcase_10 AC 41 ms
61,252 KB
testcase_11 AC 269 ms
76,124 KB
testcase_12 AC 34 ms
52,660 KB
testcase_13 AC 39 ms
61,892 KB
testcase_14 AC 41 ms
61,232 KB
testcase_15 AC 289 ms
76,100 KB
testcase_16 AC 335 ms
76,132 KB
testcase_17 AC 327 ms
76,224 KB
testcase_18 AC 298 ms
76,096 KB
testcase_19 AC 302 ms
76,224 KB
testcase_20 AC 334 ms
76,084 KB
testcase_21 AC 328 ms
76,344 KB
testcase_22 AC 317 ms
76,476 KB
testcase_23 AC 269 ms
76,256 KB
testcase_24 AC 313 ms
76,372 KB
testcase_25 AC 416 ms
76,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#行列の乗算・累乗

mod = 10 ** 9 + 7

def mat_mul(a, b):
    n_a, m_a = len(a), len(a[0])
    n_b, m_b = len(b), len(b[0])
    res = [[0] * m_b for i in range(n_a)]
    for i in range(n_a):
        for k in range(m_a):
            for j in range(m_b):
                res[i][j] += a[i][k] * b[k][j]
                res[i][j] %= mod
    return res

def mat_pow(a, k):
    if k == 1: return a
    n = len(a)
    res = [[0] * n for i in range(n)]
    for i in range(n):
        res[i][i] = 1
    while k:
        if k & 1:
            res = mat_mul(res, a)
        a = mat_mul(a, a)
        k >>= 1
    return res

#入力
n, k, l = map(int, input().split())

#隣接行列の構築
G = [[0] * n for i in range(n)]
for i in range(n):
    for j in range(1, l + 1):
        G[i][(i + j) % n] = 1

#行列累乗でパスの数を計算
G_ans = mat_pow(G, k)

#各 i について答えを出力
for i in range(n):
    print(G_ans[0][i])
0