結果

問題 No.2673 A present from B
ユーザー detteiuudetteiuu
提出日時 2024-10-26 17:54:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 807 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 82,860 KB
実行使用メモリ 124,220 KB
最終ジャッジ日時 2024-10-26 17:54:32
合計ジャッジ時間 4,529 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,388 KB
testcase_01 AC 41 ms
53,800 KB
testcase_02 AC 41 ms
55,640 KB
testcase_03 AC 42 ms
53,624 KB
testcase_04 AC 64 ms
63,840 KB
testcase_05 AC 41 ms
53,724 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 50 ms
63,228 KB
testcase_10 WA -
testcase_11 AC 48 ms
63,224 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 55 ms
65,660 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 41 ms
53,944 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 46 ms
55,260 KB
testcase_26 AC 40 ms
54,660 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):
    for j in range(N):
        G[i*N+j].append(((i+1)*N+j, 0))
    idx = M-1-i
    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