結果

問題 No.2565 はじめてのおつかい
ユーザー かもめのうでかもめのうで
提出日時 2023-12-02 20:02:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 680 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 90,240 KB
最終ジャッジ日時 2024-09-26 21:35:48
合計ジャッジ時間 10,366 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,504 KB
testcase_01 AC 51 ms
53,376 KB
testcase_02 AC 46 ms
53,888 KB
testcase_03 AC 222 ms
89,856 KB
testcase_04 AC 166 ms
90,240 KB
testcase_05 AC 46 ms
53,504 KB
testcase_06 AC 182 ms
80,128 KB
testcase_07 AC 133 ms
78,080 KB
testcase_08 AC 136 ms
79,232 KB
testcase_09 AC 165 ms
79,232 KB
testcase_10 AC 149 ms
79,744 KB
testcase_11 AC 209 ms
84,352 KB
testcase_12 AC 118 ms
76,800 KB
testcase_13 AC 140 ms
78,720 KB
testcase_14 AC 173 ms
81,792 KB
testcase_15 AC 193 ms
81,152 KB
testcase_16 AC 186 ms
85,760 KB
testcase_17 AC 106 ms
77,568 KB
testcase_18 AC 109 ms
79,360 KB
testcase_19 AC 199 ms
82,560 KB
testcase_20 AC 186 ms
82,688 KB
testcase_21 AC 180 ms
82,816 KB
testcase_22 AC 145 ms
80,640 KB
testcase_23 AC 153 ms
80,384 KB
testcase_24 AC 104 ms
77,440 KB
testcase_25 AC 194 ms
82,816 KB
testcase_26 AC 155 ms
80,128 KB
testcase_27 AC 179 ms
83,200 KB
testcase_28 AC 211 ms
82,432 KB
testcase_29 AC 220 ms
85,120 KB
testcase_30 AC 193 ms
83,712 KB
testcase_31 AC 199 ms
82,560 KB
testcase_32 AC 150 ms
80,256 KB
testcase_33 AC 202 ms
83,456 KB
testcase_34 AC 199 ms
81,920 KB
testcase_35 AC 187 ms
84,736 KB
testcase_36 AC 208 ms
83,584 KB
testcase_37 AC 155 ms
80,128 KB
testcase_38 AC 200 ms
82,048 KB
testcase_39 AC 186 ms
81,152 KB
testcase_40 AC 204 ms
84,864 KB
testcase_41 AC 213 ms
85,504 KB
testcase_42 AC 152 ms
80,000 KB
testcase_43 AC 179 ms
81,664 KB
testcase_44 AC 141 ms
79,232 KB
testcase_45 AC 115 ms
77,568 KB
testcase_46 AC 191 ms
81,280 KB
testcase_47 AC 154 ms
78,848 KB
testcase_48 AC 146 ms
78,976 KB
testcase_49 AC 118 ms
77,056 KB
testcase_50 AC 169 ms
78,592 KB
testcase_51 AC 47 ms
53,376 KB
testcase_52 AC 135 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

def culc_dist(st: int, g: list):
    dist = [1<<60]*n
    q = deque()
    q.append(st)
    dist[st] = 0
    while q:
        v = q.popleft()
        for nv in g[v]:
            if dist[nv] == 1<<60:
                dist[nv] = dist[v] + 1
                q.append(nv)
    return dist

dist1 = culc_dist(0, g)
dist2 = culc_dist(n-2, g)
dist3 = culc_dist(n-1, g)
ans1 = dist1[n-2]+dist2[n-1]+dist3[0]
ans2 = dist1[n-1]+dist3[n-2]+dist2[0]
ans = min(ans1, ans2)
print(ans if ans < 1<<60 else -1)
0