結果

問題 No.1340 おーじ君をさがせ
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-01-15 22:05:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,180 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-11-26 19:41:11
合計ジャッジ時間 11,934 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,480 KB
testcase_06 WA -
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 38 ms
51,456 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 51 ms
64,768 KB
testcase_11 AC 143 ms
75,776 KB
testcase_12 WA -
testcase_13 AC 244 ms
77,056 KB
testcase_14 AC 238 ms
75,904 KB
testcase_15 AC 208 ms
75,904 KB
testcase_16 AC 61 ms
65,536 KB
testcase_17 AC 106 ms
75,648 KB
testcase_18 AC 144 ms
76,032 KB
testcase_19 AC 53 ms
63,488 KB
testcase_20 AC 47 ms
60,800 KB
testcase_21 AC 153 ms
75,964 KB
testcase_22 AC 746 ms
81,280 KB
testcase_23 AC 153 ms
76,288 KB
testcase_24 AC 513 ms
76,724 KB
testcase_25 AC 67 ms
72,704 KB
testcase_26 AC 62 ms
70,144 KB
testcase_27 AC 60 ms
67,840 KB
testcase_28 AC 72 ms
74,368 KB
testcase_29 AC 56 ms
66,560 KB
testcase_30 AC 160 ms
76,236 KB
testcase_31 AC 517 ms
76,288 KB
testcase_32 AC 486 ms
76,672 KB
testcase_33 AC 479 ms
76,544 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 38 ms
51,968 KB
testcase_37 AC 49 ms
63,616 KB
testcase_38 WA -
testcase_39 AC 176 ms
75,776 KB
testcase_40 AC 183 ms
75,648 KB
testcase_41 AC 181 ms
76,288 KB
testcase_42 WA -
testcase_43 AC 43 ms
59,136 KB
testcase_44 AC 47 ms
61,440 KB
testcase_45 AC 46 ms
60,288 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 168 ms
76,324 KB
testcase_49 AC 161 ms
75,904 KB
testcase_50 AC 159 ms
76,032 KB
testcase_51 AC 164 ms
75,904 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 46 ms
59,776 KB
testcase_57 AC 45 ms
60,032 KB
testcase_58 AC 37 ms
52,608 KB
testcase_59 WA -
testcase_60 AC 38 ms
52,096 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

NFAの状態数
行列べき乗じゃん!!

"""

import sys
from sys import stdin

mod = 998244353

#行列A,Bの積(不可能だとエラー,modに0以下の値を指定するとmodを取らなくなる)
def matrix_mul(A,B):
 
    ans = [ [0] * len(B[0]) for i in range(len(A)) ]
 
    for ai in range(len(A)):
 
        for bj in range(len(B[0])):
 
            now = 0
            for same in range(len(A[0])):
                now |= A[ai][same] & B[same][bj]
            ans[ai][bj] = now
    return ans
 
#行列Aのx乗(当然正方行列じゃないとだめ)
def matrix_pow(A,x):
 
    B = [[A[i][j] for j in range(len(A[0]))] for i in range(len(A))]
    ans = [[0] * len(A[0]) for i in range(len(A))]
    for i in range(len(A)):
        ans[i][i] = 1
 
    while x > 0:
        if x % 2 == 1:
            ans = matrix_mul(ans,B)
        B = matrix_mul(B,B)
 
        x//=2
    return ans

N,M,T = map(int,stdin.readline().split())

H = [[0] * N for i in range(N)]
for i in range(M):
    a,b = map(int,stdin.readline().split())
    a -= 1
    b -= 1
    H[a][b] = 1

A = [[0] * N]
A[0][0] = 1

ans = matrix_mul(A,matrix_pow(H,T))
#print (ans)
print (sum(ans[0]))
0