結果

問題 No.1112 冥界の音楽
ユーザー SSlimeSSlime
提出日時 2020-07-11 09:56:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 677 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 93,560 KB
最終ジャッジ日時 2024-10-12 17:43:43
合計ジャッジ時間 24,500 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 499 ms
44,412 KB
testcase_01 AC 478 ms
43,908 KB
testcase_02 AC 472 ms
44,032 KB
testcase_03 AC 472 ms
44,284 KB
testcase_04 AC 492 ms
43,904 KB
testcase_05 AC 485 ms
44,024 KB
testcase_06 AC 491 ms
43,772 KB
testcase_07 AC 475 ms
43,644 KB
testcase_08 AC 468 ms
43,772 KB
testcase_09 AC 484 ms
43,900 KB
testcase_10 AC 475 ms
44,152 KB
testcase_11 AC 483 ms
43,772 KB
testcase_12 AC 485 ms
43,528 KB
testcase_13 AC 548 ms
43,780 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 471 ms
43,772 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 489 ms
44,152 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 496 ms
43,904 KB
testcase_25 AC 492 ms
44,160 KB
testcase_26 AC 489 ms
43,908 KB
testcase_27 AC 490 ms
44,284 KB
testcase_28 AC 491 ms
44,416 KB
testcase_29 AC 487 ms
43,780 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 488 ms
44,028 KB
testcase_34 AC 480 ms
43,908 KB
testcase_35 AC 499 ms
43,776 KB
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

k, m, n = map(int, input().split())
P = [tuple(map(int, input().split())) for i in range(m)]

X = np.array([[0] * m for i in range(m)])

A = np.array([[0] for i in range(m)])
end = []
for i,(p,q,r) in enumerate(P):
    for j in range(m):
        if P[j][0] == q and P[j][1] == r:
            X[j][i] += 1
    if p == 1:
        A[i][0] += 1
    if r == 1:
        end.append(i)
mod = 10**9 + 7
n -= 3
res = np.array([[0]*i + [1] + [0]*(m-i-1) for i in range(m)])
while n > 0:
    if n & 1:
        res = np.dot(X, res) % mod
    X = np.dot(X, X) % mod
    n >>= 1

B = np.dot(res, A) % mod
ans = 0
for i in end:
    ans += B[i][0]
    ans %= mod
print(ans)
0