結果

問題 No.2565 はじめてのおつかい
ユーザー poeMoonpoeMoon
提出日時 2023-12-06 11:35:35
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,347 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 306,704 KB
最終ジャッジ日時 2024-09-27 01:11:46
合計ジャッジ時間 9,923 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
62,072 KB
testcase_01 AC 39 ms
54,384 KB
testcase_02 AC 39 ms
53,992 KB
testcase_03 AC 186 ms
93,616 KB
testcase_04 AC 168 ms
93,620 KB
testcase_05 AC 37 ms
54,220 KB
testcase_06 AC 146 ms
80,904 KB
testcase_07 AC 112 ms
78,256 KB
testcase_08 AC 126 ms
80,112 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 94 ms
77,184 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 127 ms
86,020 KB
testcase_17 AC 81 ms
77,592 KB
testcase_18 AC 83 ms
78,644 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 198 ms
87,920 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 TLE -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from collections import deque
#import itertools

def bfs(start, end):
    befores = deque([-1])
    nows = deque([start])
    cnt = 0
    while True:
        if len(nows) == 0:
            return -1
        cnt += 1
        for _ in range(len(nows)):
            now = nows.popleft()
            for after in graph[now]:
                before = befores.popleft()
                if after == end:
                    return cnt
                if after != before:
                    nows.append(after)
                    befores.append(now)

N, M = map(int, input().split())
graph = defaultdict(list)
for _ in range(M):
    u, v = map(int, input().split())
    graph[u - 1].append(v - 1)
#for i in range(N):
#    print(str(i) + ": ", end = "")
#    print(*graph[i])

# route1: 0 -> N - 2 -> N - 1 -> 0
sec1 = bfs(0, N - 2)
sec2 = bfs(N - 2, N - 1)
sec3 = bfs(N - 1, 0)
route1 = sec1 + sec2 + sec3 if sec1 >= 0 and sec2 >= 0 and sec3 >= 0 else -1
# route2: 0 -> N - 1 -> N - 2 -> 0
sec1 = bfs(0, N - 1)
sec2 = bfs(N - 1, N - 2)
sec3 = bfs(N - 2, 0)
route2 = sec1 + sec2 + sec3 if sec1 >= 0 and sec2 >= 0 and sec3 >= 0 else -1
if route1 >= 0 and route2 >= 0:
    print(min(route1, route2))
elif route1 >= 0 and route2 < 0:
    print(route1)
elif route1 < 0 and route2 >= 0:
    print(route2)
else:
    print(-1)
0