結果

問題 No.1112 冥界の音楽
ユーザー H3PO4H3PO4
提出日時 2023-06-17 20:19:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 910 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,376 KB
最終ジャッジ日時 2024-06-25 10:13:27
合計ジャッジ時間 25,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
44,224 KB
testcase_01 AC 528 ms
43,960 KB
testcase_02 AC 540 ms
44,096 KB
testcase_03 AC 527 ms
43,832 KB
testcase_04 AC 538 ms
44,216 KB
testcase_05 AC 532 ms
44,220 KB
testcase_06 AC 538 ms
44,104 KB
testcase_07 AC 542 ms
44,344 KB
testcase_08 AC 533 ms
43,964 KB
testcase_09 AC 531 ms
44,220 KB
testcase_10 AC 533 ms
44,096 KB
testcase_11 AC 530 ms
44,092 KB
testcase_12 AC 524 ms
43,956 KB
testcase_13 AC 530 ms
44,220 KB
testcase_14 AC 631 ms
43,964 KB
testcase_15 AC 565 ms
44,148 KB
testcase_16 AC 550 ms
44,212 KB
testcase_17 AC 584 ms
43,964 KB
testcase_18 AC 575 ms
43,832 KB
testcase_19 AC 558 ms
43,960 KB
testcase_20 AC 565 ms
44,008 KB
testcase_21 AC 606 ms
43,968 KB
testcase_22 AC 607 ms
43,956 KB
testcase_23 AC 562 ms
44,344 KB
testcase_24 AC 642 ms
43,960 KB
testcase_25 AC 635 ms
44,472 KB
testcase_26 AC 623 ms
44,088 KB
testcase_27 AC 636 ms
44,212 KB
testcase_28 AC 641 ms
44,340 KB
testcase_29 AC 634 ms
44,284 KB
testcase_30 AC 718 ms
44,472 KB
testcase_31 AC 627 ms
44,228 KB
testcase_32 AC 727 ms
43,972 KB
testcase_33 AC 627 ms
44,476 KB
testcase_34 AC 617 ms
44,216 KB
testcase_35 AC 626 ms
44,216 KB
testcase_36 AC 910 ms
45,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

MOD = 10 ** 9 + 7
int1 = lambda x: int(x) - 1


def pow_matrix_mod(x, n, mod=MOD):
    x = x.astype(object)
    if not n:
        return np.eye(len(x), dtype=object)
    if n % 2 == 0:
        return pow_matrix_mod(x @ x % mod, n // 2) % mod
    else:
        return x @ pow_matrix_mod(x @ x % mod, (n - 1) // 2) % mod


K, M, N = map(int, input().split())
matr = np.zeros((36, 36), dtype=int)
for _ in range(M):
    P, Q, R = map(int1, input().split())
    matr[6 * P + Q, 6 * Q + R] = True

A = np.zeros(36, dtype=object)
A[:6] = 1
print((A @ pow_matrix_mod(matr, N - 2))[::6].sum() % MOD)
0