結果

問題 No.2673 A present from B
ユーザー detteiuudetteiuu
提出日時 2024-10-26 17:57:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 611 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 124,104 KB
最終ジャッジ日時 2024-10-26 17:57:19
合計ジャッジ時間 4,198 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,572 KB
testcase_01 AC 43 ms
54,512 KB
testcase_02 AC 41 ms
54,704 KB
testcase_03 AC 42 ms
54,936 KB
testcase_04 AC 53 ms
63,904 KB
testcase_05 AC 41 ms
55,236 KB
testcase_06 AC 271 ms
124,024 KB
testcase_07 AC 243 ms
124,104 KB
testcase_08 AC 253 ms
124,060 KB
testcase_09 AC 47 ms
62,304 KB
testcase_10 AC 48 ms
62,772 KB
testcase_11 AC 45 ms
61,116 KB
testcase_12 AC 112 ms
89,580 KB
testcase_13 AC 117 ms
88,716 KB
testcase_14 AC 130 ms
92,248 KB
testcase_15 AC 93 ms
83,920 KB
testcase_16 AC 84 ms
83,596 KB
testcase_17 AC 80 ms
81,064 KB
testcase_18 AC 89 ms
84,504 KB
testcase_19 AC 57 ms
66,504 KB
testcase_20 AC 123 ms
91,800 KB
testcase_21 AC 205 ms
113,012 KB
testcase_22 AC 42 ms
54,676 KB
testcase_23 AC 41 ms
54,776 KB
testcase_24 AC 41 ms
54,388 KB
testcase_25 AC 41 ms
55,296 KB
testcase_26 AC 40 ms
53,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, M = map(int, input().split())
A = list(map(int, input().split()))

vertex = (M+1)*N
G = [[] for _ in range(vertex)]
for i in range(M+1):
    for j in range(N-1):
        G[i*N+j].append((i*N+j+1, 1))
        G[i*N+j+1].append((i*N+j, 1))
for i in range(M):
    idx = M-1-i
    for j in range(N):
        if A[idx]-1 != j and A[idx] != j:
            G[i*N+j].append(((i+1)*N+j, 0))
    G[i*N+A[idx]-1].append(((i+1)*N+A[idx], 0))
    G[i*N+A[idx]].append(((i+1)*N+A[idx]-1, 0))

INF = 10**18
visited = [INF]*vertex
visited[0] = 0
que = deque()
que.append(0)
while que:
    n = que.popleft()
    for v, c in G[n]:
        if visited[n]+c < visited[v]:
            visited[v] = visited[n]+c
            if c == 0:
                que.appendleft(v)
            else:
                que.append(v)

print(*visited[-(N-1):])
0