結果

問題 No.2565 はじめてのおつかい
ユーザー とろちゃとろちゃ
提出日時 2023-12-02 15:57:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 1,938 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 121,596 KB
最終ジャッジ日時 2024-09-26 19:35:28
合計ジャッジ時間 10,127 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,760 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 45 ms
53,760 KB
testcase_03 AC 251 ms
121,596 KB
testcase_04 AC 210 ms
120,964 KB
testcase_05 AC 44 ms
53,632 KB
testcase_06 AC 167 ms
91,264 KB
testcase_07 AC 127 ms
83,968 KB
testcase_08 AC 132 ms
85,888 KB
testcase_09 AC 152 ms
88,960 KB
testcase_10 AC 140 ms
85,504 KB
testcase_11 AC 220 ms
104,576 KB
testcase_12 AC 105 ms
79,616 KB
testcase_13 AC 134 ms
82,816 KB
testcase_14 AC 183 ms
95,360 KB
testcase_15 AC 177 ms
94,976 KB
testcase_16 AC 156 ms
100,736 KB
testcase_17 AC 85 ms
77,440 KB
testcase_18 AC 93 ms
80,384 KB
testcase_19 AC 207 ms
101,504 KB
testcase_20 AC 181 ms
95,232 KB
testcase_21 AC 172 ms
96,128 KB
testcase_22 AC 127 ms
85,888 KB
testcase_23 AC 131 ms
84,096 KB
testcase_24 AC 88 ms
77,696 KB
testcase_25 AC 200 ms
98,432 KB
testcase_26 AC 150 ms
90,880 KB
testcase_27 AC 179 ms
96,384 KB
testcase_28 AC 218 ms
101,376 KB
testcase_29 AC 233 ms
107,136 KB
testcase_30 AC 199 ms
102,384 KB
testcase_31 AC 205 ms
99,584 KB
testcase_32 AC 134 ms
84,096 KB
testcase_33 AC 174 ms
94,080 KB
testcase_34 AC 192 ms
98,304 KB
testcase_35 AC 167 ms
91,776 KB
testcase_36 AC 206 ms
101,760 KB
testcase_37 AC 134 ms
84,096 KB
testcase_38 AC 192 ms
98,688 KB
testcase_39 AC 181 ms
93,824 KB
testcase_40 AC 199 ms
98,816 KB
testcase_41 AC 220 ms
106,624 KB
testcase_42 AC 147 ms
89,472 KB
testcase_43 AC 188 ms
96,000 KB
testcase_44 AC 139 ms
86,656 KB
testcase_45 AC 110 ms
82,176 KB
testcase_46 AC 187 ms
96,512 KB
testcase_47 AC 139 ms
83,712 KB
testcase_48 AC 137 ms
83,712 KB
testcase_49 AC 103 ms
80,000 KB
testcase_50 AC 148 ms
85,632 KB
testcase_51 AC 43 ms
53,632 KB
testcase_52 AC 144 ms
88,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit;pypyjit.set_param("max_unroll_recursion=-1")
import os
import sys

# from bisect import *
from collections import *

# from datetime import *
# from decimal import *  # PyPyだと遅い
# from heapq import *
from itertools import *

# from math import gcd, lcm
# from random import *
# from string import *

# import numpy as np
# from atcoder.dsu import *
# from atcoder.segtree import *
# from more_itertools import *
# from sortedcontainers import *

# sys.setrecursionlimit(10**7)  # PyPyは呪文を付ける
# sys.set_int_max_str_digits(0)
INF = 1 << 61
MOD = 998244353
# MOD = 10**9 + 7
IS_ATCODER = os.getenv("ATCODER", 0)

File = sys.stdin


def input():
    return File.readline().replace("\n", "")


# ///////////////////////////////////////////////////////////////////////////
def bfs(G, start):
    """
    グラフで幅優先探索をする関数
    seenとdistを配列で管理
    何度も繰り返す場合はseenの生成がO(N)なので
    辞書で管理するものを使う

    引数:
    G (defaultdict): グラフ
    start (int): 始点

    戻り値:
    dist (list): 始点からの距離
    """
    que = deque()
    seen = [0] * N
    dist = [INF] * N

    que.append(start)
    seen[start] = True
    dist[start] = 0
    while que:
        for _ in range(len(que)):
            pop = que.popleft()
            for i in G[pop]:
                if seen[i] == False:
                    seen[i] = True
                    dist[i] = dist[pop] + 1
                    que.append(i)

    return dist


N, M = map(int, input().split())
edges = [list(map(int, input().split())) for _ in range(M)]

G = [set() for _ in range(N)]
for i, j in edges:
    G[i - 1].add(j - 1)

dist1 = bfs(G, 0)
dist2 = bfs(G, N - 1)
dist3 = bfs(G, N - 2)
ans = INF

ans = min(ans, dist1[N - 1] + dist2[N - 2] + dist3[0])
ans = min(ans, dist1[N - 2] + dist3[N - 1] + dist2[0])

print(ans if ans != INF else -1)
0