結果

問題 No.2913 二次元距離空間
ユーザー titiatitia
提出日時 2024-10-04 22:56:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 941 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 82,356 KB
最終ジャッジ日時 2024-10-04 22:56:11
合計ジャッジ時間 3,388 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,016 KB
testcase_01 AC 41 ms
53,376 KB
testcase_02 AC 46 ms
53,888 KB
testcase_03 AC 45 ms
54,016 KB
testcase_04 AC 44 ms
53,632 KB
testcase_05 AC 40 ms
54,016 KB
testcase_06 AC 40 ms
53,888 KB
testcase_07 AC 39 ms
53,760 KB
testcase_08 AC 41 ms
53,760 KB
testcase_09 AC 40 ms
53,632 KB
testcase_10 AC 42 ms
53,760 KB
testcase_11 AC 41 ms
54,016 KB
testcase_12 AC 40 ms
53,888 KB
testcase_13 WA -
testcase_14 AC 55 ms
64,640 KB
testcase_15 AC 41 ms
54,400 KB
testcase_16 AC 96 ms
80,384 KB
testcase_17 AC 101 ms
80,768 KB
testcase_18 AC 144 ms
81,664 KB
testcase_19 AC 134 ms
82,176 KB
testcase_20 AC 135 ms
82,176 KB
testcase_21 AC 62 ms
71,040 KB
testcase_22 AC 45 ms
59,264 KB
testcase_23 AC 132 ms
81,792 KB
testcase_24 AC 46 ms
60,160 KB
testcase_25 AC 158 ms
81,792 KB
testcase_26 AC 85 ms
80,512 KB
testcase_27 AC 129 ms
82,356 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] 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