結果

問題 No.2565 はじめてのおつかい
ユーザー ありあけありあけ
提出日時 2024-10-05 17:28:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 671 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 35,632 KB
最終ジャッジ日時 2024-10-05 17:28:54
合計ジャッジ時間 19,382 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 671 ms
35,632 KB
testcase_04 AC 579 ms
35,628 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 440 ms
16,580 KB
testcase_07 AC 240 ms
13,696 KB
testcase_08 AC 197 ms
14,808 KB
testcase_09 AC 401 ms
15,916 KB
testcase_10 AC 265 ms
15,292 KB
testcase_11 AC 503 ms
23,180 KB
testcase_12 AC 210 ms
12,544 KB
testcase_13 AC 280 ms
14,968 KB
testcase_14 AC 392 ms
19,020 KB
testcase_15 AC 429 ms
18,600 KB
testcase_16 AC 323 ms
22,908 KB
testcase_17 AC 96 ms
12,780 KB
testcase_18 AC 108 ms
14,312 KB
testcase_19 AC 452 ms
23,144 KB
testcase_20 AC 407 ms
22,660 KB
testcase_21 AC 368 ms
22,516 KB
testcase_22 AC 206 ms
17,196 KB
testcase_23 AC 257 ms
17,252 KB
testcase_24 AC 65 ms
12,160 KB
testcase_25 AC 408 ms
22,640 KB
testcase_26 AC 264 ms
16,952 KB
testcase_27 AC 347 ms
22,848 KB
testcase_28 AC 449 ms
23,160 KB
testcase_29 AC 489 ms
24,048 KB
testcase_30 AC 365 ms
22,656 KB
testcase_31 AC 396 ms
22,820 KB
testcase_32 AC 255 ms
17,100 KB
testcase_33 AC 393 ms
22,600 KB
testcase_34 AC 445 ms
19,776 KB
testcase_35 AC 368 ms
23,352 KB
testcase_36 AC 418 ms
23,104 KB
testcase_37 AC 240 ms
17,024 KB
testcase_38 AC 421 ms
19,908 KB
testcase_39 AC 377 ms
18,248 KB
testcase_40 AC 427 ms
24,020 KB
testcase_41 AC 452 ms
24,612 KB
testcase_42 AC 286 ms
17,040 KB
testcase_43 AC 373 ms
19,048 KB
testcase_44 AC 217 ms
14,688 KB
testcase_45 AC 123 ms
13,696 KB
testcase_46 AC 445 ms
19,156 KB
testcase_47 AC 364 ms
14,964 KB
testcase_48 AC 280 ms
14,960 KB
testcase_49 AC 211 ms
12,288 KB
testcase_50 AC 467 ms
15,616 KB
testcase_51 AC 27 ms
10,752 KB
testcase_52 AC 340 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
from collections import defaultdict
from collections import deque
graph = defaultdict(list)
for i in range(M):
    u,v = map(int,input().split())
    graph[u-1].append(v-1)
INF = 10**18

######print(graph)
def bfs(start,goal):
    dist = [INF]*(N)
    dist[start] = 0
    quene = deque()
    quene.append(start)
    while quene:
        v=quene.popleft()

        for i in graph[v]:
            if dist[i] >= dist[v]+1:
                    dist[i] = dist[v]+1
                    quene.append(i)
                    continue

    return dist[goal]

a = bfs(0,N-1)
b = bfs(0,N-2)
c = bfs(N-1,0)
d = bfs(N-1,N-2)
e = bfs(N-2,0)
f = bfs(N-2,N-1)

if INF <= (a+d+e) and INF <= (b+c+f):
    print(-1)
    exit()


print(min((a+d+e),(b+c+f)))
0