結果

問題 No.1340 おーじ君をさがせ
ユーザー hir355hir355
提出日時 2021-01-15 22:39:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 817 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 168,064 KB
最終ジャッジ日時 2024-11-26 20:00:25
合計ジャッジ時間 45,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,600 KB
testcase_01 AC 39 ms
140,672 KB
testcase_02 AC 37 ms
57,216 KB
testcase_03 AC 37 ms
142,208 KB
testcase_04 AC 37 ms
57,728 KB
testcase_05 AC 36 ms
143,104 KB
testcase_06 AC 36 ms
57,600 KB
testcase_07 AC 37 ms
142,464 KB
testcase_08 AC 37 ms
57,344 KB
testcase_09 AC 37 ms
51,712 KB
testcase_10 AC 69 ms
68,224 KB
testcase_11 AC 941 ms
80,512 KB
testcase_12 AC 239 ms
77,120 KB
testcase_13 AC 544 ms
78,336 KB
testcase_14 AC 1,372 ms
82,688 KB
testcase_15 AC 1,150 ms
81,920 KB
testcase_16 AC 215 ms
76,928 KB
testcase_17 AC 435 ms
78,080 KB
testcase_18 AC 722 ms
79,872 KB
testcase_19 AC 115 ms
76,160 KB
testcase_20 AC 100 ms
76,464 KB
testcase_21 AC 333 ms
77,440 KB
testcase_22 AC 768 ms
78,464 KB
testcase_23 AC 341 ms
77,184 KB
testcase_24 AC 1,489 ms
80,128 KB
testcase_25 AC 126 ms
76,672 KB
testcase_26 AC 110 ms
76,416 KB
testcase_27 AC 108 ms
76,436 KB
testcase_28 AC 137 ms
77,184 KB
testcase_29 AC 92 ms
76,416 KB
testcase_30 AC 349 ms
77,184 KB
testcase_31 AC 1,401 ms
79,616 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 37 ms
51,840 KB
testcase_37 AC 70 ms
72,576 KB
testcase_38 TLE -
testcase_39 AC 1,006 ms
80,640 KB
testcase_40 AC 1,036 ms
81,408 KB
testcase_41 AC 1,048 ms
81,536 KB
testcase_42 AC 39 ms
52,352 KB
testcase_43 AC 47 ms
59,648 KB
testcase_44 AC 57 ms
65,152 KB
testcase_45 AC 54 ms
64,000 KB
testcase_46 AC 935 ms
81,280 KB
testcase_47 AC 945 ms
81,664 KB
testcase_48 AC 1,095 ms
81,536 KB
testcase_49 AC 938 ms
80,640 KB
testcase_50 AC 938 ms
80,128 KB
testcase_51 AC 928 ms
80,512 KB
testcase_52 AC 1,837 ms
82,560 KB
testcase_53 AC 1,554 ms
82,944 KB
testcase_54 AC 1,868 ms
82,432 KB
testcase_55 AC 1,471 ms
83,840 KB
testcase_56 AC 46 ms
60,416 KB
testcase_57 AC 46 ms
60,416 KB
testcase_58 AC 38 ms
52,096 KB
testcase_59 AC 539 ms
78,208 KB
testcase_60 AC 37 ms
51,840 KB
testcase_61 AC 624 ms
168,064 KB
権限があれば一括ダウンロードができます

ソースコード

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][b] = 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