結果

問題 No.2565 はじめてのおつかい
ユーザー titiatitia
提出日時 2023-12-15 00:58:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 90,544 KB
最終ジャッジ日時 2024-09-27 05:52:39
合計ジャッジ時間 9,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,788 KB
testcase_01 AC 38 ms
54,640 KB
testcase_02 AC 36 ms
54,688 KB
testcase_03 AC 176 ms
90,544 KB
testcase_04 AC 140 ms
90,480 KB
testcase_05 AC 37 ms
54,368 KB
testcase_06 AC 146 ms
79,920 KB
testcase_07 AC 110 ms
78,248 KB
testcase_08 AC 119 ms
79,272 KB
testcase_09 AC 135 ms
79,740 KB
testcase_10 AC 127 ms
79,468 KB
testcase_11 AC 178 ms
84,368 KB
testcase_12 AC 97 ms
77,596 KB
testcase_13 AC 124 ms
78,688 KB
testcase_14 AC 172 ms
81,796 KB
testcase_15 AC 161 ms
81,884 KB
testcase_16 AC 123 ms
86,036 KB
testcase_17 AC 80 ms
77,476 KB
testcase_18 AC 80 ms
79,300 KB
testcase_19 AC 158 ms
83,512 KB
testcase_20 AC 151 ms
82,736 KB
testcase_21 AC 155 ms
82,560 KB
testcase_22 AC 108 ms
80,564 KB
testcase_23 AC 118 ms
80,672 KB
testcase_24 AC 78 ms
77,552 KB
testcase_25 AC 159 ms
83,620 KB
testcase_26 AC 132 ms
80,056 KB
testcase_27 AC 138 ms
83,144 KB
testcase_28 AC 173 ms
83,280 KB
testcase_29 AC 178 ms
85,272 KB
testcase_30 AC 147 ms
83,836 KB
testcase_31 AC 155 ms
82,696 KB
testcase_32 AC 122 ms
80,260 KB
testcase_33 AC 148 ms
83,564 KB
testcase_34 AC 165 ms
83,004 KB
testcase_35 AC 147 ms
84,904 KB
testcase_36 AC 166 ms
84,280 KB
testcase_37 AC 112 ms
80,544 KB
testcase_38 AC 149 ms
82,072 KB
testcase_39 AC 151 ms
81,392 KB
testcase_40 AC 158 ms
85,080 KB
testcase_41 AC 164 ms
85,872 KB
testcase_42 AC 116 ms
80,044 KB
testcase_43 AC 137 ms
81,800 KB
testcase_44 AC 116 ms
79,256 KB
testcase_45 AC 91 ms
78,016 KB
testcase_46 AC 158 ms
81,760 KB
testcase_47 AC 126 ms
79,064 KB
testcase_48 AC 125 ms
79,936 KB
testcase_49 AC 96 ms
77,408 KB
testcase_50 AC 134 ms
78,820 KB
testcase_51 AC 37 ms
54,408 KB
testcase_52 AC 109 ms
77,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N,M=map(int,input().split())
E=[[] for i in range(N+1)]

for i in range(M):
    x,y=map(int,input().split())
    E[x].append(y)

def distance_from(x):
    DIS=[1<<30]*(N+1)
    DIS[x]=0

    Q=deque([x])

    while Q:
        x=Q.popleft()

        for to in E[x]:
            if DIS[to]>DIS[x]+1:
                DIS[to]=DIS[x]+1
                Q.append(to)

    return DIS

ONE=distance_from(1)
DN=distance_from(N-1)
DN1=distance_from(N)

ANS=ONE[N]+DN1[N-1]+DN[1]
ANS2=ONE[N-1]+DN[N]+DN1[1]

LA=min(ANS,ANS2)

if LA>10**7:
    print(-1)
else:
    print(LA)
0