結果

問題 No.2565 はじめてのおつかい
ユーザー K5h1n0K5h1n0
提出日時 2023-12-02 16:28:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 842 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 93,760 KB
最終ジャッジ日時 2024-09-26 20:20:42
合計ジャッジ時間 8,684 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 44 ms
53,632 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 44 ms
53,248 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 154 ms
87,332 KB
testcase_17 AC 98 ms
77,312 KB
testcase_18 AC 104 ms
79,744 KB
testcase_19 AC 158 ms
84,096 KB
testcase_20 AC 149 ms
83,328 KB
testcase_21 AC 148 ms
83,072 KB
testcase_22 AC 121 ms
81,536 KB
testcase_23 AC 127 ms
81,664 KB
testcase_24 AC 93 ms
76,928 KB
testcase_25 AC 146 ms
83,200 KB
testcase_26 AC 131 ms
81,024 KB
testcase_27 AC 149 ms
84,096 KB
testcase_28 AC 157 ms
83,968 KB
testcase_29 AC 166 ms
86,904 KB
testcase_30 AC 152 ms
85,440 KB
testcase_31 AC 154 ms
84,224 KB
testcase_32 AC 125 ms
80,896 KB
testcase_33 AC 153 ms
84,480 KB
testcase_34 AC 147 ms
82,816 KB
testcase_35 AC 158 ms
85,816 KB
testcase_36 AC 149 ms
83,584 KB
testcase_37 AC 123 ms
81,280 KB
testcase_38 AC 152 ms
83,328 KB
testcase_39 AC 136 ms
81,536 KB
testcase_40 AC 168 ms
86,920 KB
testcase_41 AC 164 ms
86,724 KB
testcase_42 AC 126 ms
80,896 KB
testcase_43 AC 141 ms
82,048 KB
testcase_44 AC 112 ms
78,976 KB
testcase_45 AC 98 ms
77,824 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,deque

n,m = map(int,input().split())
d = defaultdict(list)
for _ in range(m):
    a,b = map(int,input().split())
    d[a].append(b)
from1 = [float("INF")]*(n+1)
fromnminus1 = [float("INF")]*(n+1)
fromn = [float("INF")]*(n+1)

def bfs(start,result):
    global d
    visited = [False]*(n+1)
    q = deque()
    visited[start] = True
    cnt = 0
    q.append((start,cnt))
    while q:
        nowv,nowcnt = q.popleft()
        result[nowv] = nowcnt
        for nextv in d[nowv]:
            if visited[nextv] == False:
                visited[nextv] = True
                q.append((nextv,nowcnt+1))
    return result

route1 = from1[n-1] + fromnminus1[n] + fromn[1]
route2 = from1[n] + fromn[n-1] + fromnminus1[1]
result = min(route1,route2)
if result == float("inf"):
    print(-1)
else:
    print(result)
0