結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー noriocnorioc
提出日時 2022-05-20 22:47:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,313 ms / 3,000 ms
コード長 747 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 137,328 KB
最終ジャッジ日時 2024-09-20 09:08:15
合計ジャッジ時間 11,463 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 36 ms
52,992 KB
testcase_04 AC 37 ms
52,608 KB
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 40 ms
52,608 KB
testcase_07 AC 653 ms
119,816 KB
testcase_08 AC 76 ms
76,672 KB
testcase_09 AC 669 ms
119,252 KB
testcase_10 AC 704 ms
120,532 KB
testcase_11 AC 744 ms
121,956 KB
testcase_12 AC 795 ms
120,476 KB
testcase_13 AC 738 ms
121,192 KB
testcase_14 AC 810 ms
137,328 KB
testcase_15 AC 809 ms
137,320 KB
testcase_16 AC 69 ms
77,020 KB
testcase_17 AC 1,313 ms
134,400 KB
testcase_18 AC 67 ms
76,852 KB
testcase_19 AC 38 ms
52,480 KB
testcase_20 AC 37 ms
52,992 KB
testcase_21 AC 37 ms
52,992 KB
testcase_22 AC 966 ms
128,852 KB
testcase_23 AC 37 ms
52,352 KB
testcase_24 AC 412 ms
97,396 KB
testcase_25 AC 645 ms
119,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

H, W, Y, X = map(int, input().split())
A = []
for _ in range(H):
    A.append(list(map(int, input().split())))


def delta(row, col):
    for dr, dc in [(-1, 0), (1, 0), (0, -1), (0, 1)]:
        r = row + dr
        c = col + dc
        if not (0 <= r < H and 0 <= c < W): continue
        yield r, c


row = Y-1
col = X-1
atk = A[row][col]
q = []
used = {(row, col)}
for r, c in delta(row, col):
    heappush(q, (A[r][c], r, c))
    used.add((r, c))

while q:
    a, row, col = heappop(q)
    if a >= atk:
        print('No')
        break
    atk += a

    for r, c in delta(row, col):
        if (r, c) in used: continue
        heappush(q, (A[r][c], r, c))
        used.add((r, c))
else:
    print('Yes')
0