結果

問題 No.2565 はじめてのおつかい
ユーザー navel_tosnavel_tos
提出日時 2023-12-02 15:18:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 1,468 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 159,172 KB
最終ジャッジ日時 2024-09-26 18:27:37
合計ジャッジ時間 13,321 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,280 KB
testcase_01 AC 35 ms
52,872 KB
testcase_02 AC 35 ms
52,532 KB
testcase_03 AC 511 ms
158,432 KB
testcase_04 AC 274 ms
159,172 KB
testcase_05 AC 34 ms
52,500 KB
testcase_06 AC 210 ms
88,212 KB
testcase_07 AC 148 ms
83,840 KB
testcase_08 AC 166 ms
87,096 KB
testcase_09 AC 190 ms
88,192 KB
testcase_10 AC 173 ms
86,664 KB
testcase_11 AC 360 ms
113,952 KB
testcase_12 AC 112 ms
78,224 KB
testcase_13 AC 171 ms
84,684 KB
testcase_14 AC 275 ms
100,320 KB
testcase_15 AC 252 ms
97,380 KB
testcase_16 AC 239 ms
98,084 KB
testcase_17 AC 93 ms
77,980 KB
testcase_18 AC 108 ms
83,120 KB
testcase_19 AC 292 ms
101,376 KB
testcase_20 AC 247 ms
95,844 KB
testcase_21 AC 244 ms
96,504 KB
testcase_22 AC 179 ms
90,568 KB
testcase_23 AC 194 ms
93,068 KB
testcase_24 AC 90 ms
77,952 KB
testcase_25 AC 254 ms
103,232 KB
testcase_26 AC 184 ms
89,716 KB
testcase_27 AC 254 ms
100,956 KB
testcase_28 AC 288 ms
105,252 KB
testcase_29 AC 344 ms
110,844 KB
testcase_30 AC 273 ms
101,652 KB
testcase_31 AC 284 ms
106,128 KB
testcase_32 AC 187 ms
90,864 KB
testcase_33 AC 282 ms
103,312 KB
testcase_34 AC 330 ms
106,160 KB
testcase_35 AC 235 ms
98,272 KB
testcase_36 AC 278 ms
103,024 KB
testcase_37 AC 181 ms
90,492 KB
testcase_38 AC 243 ms
95,936 KB
testcase_39 AC 238 ms
94,768 KB
testcase_40 AC 301 ms
106,612 KB
testcase_41 AC 340 ms
110,096 KB
testcase_42 AC 188 ms
92,888 KB
testcase_43 AC 238 ms
97,388 KB
testcase_44 AC 163 ms
86,404 KB
testcase_45 AC 134 ms
81,312 KB
testcase_46 AC 273 ms
98,016 KB
testcase_47 AC 159 ms
81,348 KB
testcase_48 AC 168 ms
85,436 KB
testcase_49 AC 110 ms
78,348 KB
testcase_50 AC 168 ms
83,744 KB
testcase_51 AC 35 ms
52,396 KB
testcase_52 AC 119 ms
79,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#緑以下I

N,M = map(int,input().split())

#G[i][x]: xは0なら行き、1なら帰り
G = [[[] for _ in range(2)] for _ in range(N)]
for _ in range(M):
    u,v = map(lambda x:int(x)-1,input().split())
    G[u][0].append(v); G[v][1].append(u)

#町1から町N-1, 町Nの最短経路を調べる
dist = [[10**18]*2 for _ in range(N)]
Q = [(0,0,0),(0,0,1)]  #累計時間, 現在地点, 移動モード
for time,now,x in Q:
    if time > dist[now][x]: continue
    dist[now][x] = time
    for next in G[now][x]:
        if dist[next][x] > time+1:
            dist[next][x] = time+1
            Q.append((time+1, next, x))
del Q

#町N-2→町N-1の移動時間を調べる
go = [10**18]*N
Q = [(0,N-2)]  #累計時間, 現在地点, 移動モード
for time,now in Q:
    if time > go[now]: continue
    go[now] = time
    for next in G[now][0]:
        if go[next] > time+1:
            go[next] = time+1
            Q.append((time+1, next))
del Q
go = go[N-1]

#町N-1→町N-2
back = [10**18]*N
Q = [(0,N-1)]  #累計時間, 現在地点, 移動モード
for time,now in Q:
    if time > back[now]: continue
    back[now] = time
    for next in G[now][0]:
        if back[next] > time+1:
            back[next] = time+1
            Q.append((time+1, next))
del Q
back = back[N-2]

ans = 10**18
#0→N-2→N-1→0
ans = min(ans, dist[N-2][0] + go + dist[N-1][1])
#0→N-1→N-2→0
ans = min(ans, dist[N-1][0] + back + dist[N-2][1])
print(ans if ans<10**18 else -1)
0