結果

問題 No.2673 A present from B
ユーザー 👑 p-adicp-adic
提出日時 2024-06-15 15:20:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 906 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 549 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 176,136 KB
最終ジャッジ日時 2024-06-15 15:20:24
合計ジャッジ時間 8,011 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 45 ms
52,608 KB
testcase_03 AC 45 ms
52,224 KB
testcase_04 AC 69 ms
64,000 KB
testcase_05 AC 47 ms
52,480 KB
testcase_06 AC 906 ms
176,136 KB
testcase_07 AC 887 ms
175,400 KB
testcase_08 AC 860 ms
175,492 KB
testcase_09 AC 70 ms
68,352 KB
testcase_10 AC 85 ms
71,936 KB
testcase_11 AC 69 ms
68,040 KB
testcase_12 AC 294 ms
104,064 KB
testcase_13 AC 345 ms
103,816 KB
testcase_14 AC 432 ms
121,444 KB
testcase_15 AC 225 ms
91,724 KB
testcase_16 AC 203 ms
91,232 KB
testcase_17 AC 215 ms
86,512 KB
testcase_18 AC 246 ms
93,964 KB
testcase_19 AC 79 ms
69,248 KB
testcase_20 AC 390 ms
113,544 KB
testcase_21 AC 682 ms
152,400 KB
testcase_22 AC 40 ms
52,480 KB
testcase_23 AC 41 ms
52,224 KB
testcase_24 AC 40 ms
52,480 KB
testcase_25 AC 41 ms
52,608 KB
testcase_26 AC 40 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
J=lambda:map(int,input().split())
N,M=J()
A=list(J())
P=[]
V=N*M+N
E=[]
for v in R(V):
	i,j,e=v//N,v%N,[]
	if i:a,n=A[i-1],i*N-N;e+=[[n+(a if j==a-1else a-1if j==a else j),0]]
	if j:e+=[[i*N+j-1,1]]
	if j+1<N:e+=[[i*N+j+1,1]]
	E+=[e]
import heapq
W=[9**20]*V
W[M*N]=0
Q=[[0,M*N]]
while len(Q):
	w,i=heapq.heappop(Q)
	if w>W[i]:continue
	for[j,v]in E[i]:
		u=w+v
		if u<W[j]:W[j]=u;heapq.heappush(Q,[u,j])
print(*W[1:N])
0