結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー hir355hir355
提出日時 2022-05-20 22:18:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 894 ms / 3,000 ms
コード長 609 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 100,212 KB
最終ジャッジ日時 2024-09-20 08:31:09
合計ジャッジ時間 8,661 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 38 ms
52,736 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 41 ms
52,608 KB
testcase_07 AC 372 ms
81,280 KB
testcase_08 AC 87 ms
76,672 KB
testcase_09 AC 400 ms
81,408 KB
testcase_10 AC 451 ms
81,112 KB
testcase_11 AC 474 ms
81,580 KB
testcase_12 AC 459 ms
81,920 KB
testcase_13 AC 456 ms
81,028 KB
testcase_14 AC 587 ms
100,088 KB
testcase_15 AC 592 ms
100,212 KB
testcase_16 AC 76 ms
76,800 KB
testcase_17 AC 894 ms
96,208 KB
testcase_18 AC 82 ms
77,184 KB
testcase_19 AC 38 ms
52,352 KB
testcase_20 AC 41 ms
52,992 KB
testcase_21 AC 42 ms
52,736 KB
testcase_22 AC 680 ms
89,964 KB
testcase_23 AC 41 ms
52,480 KB
testcase_24 AC 285 ms
80,768 KB
testcase_25 AC 420 ms
81,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
dxdy = ((0, 1), (0, -1), (1, 0), (-1, 0))
h, w, x, y = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(h)]
d = [[0] * w for _ in range(h)]
d[x - 1][y - 1] = 1
hq = [(a[x - 1][y - 1], x - 1, y - 1)]
t = 0
cnt = 0
while hq:
    p, x, y = heapq.heappop(hq)
    if cnt > 0 and t <= a[x][y]:
        print('No')
        exit(0)
    cnt += 1
    t += a[x][y]
    for dx, dy in dxdy:
        if 0 <= x + dx < h and 0 <= y + dy < w and d[x + dx][y + dy] == 0:
            d[x + dx][y + dy] = 1
            heapq.heappush(hq, (a[x + dx][y + dy], x + dx, y + dy))
print('Yes')
0