結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,248 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 40 ms
53,120 KB
testcase_04 AC 68 ms
65,920 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 927 ms
178,668 KB
testcase_07 AC 923 ms
177,676 KB
testcase_08 AC 965 ms
179,052 KB
testcase_09 AC 66 ms
69,236 KB
testcase_10 AC 74 ms
72,448 KB
testcase_11 AC 68 ms
68,352 KB
testcase_12 AC 319 ms
105,088 KB
testcase_13 AC 391 ms
105,252 KB
testcase_14 AC 491 ms
122,944 KB
testcase_15 AC 227 ms
92,528 KB
testcase_16 AC 272 ms
92,404 KB
testcase_17 AC 214 ms
86,180 KB
testcase_18 AC 256 ms
94,608 KB
testcase_19 AC 68 ms
71,284 KB
testcase_20 AC 392 ms
115,084 KB
testcase_21 AC 752 ms
155,172 KB
testcase_22 AC 40 ms
53,912 KB
testcase_23 AC 40 ms
53,260 KB
testcase_24 AC 39 ms
53,500 KB
testcase_25 AC 41 ms
54,412 KB
testcase_26 AC 40 ms
52,956 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
F=[0]*V
W[M*N]=0
Q=[[0,M*N]]
while len(Q):
	w,i=heapq.heappop(Q);F[i],C=1,set()
	if w>W[i]:continue
	for[j,v]in E[i]:
		if F[j]<1:
			u=w+v
			if u<W[j]:W[j]=u;C.add(j)
	for j in C:heapq.heappush(Q,[W[j],j])
print(*W[1:N])
0