結果

問題 No.2913 二次元距離空間
ユーザー 👑 p-adicp-adic
提出日時 2024-06-15 14:02:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 823 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 191,216 KB
最終ジャッジ日時 2024-06-15 16:25:06
合計ジャッジ時間 8,544 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,992 KB
testcase_03 AC 41 ms
52,736 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 41 ms
52,608 KB
testcase_06 AC 42 ms
52,480 KB
testcase_07 AC 43 ms
52,992 KB
testcase_08 AC 42 ms
52,480 KB
testcase_09 AC 40 ms
52,608 KB
testcase_10 AC 41 ms
52,864 KB
testcase_11 AC 41 ms
52,992 KB
testcase_12 AC 40 ms
52,864 KB
testcase_13 AC 64 ms
67,712 KB
testcase_14 AC 70 ms
68,736 KB
testcase_15 AC 99 ms
77,696 KB
testcase_16 AC 244 ms
149,836 KB
testcase_17 AC 334 ms
150,232 KB
testcase_18 AC 748 ms
177,868 KB
testcase_19 AC 822 ms
189,304 KB
testcase_20 AC 746 ms
175,088 KB
testcase_21 AC 296 ms
154,536 KB
testcase_22 AC 287 ms
152,300 KB
testcase_23 AC 779 ms
183,836 KB
testcase_24 AC 285 ms
157,192 KB
testcase_25 AC 791 ms
183,304 KB
testcase_26 AC 329 ms
156,152 KB
testcase_27 AC 823 ms
191,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R,I,O=range,input,print
H,W=map(int,I().split())
S=[I()for i in R(H)]
V=H*W
E=[]
for v in R(V):
	i,j,e=v//W,v%W,[]
	if i and S[i-1][j]>'#':e+=[[v-W,1]]
	if i+1<H and S[i+1][j]>'#':e+=[[v+W,1]]
	if j and S[i][j-1]>'#':e+=[[v-1,V]]
	if j+1<W and S[i][j+1]>'#':e+=[[v+1,V]]
	E+=[e]
import heapq
A=[V*V]*V
A[0]=0
Q=[[0,0]]
while len(Q):
	w,i=heapq.heappop(Q)
	if w>A[i]:continue
	for[j,v]in E[i]:
		if w+v<A[j]:A[j]=w+v;heapq.heappush(Q,[w+v,j])
w=A[V-1]
if w<V*V:O("Yes");O(w//V,w%V)
else:O("No")
0