結果

問題 No.1112 冥界の音楽
ユーザー ayaoniayaoni
提出日時 2020-11-29 23:22:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 1,077 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 76,880 KB
最終ジャッジ日時 2024-09-13 02:12:02
合計ジャッジ時間 3,827 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
70,652 KB
testcase_01 AC 39 ms
53,044 KB
testcase_02 AC 38 ms
52,828 KB
testcase_03 AC 38 ms
52,600 KB
testcase_04 AC 38 ms
53,476 KB
testcase_05 AC 38 ms
53,420 KB
testcase_06 AC 76 ms
76,524 KB
testcase_07 AC 38 ms
52,432 KB
testcase_08 AC 46 ms
59,880 KB
testcase_09 AC 60 ms
69,904 KB
testcase_10 AC 39 ms
53,216 KB
testcase_11 AC 62 ms
73,148 KB
testcase_12 AC 40 ms
54,668 KB
testcase_13 AC 69 ms
74,884 KB
testcase_14 AC 116 ms
76,320 KB
testcase_15 AC 77 ms
76,004 KB
testcase_16 AC 38 ms
53,436 KB
testcase_17 AC 78 ms
75,956 KB
testcase_18 AC 78 ms
76,272 KB
testcase_19 AC 38 ms
52,876 KB
testcase_20 AC 72 ms
76,172 KB
testcase_21 AC 111 ms
76,788 KB
testcase_22 AC 112 ms
76,600 KB
testcase_23 AC 75 ms
76,196 KB
testcase_24 AC 41 ms
53,996 KB
testcase_25 AC 39 ms
53,044 KB
testcase_26 AC 60 ms
67,324 KB
testcase_27 AC 60 ms
68,204 KB
testcase_28 AC 68 ms
75,968 KB
testcase_29 AC 39 ms
52,964 KB
testcase_30 AC 114 ms
76,388 KB
testcase_31 AC 66 ms
76,080 KB
testcase_32 AC 121 ms
76,156 KB
testcase_33 AC 60 ms
67,832 KB
testcase_34 AC 38 ms
52,600 KB
testcase_35 AC 60 ms
68,256 KB
testcase_36 AC 234 ms
76,880 KB
権限があれば一括ダウンロードができます

ソースコード

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