結果

問題 No.1112 冥界の音楽
ユーザー neterukunneterukun
提出日時 2020-07-10 22:59:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 1,126 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 74,240 KB
最終ジャッジ日時 2024-10-11 13:41:05
合計ジャッジ時間 4,140 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
60,288 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 57 ms
60,928 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 46 ms
57,856 KB
testcase_09 AC 50 ms
60,288 KB
testcase_10 AC 41 ms
52,224 KB
testcase_11 AC 52 ms
60,544 KB
testcase_12 AC 41 ms
52,224 KB
testcase_13 AC 55 ms
60,928 KB
testcase_14 AC 84 ms
63,872 KB
testcase_15 AC 60 ms
61,952 KB
testcase_16 AC 41 ms
52,352 KB
testcase_17 AC 62 ms
62,464 KB
testcase_18 AC 62 ms
62,336 KB
testcase_19 AC 41 ms
51,968 KB
testcase_20 AC 57 ms
63,360 KB
testcase_21 AC 80 ms
63,616 KB
testcase_22 AC 80 ms
63,872 KB
testcase_23 AC 59 ms
61,696 KB
testcase_24 AC 42 ms
52,096 KB
testcase_25 AC 42 ms
52,352 KB
testcase_26 AC 53 ms
61,056 KB
testcase_27 AC 53 ms
61,696 KB
testcase_28 AC 53 ms
61,696 KB
testcase_29 AC 42 ms
52,096 KB
testcase_30 AC 90 ms
66,816 KB
testcase_31 AC 54 ms
61,568 KB
testcase_32 AC 93 ms
67,456 KB
testcase_33 AC 53 ms
61,696 KB
testcase_34 AC 41 ms
52,608 KB
testcase_35 AC 53 ms
61,440 KB
testcase_36 AC 172 ms
74,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def _mul(A, B, MOD):
    C = [[0] * len(B[0]) for i in range(len(A))]
    for i in range(len(A)):
        for k in range(len(B)):
            for j in range(len(B[0])):
                C[i][j] = (C[i][j] + A[i][k] * B[k][j]) % MOD
    return C

def pow_matrix(A, n, MOD):
    """A**nをダブリングによって求める。"""
    B = [[0] * len(A) for i in range(len(A))]
    for i in range(len(A)):
        B[i][i] = 1
    while n > 0:
        if n & 1:
            B = _mul(A, B, MOD)
        A = _mul(A, A, MOD)
        n  = n // 2
    return B

k, m, n = map(int, input().split())
info = [list(map(int, input().split())) for i in range(m)]
MOD = 10 ** 9 + 7

# matrix_l * a * matrix_r
matrix = [[0] * (k ** 2) for i in range(k ** 2)]
for p, q, r in info:
    p -= 1
    q -= 1
    r -= 1
    row = 0
    col = 0
    row += r * k
    row += q
    col += q * k
    col += p
    matrix[row][col] += 1
matrix = pow_matrix(matrix, n - 2, MOD)
ans = [0] * (k ** 2)
for i in range(k):
    ans[i * k] = 1

res = 0
for i in range(k):
    for j in range(k ** 2):
        res += matrix[i][j] * ans[j]
        res %= MOD
print(res)
0