結果

問題 No.2565 はじめてのおつかい
ユーザー かもめのうでかもめのうで
提出日時 2023-12-02 16:29:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,319 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,180 KB
最終ジャッジ日時 2024-09-26 20:21:47
合計ジャッジ時間 10,373 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 47 ms
53,632 KB
testcase_02 AC 46 ms
53,888 KB
testcase_03 AC 232 ms
90,180 KB
testcase_04 AC 168 ms
90,112 KB
testcase_05 AC 47 ms
53,504 KB
testcase_06 AC 181 ms
79,488 KB
testcase_07 AC 135 ms
77,824 KB
testcase_08 AC 137 ms
79,360 KB
testcase_09 AC 168 ms
78,976 KB
testcase_10 AC 145 ms
79,232 KB
testcase_11 AC 214 ms
84,224 KB
testcase_12 AC 114 ms
76,544 KB
testcase_13 AC 140 ms
78,464 KB
testcase_14 AC 175 ms
81,664 KB
testcase_15 AC 179 ms
80,768 KB
testcase_16 AC 165 ms
85,376 KB
testcase_17 AC 100 ms
77,056 KB
testcase_18 AC 104 ms
79,104 KB
testcase_19 AC 196 ms
82,304 KB
testcase_20 AC 180 ms
82,048 KB
testcase_21 AC 176 ms
82,560 KB
testcase_22 AC 142 ms
80,384 KB
testcase_23 AC 143 ms
80,000 KB
testcase_24 AC 104 ms
77,312 KB
testcase_25 AC 185 ms
82,176 KB
testcase_26 AC 145 ms
79,872 KB
testcase_27 AC 174 ms
83,072 KB
testcase_28 AC 203 ms
82,176 KB
testcase_29 AC 212 ms
85,120 KB
testcase_30 AC 185 ms
83,456 KB
testcase_31 AC 203 ms
82,560 KB
testcase_32 AC 155 ms
80,000 KB
testcase_33 AC 193 ms
83,072 KB
testcase_34 WA -
testcase_35 AC 181 ms
84,224 KB
testcase_36 AC 197 ms
83,200 KB
testcase_37 AC 142 ms
80,256 KB
testcase_38 AC 190 ms
81,792 KB
testcase_39 AC 171 ms
80,896 KB
testcase_40 AC 201 ms
84,864 KB
testcase_41 AC 214 ms
85,504 KB
testcase_42 AC 146 ms
79,488 KB
testcase_43 AC 178 ms
81,664 KB
testcase_44 AC 141 ms
78,976 KB
testcase_45 AC 117 ms
77,696 KB
testcase_46 AC 193 ms
80,896 KB
testcase_47 AC 152 ms
78,848 KB
testcase_48 AC 146 ms
78,848 KB
testcase_49 AC 114 ms
76,672 KB
testcase_50 AC 162 ms
78,336 KB
testcase_51 AC 47 ms
53,632 KB
testcase_52 AC 135 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# n, m = map(int, input().split())
# c = list(map(int, input().split()))

# cnt = [set() for _ in range(n)]
# for i in range(n):
#     cnt[c[i]-1].add(i)

# s = set()
# edge = [0]*n
# for _ in range(m):
#     v, u = map(int, input().split())
#     v -= 1
#     u -= 1
#     if c[v] == c[u]:
#         if (v, u) not in s and (u, v) not in s:
#             edge[c[v]-1] += 1
#             s.add((v, u))
#             s.add((u, v))

# ans = 0
# for e, t in zip(edge, cnt):
#     if len(t) == 0:
#         continue
#     ans += max(len(t)-1-e, 0)
# print(ans)

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)
from collections import deque

def culc_dist(st: int, g: list):
    dist = [-1]*n
    q = deque()
    q.append(st)
    dist[st] = 0
    while q:
        v = q.popleft()
        for nv in g[v]:
            if dist[nv] == -1:
                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)
if (dist1[n-2] == -1 or dist2[n-1] == -1 or dist3[0] == -1) and (dist3[n-3] == -1 or dist1[n-1] == -1 or dist2[0] == -1):
    print(-1)
else:
    print(min(dist1[n-2]+dist2[n-1]+dist3[0], dist1[n-1]+dist3[n-2]+dist2[0]))
0