結果
問題 | No.2913 二次元距離空間 |
ユーザー | detteiuu |
提出日時 | 2024-10-04 22:22:16 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,316 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 82,464 KB |
実行使用メモリ | 79,104 KB |
最終ジャッジ日時 | 2024-10-04 22:22:19 |
合計ジャッジ時間 | 2,779 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
54,272 KB |
testcase_01 | AC | 37 ms
53,888 KB |
testcase_02 | AC | 38 ms
54,400 KB |
testcase_03 | AC | 38 ms
53,888 KB |
testcase_04 | AC | 39 ms
54,272 KB |
testcase_05 | AC | 39 ms
54,016 KB |
testcase_06 | AC | 37 ms
54,016 KB |
testcase_07 | AC | 37 ms
54,400 KB |
testcase_08 | AC | 37 ms
53,888 KB |
testcase_09 | AC | 37 ms
54,144 KB |
testcase_10 | AC | 38 ms
54,528 KB |
testcase_11 | WA | - |
testcase_12 | AC | 40 ms
54,144 KB |
testcase_13 | WA | - |
testcase_14 | AC | 55 ms
65,280 KB |
testcase_15 | AC | 39 ms
54,528 KB |
testcase_16 | AC | 96 ms
78,684 KB |
testcase_17 | AC | 113 ms
78,596 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 60 ms
71,424 KB |
testcase_22 | AC | 46 ms
59,264 KB |
testcase_23 | WA | - |
testcase_24 | AC | 46 ms
59,008 KB |
testcase_25 | WA | - |
testcase_26 | AC | 70 ms
73,712 KB |
testcase_27 | AC | 107 ms
78,636 KB |
ソースコード
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[h][w] 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[h][w] 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")