結果

問題 No.2673 A present from B
ユーザー miya145592miya145592
提出日時 2024-03-16 02:09:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 904 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 239,448 KB
最終ジャッジ日時 2024-09-30 03:44:12
合計ジャッジ時間 5,184 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,984 KB
testcase_01 AC 40 ms
54,460 KB
testcase_02 AC 38 ms
54,344 KB
testcase_03 AC 37 ms
54,528 KB
testcase_04 AC 55 ms
67,392 KB
testcase_05 AC 38 ms
56,032 KB
testcase_06 WA -
testcase_07 AC 586 ms
239,200 KB
testcase_08 AC 588 ms
239,448 KB
testcase_09 AC 49 ms
65,896 KB
testcase_10 AC 50 ms
67,096 KB
testcase_11 AC 48 ms
64,988 KB
testcase_12 AC 185 ms
122,548 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 130 ms
102,380 KB
testcase_16 AC 133 ms
101,532 KB
testcase_17 WA -
testcase_18 AC 139 ms
105,216 KB
testcase_19 AC 58 ms
70,164 KB
testcase_20 AC 250 ms
138,280 KB
testcase_21 AC 462 ms
202,376 KB
testcase_22 AC 37 ms
54,192 KB
testcase_23 WA -
testcase_24 AC 37 ms
54,360 KB
testcase_25 AC 36 ms
54,120 KB
testcase_26 AC 36 ms
55,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input = sys.stdin.readline
N, M = map(int, input().split())
A = list(map(int, input().split()))
L = (2*M+3)*N
G = [set() for _ in range(L)]
for i in range(N):
    for j in range(L//N-1):
        G[(j+1)*N+i].add((j*N+i, 0))
for i in range(1, 2*M+3, 2):
    for j in range(N-1):
        G[i*N+j].add((i*N+j+1, 1))
for i, a in enumerate(A):
    a-=1
    u = (i*2+2)*N+a
    v = (i*2+2)*N+a+1
    G[u].add((v-N, 0))
    G[v].add((u-N, 0))
    G[u].discard((u-N, 0))
    G[v].discard((v-N, 0))
#print(G)
deq = deque()
st = (2*M+2)*N
deq.append(st)
INF = 10**9
dist = [INF for _ in range(L)]
dist[st] = 0
while deq:
    v = deq.popleft()
    for nv, cost in G[v]:
        if dist[nv]!=INF:
            continue
        dist[nv] = dist[v] + cost
        if cost==0:
            deq.appendleft(nv)
        else:
            deq.append(nv)
#print(dist)
print(*dist[1:N])
0