結果

問題 No.2565 はじめてのおつかい
ユーザー hatonobuhatonobu
提出日時 2023-12-02 17:40:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,917 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 89,976 KB
最終ジャッジ日時 2024-09-26 21:16:45
合計ジャッジ時間 8,365 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,040 KB
testcase_01 AC 46 ms
55,040 KB
testcase_02 AC 50 ms
55,040 KB
testcase_03 AC 156 ms
89,976 KB
testcase_04 AC 118 ms
89,600 KB
testcase_05 AC 46 ms
54,656 KB
testcase_06 AC 134 ms
79,744 KB
testcase_07 AC 115 ms
78,464 KB
testcase_08 WA -
testcase_09 AC 129 ms
78,976 KB
testcase_10 AC 133 ms
80,256 KB
testcase_11 AC 181 ms
85,504 KB
testcase_12 AC 98 ms
77,568 KB
testcase_13 WA -
testcase_14 AC 167 ms
82,304 KB
testcase_15 AC 163 ms
81,920 KB
testcase_16 AC 117 ms
84,992 KB
testcase_17 AC 82 ms
77,312 KB
testcase_18 AC 86 ms
79,488 KB
testcase_19 AC 168 ms
83,456 KB
testcase_20 AC 158 ms
82,816 KB
testcase_21 AC 144 ms
82,048 KB
testcase_22 AC 94 ms
79,232 KB
testcase_23 AC 124 ms
81,024 KB
testcase_24 AC 65 ms
69,888 KB
testcase_25 AC 150 ms
83,200 KB
testcase_26 AC 128 ms
81,024 KB
testcase_27 AC 115 ms
82,432 KB
testcase_28 AC 150 ms
83,200 KB
testcase_29 AC 167 ms
85,376 KB
testcase_30 AC 110 ms
83,200 KB
testcase_31 AC 148 ms
83,200 KB
testcase_32 AC 93 ms
78,848 KB
testcase_33 AC 116 ms
82,304 KB
testcase_34 AC 141 ms
82,176 KB
testcase_35 AC 113 ms
83,840 KB
testcase_36 AC 153 ms
83,456 KB
testcase_37 AC 124 ms
81,280 KB
testcase_38 AC 108 ms
81,024 KB
testcase_39 AC 162 ms
81,408 KB
testcase_40 AC 116 ms
83,200 KB
testcase_41 AC 150 ms
85,632 KB
testcase_42 AC 114 ms
80,256 KB
testcase_43 AC 104 ms
80,896 KB
testcase_44 AC 119 ms
79,104 KB
testcase_45 AC 80 ms
77,568 KB
testcase_46 AC 146 ms
81,664 KB
testcase_47 AC 113 ms
78,592 KB
testcase_48 AC 127 ms
80,128 KB
testcase_49 AC 102 ms
77,312 KB
testcase_50 AC 126 ms
78,720 KB
testcase_51 AC 46 ms
54,400 KB
testcase_52 AC 94 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque,defaultdict
import itertools
import heapq
import bisect
import math

#sys.setrecursionlimit(10 ** 9)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
ml = lambda: map(str, input().split())
li = lambda: list(mi())
li_st = lambda: list(map(str, input().split()))
lli = lambda n: [li() for _ in range(n)]
mod = 998244353
INF = 10**18

N,M = mi()
G = [[] for _ in range(N)]

for i in range(M):
    u,v = mi()
    u -= 1
    v -= 1
    G[u].append(v)

check = [INF] * N
check2 = [INF] * N
check3 = [INF] * N
q = deque()
q.append((0,0,-1))
check[0] = 0

while(q):
    now,times,flag = q.popleft()
    for nxt in G[now]:
        if check[nxt] == INF:
            q.append((nxt,times+1,flag))
            check[nxt] = min(times + 1, check[nxt])
        else:
            check[nxt] = min(times+1,check[nxt])

if check[N-2] != INF:
    q = deque()
    q.append((N-2,0))
    check2[N-2] =  0
    while(q):
        now,times = q.popleft()          
        for nxt in G[now]:
            if check2[nxt] == INF:
                q.append((nxt,times+1))
                check2[nxt] = min(check2[nxt],times + 1)
            else:
                check2[nxt] = min(check2[nxt],times+1)
        if now == 0:
            break

if check[N-1] != INF:
    q = deque()
    q.append((N-1,0))
    check3[N-1] =  0
    while(q):
        now,times = q.popleft()
        for nxt in G[now]:
            if check3[nxt] == INF:
                q.append((nxt,times+1))
                check3[nxt] = min(check3[nxt],times + 1)
            else:
                check3[nxt] = min(check3[nxt],times+1)
        if now == 0:
            break

ans1 = check[N-1] + check3[N-2] + check2[0]
ans2 = check[N-2] + check2[N-1] + check3[0]

#print(check)
#print(check2)
#print(check3)
#print(ans1,ans2)
print(min(ans1,ans2) if min(ans1,ans2) < INF else -1)
0