結果

問題 No.2565 はじめてのおつかい
ユーザー loop0919loop0919
提出日時 2023-09-21 22:17:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,081 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 228,328 KB
最終ジャッジ日時 2024-07-07 15:26:03
合計ジャッジ時間 14,816 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,800 KB
testcase_01 AC 37 ms
53,404 KB
testcase_02 WA -
testcase_03 AC 506 ms
228,300 KB
testcase_04 AC 364 ms
228,328 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 135 ms
85,388 KB
testcase_17 AC 78 ms
77,508 KB
testcase_18 AC 90 ms
79,428 KB
testcase_19 AC 295 ms
107,648 KB
testcase_20 AC 312 ms
114,176 KB
testcase_21 AC 206 ms
90,240 KB
testcase_22 AC 167 ms
84,624 KB
testcase_23 AC 210 ms
93,568 KB
testcase_24 AC 90 ms
77,260 KB
testcase_25 AC 330 ms
112,640 KB
testcase_26 AC 187 ms
94,976 KB
testcase_27 AC 245 ms
94,720 KB
testcase_28 AC 338 ms
120,064 KB
testcase_29 AC 383 ms
116,224 KB
testcase_30 AC 218 ms
94,976 KB
testcase_31 AC 287 ms
109,184 KB
testcase_32 AC 223 ms
96,384 KB
testcase_33 AC 309 ms
104,524 KB
testcase_34 AC 390 ms
129,792 KB
testcase_35 AC 197 ms
88,064 KB
testcase_36 AC 273 ms
99,212 KB
testcase_37 AC 247 ms
101,504 KB
testcase_38 AC 277 ms
115,456 KB
testcase_39 AC 396 ms
125,696 KB
testcase_40 AC 256 ms
100,664 KB
testcase_41 AC 310 ms
101,596 KB
testcase_42 AC 274 ms
107,720 KB
testcase_43 AC 295 ms
112,468 KB
testcase_44 AC 252 ms
104,848 KB
testcase_45 AC 147 ms
81,360 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# import系 ---

# 入力用 ---
INT = lambda: int(input())
MI = lambda: map(int, input().split())
MI_DEC = lambda: map(lambda x: int(x) - 1, input().split())
LI = lambda: list(map(int, input().split()))
LI_DEC = lambda: list(map(lambda x: int(x) - 1, input().split()))
LS = lambda: list(input())
LSS = lambda: input().split()



# コード ---
# DFS 解答 (想定: WA)
import sys
sys.setrecursionlimit(10**7)

INF = 1 << 60

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

graph = [[] for _ in range(N)]

for _ in range(M):
    u, v = map(int, input().split())
    u -= 1; v -= 1
    graph[u].append(v)

dist = {
    0: [INF for _ in range(N)],
    N-2: [INF for _ in range(N)],
    N-1: [INF for _ in range(N)]
}

def dfs(start, now, d):
    dist[start][now] = d
    
    for next in graph[now]:
        if dist[start][next] < INF:
            continue
        dfs(start, next, d + 1)

dfs(0, 0, 0)
dfs(N-2, N-2, 0)
dfs(N-1, N-1, 0)

ans = min(
    dist[0][N-2] + dist[N-2][N-1] + dist[N-1][0],
    dist[0][N-1] + dist[N-1][N-2] + dist[N-2][0]
)

if ans < INF:
	print(ans)
else:
	print(-1)

0