結果

問題 No.2565 はじめてのおつかい
ユーザー かもめのうでかもめのうで
提出日時 2023-12-02 16:17:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,237 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 90,240 KB
最終ジャッジ日時 2024-09-26 20:06:09
合計ジャッジ時間 8,647 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,632 KB
testcase_01 AC 39 ms
53,632 KB
testcase_02 AC 37 ms
53,888 KB
testcase_03 AC 165 ms
89,952 KB
testcase_04 AC 133 ms
90,240 KB
testcase_05 AC 36 ms
53,632 KB
testcase_06 AC 156 ms
79,668 KB
testcase_07 AC 103 ms
78,040 KB
testcase_08 AC 107 ms
79,424 KB
testcase_09 AC 127 ms
79,104 KB
testcase_10 AC 114 ms
79,360 KB
testcase_11 AC 165 ms
84,352 KB
testcase_12 AC 91 ms
76,744 KB
testcase_13 AC 110 ms
78,464 KB
testcase_14 AC 142 ms
81,972 KB
testcase_15 AC 143 ms
81,024 KB
testcase_16 AC 124 ms
85,992 KB
testcase_17 AC 77 ms
77,152 KB
testcase_18 AC 83 ms
79,744 KB
testcase_19 AC 153 ms
82,816 KB
testcase_20 AC 139 ms
82,420 KB
testcase_21 AC 141 ms
82,432 KB
testcase_22 AC 106 ms
80,256 KB
testcase_23 AC 110 ms
80,212 KB
testcase_24 AC 75 ms
77,568 KB
testcase_25 AC 134 ms
82,560 KB
testcase_26 WA -
testcase_27 AC 132 ms
82,724 KB
testcase_28 AC 148 ms
82,108 KB
testcase_29 WA -
testcase_30 AC 138 ms
83,284 KB
testcase_31 AC 139 ms
82,560 KB
testcase_32 AC 109 ms
79,744 KB
testcase_33 AC 142 ms
83,104 KB
testcase_34 AC 143 ms
81,536 KB
testcase_35 AC 139 ms
84,480 KB
testcase_36 AC 154 ms
82,952 KB
testcase_37 AC 109 ms
79,872 KB
testcase_38 AC 138 ms
81,792 KB
testcase_39 WA -
testcase_40 AC 151 ms
84,992 KB
testcase_41 AC 155 ms
85,760 KB
testcase_42 AC 113 ms
79,724 KB
testcase_43 AC 134 ms
81,664 KB
testcase_44 AC 115 ms
78,848 KB
testcase_45 AC 89 ms
77,440 KB
testcase_46 AC 147 ms
80,896 KB
testcase_47 AC 121 ms
78,976 KB
testcase_48 AC 116 ms
78,848 KB
testcase_49 AC 93 ms
76,800 KB
testcase_50 AC 128 ms
78,208 KB
testcase_51 AC 39 ms
53,632 KB
testcase_52 AC 121 ms
76,996 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:
    print(-1)
else:
    print(min(dist1[n-2]+dist2[n-1]+dist3[0], dist1[n-1]+dist3[n-2]+dist2[0]))
0