結果

問題 No.1340 おーじ君をさがせ
ユーザー hir355hir355
提出日時 2021-01-15 22:37:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 825 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 168,412 KB
最終ジャッジ日時 2024-11-26 19:59:30
合計ジャッジ時間 45,960 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,856 KB
testcase_01 AC 40 ms
141,316 KB
testcase_02 AC 38 ms
57,344 KB
testcase_03 AC 39 ms
141,696 KB
testcase_04 WA -
testcase_05 AC 38 ms
141,888 KB
testcase_06 WA -
testcase_07 AC 38 ms
141,056 KB
testcase_08 AC 39 ms
57,600 KB
testcase_09 AC 39 ms
52,608 KB
testcase_10 AC 66 ms
68,864 KB
testcase_11 AC 750 ms
81,024 KB
testcase_12 WA -
testcase_13 AC 576 ms
78,976 KB
testcase_14 AC 1,440 ms
82,728 KB
testcase_15 AC 1,162 ms
81,992 KB
testcase_16 AC 217 ms
77,056 KB
testcase_17 AC 447 ms
78,336 KB
testcase_18 AC 716 ms
80,768 KB
testcase_19 AC 118 ms
76,544 KB
testcase_20 AC 96 ms
76,348 KB
testcase_21 AC 337 ms
77,440 KB
testcase_22 AC 778 ms
78,684 KB
testcase_23 AC 436 ms
77,692 KB
testcase_24 AC 1,469 ms
80,128 KB
testcase_25 AC 130 ms
77,440 KB
testcase_26 AC 111 ms
76,880 KB
testcase_27 AC 110 ms
76,864 KB
testcase_28 AC 140 ms
77,400 KB
testcase_29 AC 93 ms
76,672 KB
testcase_30 AC 373 ms
77,604 KB
testcase_31 AC 1,460 ms
80,032 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 40 ms
52,224 KB
testcase_37 AC 68 ms
73,344 KB
testcase_38 TLE -
testcase_39 AC 1,032 ms
81,748 KB
testcase_40 AC 1,073 ms
82,176 KB
testcase_41 AC 1,060 ms
81,920 KB
testcase_42 WA -
testcase_43 AC 45 ms
59,776 KB
testcase_44 AC 57 ms
65,920 KB
testcase_45 AC 58 ms
64,000 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 1,133 ms
82,304 KB
testcase_49 AC 966 ms
80,640 KB
testcase_50 AC 957 ms
81,280 KB
testcase_51 AC 957 ms
81,008 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 48 ms
60,544 KB
testcase_57 AC 48 ms
60,544 KB
testcase_58 AC 40 ms
52,352 KB
testcase_59 WA -
testcase_60 AC 39 ms
52,608 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 19
n, m, t = map(int, input().split())
mat = [[INF] * n for _ in range(n)]
for _ in range(m):
    a, b = map(int, input().split())
    mat[a - 1][b - 1] = 1
res = [[INF] * n for _ in range(n)]
for i in range(n):
    res[i][i] = 0
while t > 0:
    if t & 1:
        tmp = [[INF] * n for _ in range(n)]
        for i in range(n):
            for j in range(n):
                for k in range(n):
                    tmp[i][j] = min(tmp[i][j], res[i][k] + mat[k][j])
        res = [row[:] for row in tmp]
    tmp = [[INF] * n for _ in range(n)]
    for i in range(n):
        for j in range(n):
            for k in range(n):
                tmp[i][j] = min(tmp[i][j], mat[i][k] + mat[k][j])
    mat = [row[:] for row in tmp]
    t //= 2
ans = 0
for i in range(n):
    if res[0][i] < INF:
        ans += 1
print(ans)
0