結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,256 KB
testcase_01 WA -
testcase_02 AC 39 ms
53,960 KB
testcase_03 AC 38 ms
52,524 KB
testcase_04 AC 37 ms
52,948 KB
testcase_05 AC 38 ms
52,756 KB
testcase_06 AC 38 ms
52,676 KB
testcase_07 AC 39 ms
52,604 KB
testcase_08 AC 37 ms
52,748 KB
testcase_09 WA -
testcase_10 AC 54 ms
66,696 KB
testcase_11 WA -
testcase_12 AC 80 ms
73,648 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 75 ms
71,640 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 52 ms
63,712 KB
testcase_21 AC 218 ms
77,060 KB
testcase_22 AC 457 ms
76,744 KB
testcase_23 AC 219 ms
76,656 KB
testcase_24 AC 799 ms
77,932 KB
testcase_25 AC 96 ms
76,596 KB
testcase_26 AC 91 ms
76,920 KB
testcase_27 AC 88 ms
76,984 KB
testcase_28 AC 104 ms
76,596 KB
testcase_29 AC 72 ms
74,212 KB
testcase_30 AC 231 ms
76,768 KB
testcase_31 AC 809 ms
77,572 KB
testcase_32 AC 746 ms
77,328 KB
testcase_33 AC 737 ms
77,644 KB
testcase_34 AC 672 ms
77,564 KB
testcase_35 AC 796 ms
77,300 KB
testcase_36 WA -
testcase_37 AC 65 ms
74,732 KB
testcase_38 AC 805 ms
77,328 KB
testcase_39 AC 269 ms
77,176 KB
testcase_40 AC 279 ms
77,044 KB
testcase_41 AC 275 ms
76,980 KB
testcase_42 AC 42 ms
59,892 KB
testcase_43 AC 43 ms
59,528 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 224 ms
76,964 KB
testcase_47 AC 234 ms
76,992 KB
testcase_48 AC 249 ms
76,812 KB
testcase_49 AC 231 ms
76,364 KB
testcase_50 AC 228 ms
76,136 KB
testcase_51 AC 232 ms
76,000 KB
testcase_52 AC 381 ms
76,160 KB
testcase_53 AC 374 ms
76,464 KB
testcase_54 AC 381 ms
76,708 KB
testcase_55 AC 326 ms
77,132 KB
testcase_56 AC 45 ms
61,372 KB
testcase_57 AC 44 ms
60,372 KB
testcase_58 AC 39 ms
53,960 KB
testcase_59 AC 164 ms
76,416 KB
testcase_60 AC 38 ms
53,344 KB
testcase_61 AC 163 ms
76,008 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