結果

問題 No.2565 はじめてのおつかい
ユーザー detteiuudetteiuu
提出日時 2024-11-28 23:24:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 90,880 KB
最終ジャッジ日時 2024-11-28 23:24:28
合計ジャッジ時間 10,495 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,248 KB
testcase_01 AC 38 ms
53,888 KB
testcase_02 AC 36 ms
53,376 KB
testcase_03 AC 180 ms
88,960 KB
testcase_04 AC 166 ms
89,044 KB
testcase_05 AC 35 ms
53,760 KB
testcase_06 AC 161 ms
80,376 KB
testcase_07 AC 122 ms
78,720 KB
testcase_08 AC 135 ms
81,536 KB
testcase_09 AC 148 ms
80,384 KB
testcase_10 AC 142 ms
79,744 KB
testcase_11 AC 245 ms
90,880 KB
testcase_12 AC 115 ms
77,056 KB
testcase_13 AC 135 ms
79,104 KB
testcase_14 AC 196 ms
85,632 KB
testcase_15 AC 176 ms
81,152 KB
testcase_16 AC 126 ms
84,480 KB
testcase_17 AC 75 ms
77,440 KB
testcase_18 AC 78 ms
78,848 KB
testcase_19 AC 181 ms
87,424 KB
testcase_20 AC 202 ms
87,040 KB
testcase_21 AC 168 ms
87,296 KB
testcase_22 AC 99 ms
80,000 KB
testcase_23 AC 141 ms
83,840 KB
testcase_24 AC 71 ms
76,928 KB
testcase_25 AC 175 ms
87,516 KB
testcase_26 AC 137 ms
83,308 KB
testcase_27 AC 119 ms
82,176 KB
testcase_28 AC 215 ms
87,040 KB
testcase_29 AC 211 ms
88,960 KB
testcase_30 AC 122 ms
82,432 KB
testcase_31 AC 195 ms
87,552 KB
testcase_32 AC 98 ms
79,232 KB
testcase_33 AC 119 ms
82,048 KB
testcase_34 AC 182 ms
85,888 KB
testcase_35 AC 136 ms
83,560 KB
testcase_36 AC 202 ms
88,576 KB
testcase_37 AC 140 ms
83,712 KB
testcase_38 AC 119 ms
80,896 KB
testcase_39 AC 176 ms
84,480 KB
testcase_40 AC 140 ms
88,228 KB
testcase_41 AC 191 ms
89,728 KB
testcase_42 AC 146 ms
82,944 KB
testcase_43 AC 146 ms
81,024 KB
testcase_44 AC 135 ms
81,536 KB
testcase_45 AC 79 ms
77,312 KB
testcase_46 AC 183 ms
84,608 KB
testcase_47 AC 142 ms
80,256 KB
testcase_48 AC 136 ms
79,360 KB
testcase_49 AC 95 ms
78,028 KB
testcase_50 AC 140 ms
78,720 KB
testcase_51 AC 37 ms
53,888 KB
testcase_52 AC 140 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

visited = [[-1]*(1<<2) for _ in range(N)]
visited[0][0] = 0
que = deque()
que.append((0, 0))
while que:
    n, bit = que.popleft()
    for v in G[n]:
        nbit = bit
        if v == N-2:
            nbit |= 1<<0
        if v == N-1:
            nbit |= 1<<1
        if visited[v][nbit] == -1:
            visited[v][nbit] = visited[n][bit]+1
            que.append((v, nbit))

print(visited[0][-1])
0