結果

問題 No.2913 二次元距離空間
ユーザー 👑 p-adicp-adic
提出日時 2024-06-15 16:25:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 493 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 161,920 KB
最終ジャッジ日時 2024-06-15 16:27:30
合計ジャッジ時間 21,245 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 28 ms
11,008 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 31 ms
11,008 KB
testcase_13 AC 36 ms
11,392 KB
testcase_14 AC 36 ms
11,136 KB
testcase_15 AC 59 ms
14,336 KB
testcase_16 AC 1,116 ms
95,616 KB
testcase_17 AC 1,211 ms
93,568 KB
testcase_18 AC 1,928 ms
140,288 KB
testcase_19 TLE -
testcase_20 AC 1,853 ms
135,680 KB
testcase_21 AC 1,100 ms
104,576 KB
testcase_22 AC 1,035 ms
100,864 KB
testcase_23 TLE -
testcase_24 AC 1,068 ms
110,592 KB
testcase_25 TLE -
testcase_26 AC 1,082 ms
103,424 KB
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

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