結果

問題 No.2565 はじめてのおつかい
ユーザー lloyzlloyz
提出日時 2023-12-12 07:28:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 397 ms / 2,000 ms
コード長 706 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 101,616 KB
最終ジャッジ日時 2024-09-27 04:47:09
合計ジャッジ時間 14,171 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,504 KB
testcase_01 AC 47 ms
53,504 KB
testcase_02 AC 46 ms
53,504 KB
testcase_03 AC 290 ms
101,340 KB
testcase_04 AC 231 ms
101,616 KB
testcase_05 AC 45 ms
53,248 KB
testcase_06 AC 235 ms
82,560 KB
testcase_07 AC 179 ms
79,744 KB
testcase_08 AC 186 ms
81,920 KB
testcase_09 AC 209 ms
82,048 KB
testcase_10 AC 207 ms
83,328 KB
testcase_11 AC 397 ms
93,312 KB
testcase_12 AC 130 ms
77,568 KB
testcase_13 AC 203 ms
81,280 KB
testcase_14 AC 316 ms
87,424 KB
testcase_15 AC 294 ms
85,120 KB
testcase_16 AC 196 ms
94,616 KB
testcase_17 AC 109 ms
77,440 KB
testcase_18 AC 134 ms
81,536 KB
testcase_19 AC 303 ms
91,008 KB
testcase_20 AC 284 ms
89,216 KB
testcase_21 AC 261 ms
89,344 KB
testcase_22 AC 141 ms
82,816 KB
testcase_23 AC 225 ms
84,972 KB
testcase_24 AC 98 ms
77,312 KB
testcase_25 AC 282 ms
90,752 KB
testcase_26 AC 207 ms
83,200 KB
testcase_27 AC 176 ms
86,400 KB
testcase_28 AC 275 ms
90,752 KB
testcase_29 AC 329 ms
94,424 KB
testcase_30 AC 190 ms
89,760 KB
testcase_31 AC 307 ms
91,648 KB
testcase_32 AC 143 ms
82,560 KB
testcase_33 AC 184 ms
89,344 KB
testcase_34 AC 277 ms
87,296 KB
testcase_35 AC 189 ms
89,640 KB
testcase_36 AC 290 ms
90,880 KB
testcase_37 AC 234 ms
84,560 KB
testcase_38 AC 181 ms
84,480 KB
testcase_39 AC 291 ms
86,400 KB
testcase_40 AC 206 ms
89,060 KB
testcase_41 AC 278 ms
95,012 KB
testcase_42 AC 226 ms
83,712 KB
testcase_43 AC 171 ms
83,968 KB
testcase_44 AC 187 ms
81,920 KB
testcase_45 AC 108 ms
77,952 KB
testcase_46 AC 325 ms
86,024 KB
testcase_47 AC 199 ms
79,872 KB
testcase_48 AC 216 ms
81,536 KB
testcase_49 AC 135 ms
78,080 KB
testcase_50 AC 209 ms
80,256 KB
testcase_51 AC 48 ms
53,632 KB
testcase_52 AC 152 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque

n, m = map(int, input().split())
G = defaultdict(list)
for _ in range(m):
    u, v = map(int, input().split())
    G[u - 1].append(v - 1)

INF = 10**18
DP = [[INF for _ in range(1 << 2)] for _ in range(n)]
DP[0][0] = 0
Que = deque([(0, 0)])
while Que:
    cp, cbit = Que.popleft()
    cc = DP[cp][cbit]
    nc = cc + 1
    for np in G[cp]:
        if np == n - 2:
            nbit = cbit | 1
        elif np == n - 1:
            nbit = cbit | (1 << 1)
        else:
            nbit = cbit
        if nc >= DP[np][nbit]:
            continue
        DP[np][nbit] = nc
        Que.append((np, nbit))
if DP[0][-1] == INF:
    print(-1)
else:
    print(DP[0][-1])
0