結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,760 KB
testcase_01 AC 39 ms
53,888 KB
testcase_02 AC 40 ms
54,144 KB
testcase_03 AC 177 ms
90,240 KB
testcase_04 AC 141 ms
89,984 KB
testcase_05 WA -
testcase_06 AC 147 ms
79,872 KB
testcase_07 AC 112 ms
78,208 KB
testcase_08 AC 122 ms
79,488 KB
testcase_09 AC 142 ms
79,232 KB
testcase_10 AC 132 ms
80,000 KB
testcase_11 AC 196 ms
84,480 KB
testcase_12 AC 101 ms
77,360 KB
testcase_13 AC 130 ms
78,592 KB
testcase_14 AC 178 ms
82,520 KB
testcase_15 AC 167 ms
81,664 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 168 ms
83,328 KB
testcase_20 AC 157 ms
82,688 KB
testcase_21 AC 140 ms
82,432 KB
testcase_22 WA -
testcase_23 AC 121 ms
80,512 KB
testcase_24 WA -
testcase_25 AC 167 ms
83,456 KB
testcase_26 AC 125 ms
80,128 KB
testcase_27 WA -
testcase_28 AC 160 ms
83,280 KB
testcase_29 AC 184 ms
85,120 KB
testcase_30 WA -
testcase_31 AC 154 ms
82,816 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 176 ms
82,560 KB
testcase_35 WA -
testcase_36 AC 168 ms
84,224 KB
testcase_37 AC 116 ms
80,384 KB
testcase_38 WA -
testcase_39 AC 178 ms
81,872 KB
testcase_40 WA -
testcase_41 AC 174 ms
85,760 KB
testcase_42 AC 126 ms
79,872 KB
testcase_43 WA -
testcase_44 AC 134 ms
80,000 KB
testcase_45 WA -
testcase_46 AC 173 ms
81,920 KB
testcase_47 AC 135 ms
79,104 KB
testcase_48 AC 137 ms
79,616 KB
testcase_49 AC 105 ms
77,696 KB
testcase_50 AC 138 ms
78,592 KB
testcase_51 AC 39 ms
54,016 KB
testcase_52 AC 115 ms
77,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n, m = map(int, input().split())
g = [[] for _ in range(n)]
for i in range(m):
    u, v = map(lambda x: x-1, map(int, input().split()))
    g[u].append(v)
    
q = deque([0])
dist = [-1]*n
dist[0] = 0

while q:
    v = q.popleft()
    for v2 in g[v]:
        if dist[v2]!=-1: continue
        dist[v2] = dist[v] + 1
        q.append(v2)
        
if dist[n-2]==-1 and dist[n-1]==-1: exit(print('No'))

#  町nから
q = deque([n-1])
dist2 = [-1]*n
dist2[n-1] = 0

while q:
    v = q.popleft()
    for v2 in g[v]:
        if dist2[v2]!=-1: continue
        dist2[v2] = dist2[v] + 1
        q.append(v2)
        
#  町n-1から
q = deque([n-2])
dist3 = [-1]*n
dist3[n-2] = 0

while q:
    v = q.popleft()
    for v2 in g[v]:
        if dist3[v2]!=-1: continue
        dist3[v2] = dist3[v] + 1
        q.append(v2)
        
ans = 10**18
if dist[n-2]!=-1 and dist[n-1]==-1:
    if dist3[n-1]!=-1 and dist2[0]!=-1:
        ans = min(ans, dist[n-2] + dist3[n-1] + dist2[0])
    if dist3[n-1]!=-1 and dist2[n-2]!=-1 and dist3[0]!=-1:
        ans = min(ans, dist[n-2]+dist3[n-1]+dist2[n-2]+dist3[0])
elif dist[n-2]==-1 and dist[n-1]!=-1:
    if dist2[n-2]!=-1 and dist3[0]!=-1:
        ans = min(ans, dist[n-1]+dist2[n-2]+dist3[0])
    if dist2[n-2]!=-1 and dist3[n-1]!=-1 and dist2[0]!=-1:
        ans = min(ans, dist[n-1]+dist2[n-2]+dist3[n-1]+dist2[0])
else:
    if dist3[n-1]!=-1 and dist2[0]!=-1:
        ans = min(ans, dist[n-2] + dist3[n-1] + dist2[0])
    if dist3[n-1]!=-1 and dist2[n-2]!=-1 and dist3[0]!=-1:
        ans = min(ans, dist[n-2]+dist3[n-1]+dist2[n-2]+dist3[0])
    if dist2[n-2]!=-1 and dist3[0]!=-1:
        ans = min(ans, dist[n-1]+dist2[n-2]+dist3[0])
    if dist2[n-2]!=-1 and dist3[n-1]!=-1 and dist2[0]!=-1:
        ans = min(ans, dist[n-1]+dist2[n-2]+dist3[n-1]+dist2[0])

if ans==10**18: print(-1)
else: print(ans)
0