結果

問題 No.1112 冥界の音楽
ユーザー mkawa2mkawa2
提出日時 2020-07-10 22:35:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,201 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 54,068 KB
最終ジャッジ日時 2024-10-11 09:57:12
合計ジャッジ時間 35,676 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 509 ms
51,116 KB
testcase_01 AC 537 ms
44,180 KB
testcase_02 AC 542 ms
44,296 KB
testcase_03 AC 538 ms
43,916 KB
testcase_04 AC 508 ms
43,916 KB
testcase_05 AC 505 ms
44,052 KB
testcase_06 AC 654 ms
44,048 KB
testcase_07 AC 511 ms
44,304 KB
testcase_08 AC 513 ms
44,336 KB
testcase_09 AC 523 ms
44,300 KB
testcase_10 AC 506 ms
44,048 KB
testcase_11 AC 527 ms
44,172 KB
testcase_12 AC 503 ms
44,300 KB
testcase_13 AC 506 ms
44,432 KB
testcase_14 TLE -
testcase_15 AC 724 ms
43,912 KB
testcase_16 AC 512 ms
44,044 KB
testcase_17 AC 1,049 ms
44,556 KB
testcase_18 AC 1,032 ms
44,172 KB
testcase_19 AC 511 ms
44,428 KB
testcase_20 AC 602 ms
44,428 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 909 ms
43,916 KB
testcase_24 AC 513 ms
44,044 KB
testcase_25 AC 506 ms
44,056 KB
testcase_26 AC 500 ms
43,920 KB
testcase_27 AC 504 ms
44,292 KB
testcase_28 AC 536 ms
44,300 KB
testcase_29 AC 505 ms
44,048 KB
testcase_30 TLE -
testcase_31 AC 529 ms
44,040 KB
testcase_32 TLE -
testcase_33 AC 508 ms
44,428 KB
testcase_34 AC 504 ms
44,404 KB
testcase_35 AC 509 ms
44,556 KB
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import sys

sys.setrecursionlimit(10 ** 6)

def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def SI(): return sys.stdin.readline()[:-1]
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
int1 = lambda x: int(x) - 1
def MI1(): return map(int1, sys.stdin.readline().split())
def LI1(): return list(map(int1, sys.stdin.readline().split()))
p2D = lambda x: print(*x, sep="\n")
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

md=10**9+7
k,m,n=MI()
pqr=LLI(m)
if n==3:
    ans=0
    for p,q,r in pqr:
        if p==1 and r==1:ans+=1
    print(ans)
    exit()
to=np.zeros((m,m),dtype=object)
for i in range(m):
    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)

start=[]
end=[]
for i,(p,q,r) in enumerate(pqr):
    if p==1:start.append(i)
    if r==1:end.append(i)
ans=0
for s in start:
    for e in end:
        ans+=cnt[s][e]
        ans%=md
print(ans)
0