結果

問題 No.1112 冥界の音楽
ユーザー ayaoniayaoni
提出日時 2020-11-29 23:21:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,076 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 77,060 KB
最終ジャッジ日時 2024-09-13 02:11:58
合計ジャッジ時間 4,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
70,588 KB
testcase_01 AC 39 ms
52,728 KB
testcase_02 AC 39 ms
52,684 KB
testcase_03 AC 40 ms
53,328 KB
testcase_04 AC 40 ms
52,884 KB
testcase_05 AC 41 ms
52,900 KB
testcase_06 AC 94 ms
76,408 KB
testcase_07 AC 38 ms
52,944 KB
testcase_08 AC 46 ms
59,412 KB
testcase_09 AC 60 ms
68,424 KB
testcase_10 AC 40 ms
53,012 KB
testcase_11 AC 62 ms
72,656 KB
testcase_12 AC 40 ms
53,484 KB
testcase_13 AC 70 ms
74,128 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 39 ms
52,708 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 39 ms
53,872 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 40 ms
53,304 KB
testcase_25 AC 41 ms
54,520 KB
testcase_26 AC 62 ms
67,832 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 41 ms
53,416 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 61 ms
68,264 KB
testcase_34 AC 41 ms
53,752 KB
testcase_35 AC 61 ms
68,120 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def MI(): return map(int,sys.stdin.readline().rstrip().split())


def matrix_multiplication_mod(A,B,p):
    l = len(A)
    m = len(B)
    n = len(B[0])
    C = [[0]*n for _ in range(l)]
    for i in range(l):
        for j in range(n):
            C[i][j] = sum((A[i][k]*B[k][j]) % p for k in range(m)) % p
    return C


def matrix_power_mod(A,n,p):
    l = len(A)
    C = [[0] * l for _ in range(l)]
    for i in range(l):
        C[i][i] = 1
    while n > 0:
        if n % 2 == 1:
            C = matrix_multiplication_mod(C,A,p)
        A = matrix_multiplication_mod(A,A,p)
        n >>= 1
    return C


K,M,N = MI()
mod = 10**9+7
PQR = set([tuple(MI()) for _ in range(M)])

A = [[0]*(K**2) for _ in range(K**2)]
for i in range(K**2):
    i0,i1 = divmod(i,K)
    for j in range(K**2):
        j0,j1 = divmod(j,K)
        if i0 != j1:
            continue
        if (j0+1,i0+1,i1+1) in PQR:
            A[i][j] = 1

X = matrix_power_mod(A,N-2,mod)

ans = 0
for i in range(0,K**2,K):
    for j in range(K):
        ans += X[i][j]
        ans % mod

print(ans)
0