結果

問題 No.1340 おーじ君をさがせ
ユーザー shinchanshinchan
提出日時 2020-09-22 20:38:24
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 705 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 78,060 KB
最終ジャッジ日時 2024-05-05 02:26:21
合計ジャッジ時間 13,744 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 WA -
testcase_02 AC 34 ms
52,352 KB
testcase_03 AC 34 ms
52,396 KB
testcase_04 AC 35 ms
52,352 KB
testcase_05 AC 35 ms
52,480 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 38 ms
52,736 KB
testcase_08 AC 36 ms
52,352 KB
testcase_09 WA -
testcase_10 AC 54 ms
65,152 KB
testcase_11 WA -
testcase_12 AC 78 ms
71,808 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 71 ms
70,912 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 46 ms
63,232 KB
testcase_21 AC 201 ms
76,844 KB
testcase_22 AC 410 ms
76,832 KB
testcase_23 AC 198 ms
76,800 KB
testcase_24 AC 726 ms
78,060 KB
testcase_25 AC 94 ms
76,416 KB
testcase_26 AC 81 ms
76,416 KB
testcase_27 AC 77 ms
76,628 KB
testcase_28 AC 94 ms
76,656 KB
testcase_29 AC 72 ms
74,468 KB
testcase_30 AC 213 ms
77,088 KB
testcase_31 AC 734 ms
77,952 KB
testcase_32 AC 664 ms
77,824 KB
testcase_33 AC 659 ms
77,312 KB
testcase_34 AC 611 ms
77,184 KB
testcase_35 AC 731 ms
77,440 KB
testcase_36 WA -
testcase_37 AC 65 ms
72,960 KB
testcase_38 AC 734 ms
77,792 KB
testcase_39 AC 249 ms
77,340 KB
testcase_40 AC 246 ms
77,568 KB
testcase_41 AC 253 ms
77,312 KB
testcase_42 AC 42 ms
59,136 KB
testcase_43 AC 44 ms
59,392 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 200 ms
77,000 KB
testcase_47 AC 210 ms
76,800 KB
testcase_48 AC 228 ms
77,156 KB
testcase_49 AC 213 ms
76,548 KB
testcase_50 AC 218 ms
75,904 KB
testcase_51 AC 215 ms
76,188 KB
testcase_52 AC 339 ms
76,648 KB
testcase_53 AC 363 ms
76,672 KB
testcase_54 AC 361 ms
76,188 KB
testcase_55 AC 297 ms
77,184 KB
testcase_56 AC 39 ms
60,068 KB
testcase_57 AC 40 ms
60,160 KB
testcase_58 AC 32 ms
51,968 KB
testcase_59 AC 143 ms
76,160 KB
testcase_60 AC 33 ms
52,480 KB
testcase_61 AC 148 ms
76,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(n, m, t) = map(int,input().split())

#行列の積
def mul(a, b):
    c = [[0 for j in range(n)] for i in range(n)]
    for i in range(n):
        for j in range(n):
            for k in range(n):
                c[i][j] |= a[i][k] & b[k][j]
    return c

#有向グラフを行列に置き換える
G = [[0 for j in range(n)] for i in range(n)]

for i in range(m):
    (a, b) = map(int,input().split())
    G[b][a] = 1

# A = G ** T
A = [[0 for j in range(n)] for i in range(n)]

for i in range(n):
    A[i][i] = 1

while t:
    if t % 2 == 1:
        A = mul(A, G)
    G = mul(G, G)
    t = t // 2

#answer
ans = 0
for i in range(n):
    ans += A[i][0]

if ans == 0:
    print(-1)
else:
    print(ans)
0