結果

問題 No.1112 冥界の音楽
ユーザー mkawa2mkawa2
提出日時 2020-07-10 22:40:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 968 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 53,884 KB
最終ジャッジ日時 2024-10-11 10:02:44
合計ジャッジ時間 21,809 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 540 ms
50,820 KB
testcase_01 AC 531 ms
43,620 KB
testcase_02 AC 531 ms
43,488 KB
testcase_03 AC 523 ms
44,252 KB
testcase_04 AC 531 ms
43,996 KB
testcase_05 AC 530 ms
43,616 KB
testcase_06 AC 668 ms
43,868 KB
testcase_07 AC 525 ms
43,612 KB
testcase_08 AC 521 ms
43,740 KB
testcase_09 AC 539 ms
43,996 KB
testcase_10 AC 525 ms
43,876 KB
testcase_11 AC 548 ms
43,616 KB
testcase_12 AC 530 ms
43,640 KB
testcase_13 AC 540 ms
43,880 KB
testcase_14 TLE -
testcase_15 AC 757 ms
43,488 KB
testcase_16 AC 532 ms
43,992 KB
testcase_17 AC 1,077 ms
43,624 KB
testcase_18 AC 1,058 ms
43,996 KB
testcase_19 AC 535 ms
43,864 KB
testcase_20 AC 616 ms
43,876 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 906 ms
43,876 KB
testcase_24 AC 528 ms
44,132 KB
testcase_25 AC 532 ms
44,088 KB
testcase_26 AC 533 ms
44,000 KB
testcase_27 AC 539 ms
44,012 KB
testcase_28 AC 557 ms
44,252 KB
testcase_29 AC 536 ms
43,996 KB
testcase_30 TLE -
testcase_31 AC 558 ms
44,124 KB
testcase_32 TLE -
testcase_33 AC 542 ms
44,136 KB
testcase_34 AC 535 ms
44,252 KB
testcase_35 AC 536 ms
44,128 KB
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import sys

def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main(n):
    if n == 3:
        ans = 0
        for p, q, r in pqr:
            if p == 1 and r == 1: ans += 1
        print(ans)
        exit()

    start = []
    end = []
    to = np.zeros((m, m), dtype=object)
    for i in range(m):
        if pqr[i][0] == 1: start.append(i)
        if pqr[i][2] == 1: end.append(i)
        for j in range(m):
            if pqr[i][1:] == pqr[j][:2]: to[i][j] = 1
    # print(to)
    cnt = np.eye(m, dtype=object)
    n -= 3
    while n:
        if n & 1: cnt = np.dot(cnt, to) % md
        to = np.dot(to, to) % md
        n >>= 1
    # print(cnt)

    ans = 0
    for s in start:
        for e in end:
            ans += cnt[s][e]
            ans %= md
    print(ans)

md=10**9+7
k,m,n=MI()
pqr=LLI(m)
main(n)
0