結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー KudeKude
提出日時 2022-05-20 22:33:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 689 ms / 3,000 ms
コード長 691 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 97,916 KB
最終ジャッジ日時 2024-09-20 08:49:27
合計ジャッジ時間 7,412 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 43 ms
52,480 KB
testcase_03 AC 41 ms
52,736 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 353 ms
82,360 KB
testcase_08 AC 82 ms
76,568 KB
testcase_09 AC 353 ms
82,488 KB
testcase_10 AC 401 ms
82,652 KB
testcase_11 AC 433 ms
82,420 KB
testcase_12 AC 418 ms
83,068 KB
testcase_13 AC 408 ms
83,164 KB
testcase_14 AC 443 ms
97,916 KB
testcase_15 AC 443 ms
97,784 KB
testcase_16 AC 74 ms
77,048 KB
testcase_17 AC 689 ms
94,936 KB
testcase_18 AC 73 ms
77,056 KB
testcase_19 AC 40 ms
52,528 KB
testcase_20 AC 42 ms
53,120 KB
testcase_21 AC 42 ms
52,992 KB
testcase_22 AC 636 ms
91,804 KB
testcase_23 AC 40 ms
52,864 KB
testcase_24 AC 300 ms
81,896 KB
testcase_25 AC 328 ms
81,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
h, w, x, y = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(h)]
x -= 1
y -= 1
dis = [1, 0, -1, 0]
djs = [0, 1, 0, -1]
added = [[False] * w for _ in range(h)]
added[x][y] = True

q = []

def add_neighbor(i, j):
    for di, dj in zip(dis, djs):
        ni = i + di
        nj = j + dj
        if 0 <= ni < h and 0 <= nj < w and not added[ni][nj]:
            added[ni][nj] = True
            heappush(q, (a[ni][nj], (ni, nj)))

now = a[x][y]
added[x][y] = True
add_neighbor(x, y)

while q:
    v, (i, j) = heappop(q)
    if v >= now:
        print('No')
        break
    now += v
    add_neighbor(i, j)
else:
    print('Yes')
0