結果

問題 No.2565 はじめてのおつかい
ユーザー ymskskyymsksky
提出日時 2024-04-09 23:43:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 766 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 96,264 KB
最終ジャッジ日時 2024-10-02 00:39:46
合計ジャッジ時間 24,172 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,992 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 271 ms
96,160 KB
testcase_04 AC 167 ms
96,264 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 629 ms
89,408 KB
testcase_07 AC 404 ms
83,040 KB
testcase_08 AC 418 ms
82,576 KB
testcase_09 AC 571 ms
88,276 KB
testcase_10 AC 470 ms
84,004 KB
testcase_11 AC 637 ms
90,748 KB
testcase_12 AC 313 ms
81,256 KB
testcase_13 AC 465 ms
84,140 KB
testcase_14 AC 566 ms
88,100 KB
testcase_15 AC 672 ms
89,568 KB
testcase_16 AC 147 ms
92,356 KB
testcase_17 AC 80 ms
77,168 KB
testcase_18 AC 88 ms
81,840 KB
testcase_19 AC 595 ms
89,816 KB
testcase_20 AC 514 ms
88,176 KB
testcase_21 AC 359 ms
86,220 KB
testcase_22 AC 251 ms
82,900 KB
testcase_23 AC 419 ms
84,296 KB
testcase_24 AC 168 ms
78,912 KB
testcase_25 AC 630 ms
89,940 KB
testcase_26 AC 437 ms
84,052 KB
testcase_27 AC 362 ms
85,800 KB
testcase_28 AC 637 ms
89,124 KB
testcase_29 AC 511 ms
90,012 KB
testcase_30 AC 350 ms
88,804 KB
testcase_31 AC 506 ms
88,328 KB
testcase_32 AC 369 ms
83,496 KB
testcase_33 AC 499 ms
87,196 KB
testcase_34 AC 766 ms
91,144 KB
testcase_35 AC 306 ms
89,148 KB
testcase_36 AC 501 ms
88,096 KB
testcase_37 AC 375 ms
84,304 KB
testcase_38 AC 539 ms
88,332 KB
testcase_39 AC 584 ms
88,020 KB
testcase_40 AC 408 ms
90,184 KB
testcase_41 AC 484 ms
91,588 KB
testcase_42 AC 465 ms
85,396 KB
testcase_43 AC 408 ms
85,568 KB
testcase_44 AC 438 ms
83,120 KB
testcase_45 AC 265 ms
80,868 KB
testcase_46 AC 667 ms
90,056 KB
testcase_47 AC 506 ms
87,552 KB
testcase_48 AC 412 ms
83,396 KB
testcase_49 AC 299 ms
81,212 KB
testcase_50 AC 501 ms
89,344 KB
testcase_51 AC 39 ms
52,992 KB
testcase_52 AC 447 ms
90,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n, m = map(int, input().split())
edges = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    u, v = u - 1, v - 1
    edges[u].append(v)

INF = float("inf")
def dijkstra(s, g):
    dist = [INF] * n
    que = [(0, s)]
    heapq.heapify(que)
    while que:
        cost, crt = heapq.heappop(que)
        if dist[crt] <= cost:
            continue
        dist[crt] = cost
        for nxt in edges[crt]:
            if dist[nxt] <= cost + 1:
                continue
            heapq.heappush(que, (cost + 1, nxt))
    return dist[g]

ans = INF
for l in ((0, n - 1, n - 2, 0), (0, n - 2, n - 1, 0)):
    tmp = 0
    for a, b in zip(l, l[1:]):
        tmp += dijkstra(a, b)
    ans = min(ans, tmp)
print(-1 if ans == INF else ans)
0