結果

問題 No.1112 冥界の音楽
ユーザー tamatotamato
提出日時 2020-07-10 21:53:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,166 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 74,872 KB
最終ジャッジ日時 2024-10-11 08:57:48
合計ジャッジ時間 3,041 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,440 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 36 ms
52,608 KB
testcase_04 AC 37 ms
53,120 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 49 ms
61,824 KB
testcase_07 AC 38 ms
52,844 KB
testcase_08 AC 44 ms
58,752 KB
testcase_09 AC 49 ms
61,312 KB
testcase_10 AC 37 ms
52,608 KB
testcase_11 AC 48 ms
62,080 KB
testcase_12 AC 38 ms
52,352 KB
testcase_13 AC 47 ms
60,800 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 38 ms
52,352 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 37 ms
52,736 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 52 ms
62,336 KB
testcase_24 AC 38 ms
52,992 KB
testcase_25 AC 37 ms
52,992 KB
testcase_26 AC 48 ms
61,952 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 39 ms
52,864 KB
testcase_30 WA -
testcase_31 AC 48 ms
61,568 KB
testcase_32 WA -
testcase_33 AC 48 ms
61,568 KB
testcase_34 AC 38 ms
52,864 KB
testcase_35 AC 47 ms
61,568 KB
testcase_36 AC 100 ms
74,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


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

    def matmul(A, B):
        C = [[0] * len(B[0]) for _ 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 matpow(A, p):
        n = len(A)
        B = [[0] * n for _ in range(n)]
        for i in range(n):
            B[i][i] = 1
        while p > 0:
            if p & 1:
                B = matmul(B, A)
            A = matmul(A, A)
            p >>= 1
        return B

    K, M, N = map(int, input().split())
    T = []
    mat = [[0] * (K*K) for _ in range(K*K)]
    for _ in range(M):
        p, q, r = map(int, input().split())
        p -= 1
        q -= 1
        r -= 1
        pre = p + q * K
        post = q + r * K
        mat[post][pre] = 1
    vec = [[0] for _ in range(K*K)]
    for i in range(K):
        vec[i*K][0] = 1
    vec2 = matmul(matpow(mat, N-2), vec)
    ans = 0
    for i in range(K):
        ans = (ans + vec2[i][0])
    print(ans)


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