結果

問題 No.2913 二次元距離空間
ユーザー tassei903tassei903
提出日時 2024-10-04 21:34:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 379 ms / 2,000 ms
コード長 1,271 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 79,768 KB
最終ジャッジ日時 2024-10-04 21:34:38
合計ジャッジ時間 4,536 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,304 KB
testcase_01 AC 36 ms
53,840 KB
testcase_02 AC 37 ms
54,560 KB
testcase_03 AC 37 ms
54,052 KB
testcase_04 AC 35 ms
53,132 KB
testcase_05 AC 34 ms
53,500 KB
testcase_06 AC 35 ms
53,656 KB
testcase_07 AC 35 ms
53,780 KB
testcase_08 AC 37 ms
54,176 KB
testcase_09 AC 35 ms
53,604 KB
testcase_10 AC 37 ms
54,796 KB
testcase_11 AC 38 ms
53,160 KB
testcase_12 AC 33 ms
54,472 KB
testcase_13 AC 53 ms
65,752 KB
testcase_14 AC 62 ms
71,976 KB
testcase_15 AC 39 ms
58,180 KB
testcase_16 AC 105 ms
78,288 KB
testcase_17 AC 114 ms
78,740 KB
testcase_18 AC 365 ms
79,616 KB
testcase_19 AC 379 ms
79,768 KB
testcase_20 AC 379 ms
79,760 KB
testcase_21 AC 69 ms
72,960 KB
testcase_22 AC 44 ms
65,372 KB
testcase_23 AC 365 ms
79,732 KB
testcase_24 AC 50 ms
65,140 KB
testcase_25 AC 369 ms
79,764 KB
testcase_26 AC 101 ms
79,348 KB
testcase_27 AC 379 ms
79,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

h,w = na()
s = [input() for i in range(h)]
inf = 10**18
dist = [[inf for i in range(w)] for j in range(h)]

big = 10 ** 6

dist[0][0] = 0

from heapq import heappop, heappush

q = [(0,0,0)]
while q:
    d,y,x = heappop(q)
    if dist[y][x] < d:
        continue
    for dy,dx in [(1,0),(-1, 0)]:
        ny, nx = y+dy, x+dx
        if 0 <= ny < h and 0 <= nx < w and s[ny][nx] == '.':
            if dist[ny][nx] > dist[y][x] + 1:
                dist[ny][nx] = dist[y][x] + 1
                heappush(q, (dist[ny][nx], ny, nx))
    for dy,dx in [(0,1),(0,-1)]:
        ny, nx = y+dy, x+dx
        if 0 <= ny < h and 0 <= nx < w and s[ny][nx] == '.':
            if dist[ny][nx] > dist[y][x] + big:
                dist[ny][nx] = dist[y][x] + big
                heappush(q, (dist[ny][nx], ny, nx))

if dist[h-1][w-1] == inf:
    print("No")
else:
    print("Yes")
    print(dist[h-1][w-1]//big , dist[h-1][w-1]%big)
0