結果

問題 No.1112 冥界の音楽
ユーザー tanon710tanon710
提出日時 2020-07-10 23:33:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,109 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 86,528 KB
最終ジャッジ日時 2024-10-11 19:12:39
合計ジャッジ時間 5,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
67,456 KB
testcase_01 AC 47 ms
58,624 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 51 ms
60,928 KB
testcase_04 AC 52 ms
61,056 KB
testcase_05 AC 50 ms
60,160 KB
testcase_06 AC 728 ms
76,672 KB
testcase_07 AC 41 ms
52,224 KB
testcase_08 AC 56 ms
62,080 KB
testcase_09 AC 181 ms
76,032 KB
testcase_10 AC 48 ms
59,392 KB
testcase_11 AC 147 ms
76,032 KB
testcase_12 AC 49 ms
59,520 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
input=sys.stdin.readline

mod=10**9+7

def calc(mat1,mat2):
    n=len(mat1)
    ret=[[0]*n for _ in range(n)]
    for i in range(n):
        for j in range(n):
            tmp=0
            for k in range(n):
                tmp+=mat1[i][k]*mat2[k][j]
                tmp%=mod
            ret[i][j]=tmp
    return ret

k,m,n=map(int,input().split())
n-=3
edge=[list(map(int,input().split())) for _ in range(m)]
mat=[[0]*m for _ in range(m)]
flag1=[0]*m
flag2=[0]*m
for i in range(m):
    if edge[i][0]==1:
        flag1[i]=1
    if edge[i][2]==1:
        flag2[i]=1
for i in range(m):
    for j in range(m):
        if edge[i][1]==edge[j][0] and edge[i][2]==edge[j][1]:
            mat[i][j]=1
tmp=[[0]*m for _ in range(m)]
for i in range(m):
    tmp[i][i]=1
for i in range(60):
    if n&(1<<i):
        tmp=calc(tmp,mat)
    mat=calc(mat,mat)
ans=0
for i in range(m):
    if flag1[i]==0:
        continue
    for j in range(m):
        if flag2[j]==0:
            continue
        ans+=tmp[i][j]
        ans%-mod
print(ans)
0