結果

問題 No.2913 二次元距離空間
ユーザー titiatitia
提出日時 2024-10-04 23:17:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 943 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 82,068 KB
最終ジャッジ日時 2024-10-04 23:17:31
合計ジャッジ時間 2,665 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,512 KB
testcase_01 AC 36 ms
54,188 KB
testcase_02 AC 34 ms
54,788 KB
testcase_03 AC 33 ms
54,464 KB
testcase_04 AC 34 ms
54,108 KB
testcase_05 AC 34 ms
55,220 KB
testcase_06 AC 34 ms
54,244 KB
testcase_07 AC 35 ms
54,612 KB
testcase_08 AC 34 ms
54,192 KB
testcase_09 AC 34 ms
55,092 KB
testcase_10 AC 35 ms
55,124 KB
testcase_11 AC 35 ms
54,352 KB
testcase_12 AC 34 ms
54,364 KB
testcase_13 AC 51 ms
65,932 KB
testcase_14 AC 48 ms
64,784 KB
testcase_15 AC 35 ms
55,208 KB
testcase_16 AC 84 ms
80,336 KB
testcase_17 AC 89 ms
80,360 KB
testcase_18 AC 130 ms
81,908 KB
testcase_19 AC 128 ms
81,976 KB
testcase_20 AC 124 ms
81,696 KB
testcase_21 AC 53 ms
71,528 KB
testcase_22 AC 38 ms
60,480 KB
testcase_23 AC 126 ms
82,016 KB
testcase_24 AC 41 ms
60,956 KB
testcase_25 AC 121 ms
81,848 KB
testcase_26 AC 72 ms
80,712 KB
testcase_27 AC 118 ms
82,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import deque

H,W=map(int,input().split())
MAP=[input().strip() for i in range(H)]

DX=[[1<<60]*W for i in range(H)]
DY=[[1<<60]*W for i in range(H)]

DX[0][0]=0
DY[0][0]=0

Q=deque([(0,0)])

while Q:
    x,y=Q.popleft()

    for z,w in [(x+1,y),(x-1,y)]:
        if 0<=z<H and 0<=w<W and MAP[z][w]==".":
            if DY[z][w]>DY[x][y] or (DY[z][w]==DY[x][y] and DX[z][w]>DX[x][y]+1):
                DY[z][w]=DY[x][y]
                DX[z][w]=DX[x][y]+1
                Q.appendleft((z,w))

    for z,w in [(x,y+1),(x,y-1)]:
        if 0<=z<H and 0<=w<W and MAP[z][w]==".":
            if DY[z][w]>DY[x][y]+1 or (DY[z][w]==DY[x][y]+1 and DX[z][w]>DX[x][y]):
                DY[z][w]=DY[x][y]+1
                DX[z][w]=DX[x][y]
                Q.append((z,w))
                
            

if DY[-1][-1]>1<<50:
    print("No")
else:
    print("Yes")
    print(DY[-1][-1],DX[-1][-1])
0