結果

問題 No.2913 二次元距離空間
ユーザー detteiuudetteiuu
提出日時 2024-10-04 22:25:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 1,320 bytes
コンパイル時間 555 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 86,584 KB
最終ジャッジ日時 2024-10-04 22:25:28
合計ジャッジ時間 3,464 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,980 KB
testcase_01 AC 41 ms
54,860 KB
testcase_02 AC 43 ms
54,368 KB
testcase_03 AC 41 ms
55,212 KB
testcase_04 AC 41 ms
55,436 KB
testcase_05 AC 41 ms
55,460 KB
testcase_06 AC 41 ms
55,168 KB
testcase_07 AC 41 ms
53,792 KB
testcase_08 AC 41 ms
54,512 KB
testcase_09 AC 40 ms
54,140 KB
testcase_10 AC 51 ms
54,424 KB
testcase_11 AC 42 ms
54,596 KB
testcase_12 AC 42 ms
54,232 KB
testcase_13 AC 56 ms
65,128 KB
testcase_14 AC 58 ms
66,112 KB
testcase_15 AC 42 ms
55,736 KB
testcase_16 AC 99 ms
78,816 KB
testcase_17 AC 101 ms
78,376 KB
testcase_18 AC 143 ms
85,852 KB
testcase_19 AC 140 ms
86,456 KB
testcase_20 AC 122 ms
78,852 KB
testcase_21 AC 63 ms
70,308 KB
testcase_22 AC 49 ms
59,964 KB
testcase_23 AC 155 ms
78,776 KB
testcase_24 AC 48 ms
59,680 KB
testcase_25 AC 149 ms
86,584 KB
testcase_26 AC 70 ms
73,920 KB
testcase_27 AC 115 ms
78,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

H, W = map(int, input().split())
S = [input() for _ in range(H)]

visited = [[-1]*W for _ in range(H)]
visited[0][0] = (0, 0)
que = deque()
que.append((0, 0))
direction = [(-1,0),(0,1),(1,0),(0,-1)]
while que:
    h, w = que.popleft()
    wcnt, hcnt = visited[h][w]
    for dh, dw in direction:
        nh, nw = h+dh, w+dw
        if 0<=nh<H and 0<=nw<W and S[nh][nw] == ".":
            if dh != 0:
                if visited[nh][nw] == -1:
                    visited[nh][nw] = (wcnt, hcnt+1)
                    que.appendleft((nh, nw))
                else:
                    nwcnt, nhcnt = visited[nh][nw]
                    if wcnt < nwcnt or wcnt == nwcnt and hcnt+1 < nhcnt:
                        visited[nh][nw] = (wcnt, hcnt+1)
                        que.appendleft((nh, nw))
            else:
                if visited[nh][nw] == -1:
                    visited[nh][nw] = (wcnt+1, hcnt)
                    que.append((nh, nw))
                else:
                    nwcnt, nhcnt = visited[nh][nw]
                    if wcnt+1 < nwcnt or wcnt+1 == nwcnt and hcnt < nhcnt:
                        visited[nh][nw] = (wcnt+1, hcnt)
                        que.append((nh, nw))

if visited[-1][-1] != -1:
    print("Yes")
    print(*visited[-1][-1])
else:
    print("No")
0