結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,608 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 45 ms
51,840 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 41 ms
52,096 KB
testcase_06 WA -
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 41 ms
51,712 KB
testcase_10 AC 58 ms
64,256 KB
testcase_11 AC 156 ms
75,776 KB
testcase_12 WA -
testcase_13 AC 265 ms
77,056 KB
testcase_14 AC 259 ms
75,904 KB
testcase_15 AC 222 ms
75,904 KB
testcase_16 AC 68 ms
65,920 KB
testcase_17 AC 117 ms
75,776 KB
testcase_18 AC 156 ms
76,032 KB
testcase_19 AC 59 ms
63,360 KB
testcase_20 AC 52 ms
61,056 KB
testcase_21 AC 165 ms
76,032 KB
testcase_22 AC 795 ms
80,768 KB
testcase_23 AC 165 ms
76,032 KB
testcase_24 AC 551 ms
76,672 KB
testcase_25 AC 78 ms
73,728 KB
testcase_26 AC 72 ms
69,888 KB
testcase_27 AC 67 ms
68,096 KB
testcase_28 AC 83 ms
74,240 KB
testcase_29 AC 64 ms
66,816 KB
testcase_30 AC 173 ms
76,032 KB
testcase_31 AC 559 ms
77,056 KB
testcase_32 AC 521 ms
76,800 KB
testcase_33 AC 517 ms
76,416 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 41 ms
52,352 KB
testcase_37 AC 54 ms
63,744 KB
testcase_38 WA -
testcase_39 AC 194 ms
75,904 KB
testcase_40 AC 199 ms
76,672 KB
testcase_41 AC 200 ms
76,288 KB
testcase_42 WA -
testcase_43 AC 49 ms
59,136 KB
testcase_44 AC 52 ms
60,800 KB
testcase_45 AC 50 ms
59,904 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 182 ms
76,288 KB
testcase_49 AC 174 ms
76,416 KB
testcase_50 AC 175 ms
75,648 KB
testcase_51 AC 177 ms
75,648 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 51 ms
60,160 KB
testcase_57 AC 50 ms
60,544 KB
testcase_58 AC 41 ms
52,224 KB
testcase_59 WA -
testcase_60 AC 42 ms
51,712 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