結果

問題 No.2565 はじめてのおつかい
ユーザー あ
提出日時 2023-12-14 00:43:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 90,180 KB
最終ジャッジ日時 2024-09-27 05:36:46
合計ジャッジ時間 8,653 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,192 KB
testcase_01 AC 40 ms
54,016 KB
testcase_02 AC 39 ms
54,304 KB
testcase_03 AC 178 ms
90,180 KB
testcase_04 AC 143 ms
89,968 KB
testcase_05 AC 38 ms
54,116 KB
testcase_06 AC 134 ms
79,972 KB
testcase_07 AC 107 ms
78,116 KB
testcase_08 AC 110 ms
79,156 KB
testcase_09 AC 127 ms
79,400 KB
testcase_10 AC 110 ms
79,640 KB
testcase_11 AC 175 ms
84,464 KB
testcase_12 AC 94 ms
76,808 KB
testcase_13 AC 112 ms
78,908 KB
testcase_14 AC 137 ms
81,828 KB
testcase_15 AC 153 ms
81,056 KB
testcase_16 AC 133 ms
85,776 KB
testcase_17 AC 78 ms
77,368 KB
testcase_18 AC 80 ms
79,712 KB
testcase_19 AC 153 ms
82,788 KB
testcase_20 AC 141 ms
82,440 KB
testcase_21 AC 147 ms
82,508 KB
testcase_22 AC 114 ms
80,736 KB
testcase_23 AC 114 ms
80,504 KB
testcase_24 AC 81 ms
77,440 KB
testcase_25 AC 155 ms
82,796 KB
testcase_26 AC 119 ms
80,196 KB
testcase_27 AC 140 ms
83,328 KB
testcase_28 AC 160 ms
82,860 KB
testcase_29 AC 167 ms
85,212 KB
testcase_30 AC 154 ms
83,940 KB
testcase_31 AC 160 ms
82,788 KB
testcase_32 AC 118 ms
80,480 KB
testcase_33 AC 152 ms
83,604 KB
testcase_34 AC 152 ms
81,936 KB
testcase_35 AC 149 ms
84,844 KB
testcase_36 AC 158 ms
83,428 KB
testcase_37 AC 115 ms
80,484 KB
testcase_38 AC 143 ms
81,928 KB
testcase_39 AC 141 ms
81,228 KB
testcase_40 AC 156 ms
84,780 KB
testcase_41 AC 163 ms
85,596 KB
testcase_42 AC 120 ms
79,984 KB
testcase_43 AC 131 ms
81,572 KB
testcase_44 AC 116 ms
79,080 KB
testcase_45 AC 93 ms
77,864 KB
testcase_46 AC 148 ms
81,268 KB
testcase_47 AC 123 ms
78,756 KB
testcase_48 AC 120 ms
79,004 KB
testcase_49 AC 93 ms
76,836 KB
testcase_50 AC 134 ms
78,536 KB
testcase_51 AC 38 ms
54,780 KB
testcase_52 AC 113 ms
77,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def bfs(s):
    dist = [inf] * n
    dist[s] = 0
    q = deque()
    q.append(s)
    while q:
        now = q.popleft()
        for nex in g[now]:
            if dist[nex] != inf:
                continue
            dist[nex] = dist[now] + 1
            q.append(nex)
    return dist

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

inf = 10 ** 18

d = {
    0 : bfs(0),
    n - 2 : bfs(n - 2),
    n - 1 : bfs(n - 1)
}

ans1 = d[0][n - 2] + d[n - 2][n - 1] + d[n - 1][0]
ans2 = d[0][n - 1] + d[n - 1][n - 2] + d[n - 2][0]

ans = min(ans1, ans2)
if ans >= inf:
    print(-1)
else:
    print(ans)
0