結果

問題 No.2565 はじめてのおつかい
ユーザー loop0919loop0919
提出日時 2023-09-21 22:12:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,085 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 90,368 KB
最終ジャッジ日時 2024-07-07 15:21:50
合計ジャッジ時間 8,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
53,760 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 37 ms
53,888 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 120 ms
85,760 KB
testcase_17 AC 77 ms
77,304 KB
testcase_18 AC 78 ms
79,732 KB
testcase_19 AC 122 ms
82,328 KB
testcase_20 AC 118 ms
82,060 KB
testcase_21 AC 117 ms
82,176 KB
testcase_22 AC 96 ms
80,368 KB
testcase_23 AC 94 ms
80,448 KB
testcase_24 AC 69 ms
76,800 KB
testcase_25 AC 111 ms
82,560 KB
testcase_26 AC 99 ms
79,828 KB
testcase_27 AC 118 ms
82,916 KB
testcase_28 AC 119 ms
82,176 KB
testcase_29 AC 125 ms
83,824 KB
testcase_30 AC 122 ms
83,328 KB
testcase_31 AC 116 ms
82,364 KB
testcase_32 AC 103 ms
79,952 KB
testcase_33 AC 123 ms
82,944 KB
testcase_34 AC 118 ms
81,488 KB
testcase_35 AC 125 ms
84,312 KB
testcase_36 AC 119 ms
83,072 KB
testcase_37 AC 100 ms
80,112 KB
testcase_38 AC 161 ms
81,584 KB
testcase_39 AC 112 ms
80,168 KB
testcase_40 AC 140 ms
83,840 KB
testcase_41 AC 139 ms
84,552 KB
testcase_42 AC 97 ms
79,536 KB
testcase_43 AC 113 ms
81,408 KB
testcase_44 AC 86 ms
78,000 KB
testcase_45 AC 78 ms
77,896 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# import系 ---
from collections import defaultdict

# 入力用 ---
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()

# コード ---
import sys
sys.setrecursionlimit(10**6)
from collections import deque

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, dist):
    
    dist[start][now] = dist
    
    for next in graph[now]:
        if dist[start][next] < INF:
            continue
        dfs(start, next, dist + 1)

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