結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー lloyzlloyz
提出日時 2022-05-21 01:04:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 921 ms / 3,000 ms
コード長 811 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 101,216 KB
最終ジャッジ日時 2024-09-20 10:54:35
合計ジャッジ時間 8,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 37 ms
52,736 KB
testcase_03 AC 38 ms
52,608 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 36 ms
52,608 KB
testcase_06 AC 37 ms
52,864 KB
testcase_07 AC 401 ms
80,940 KB
testcase_08 AC 81 ms
78,976 KB
testcase_09 AC 446 ms
81,020 KB
testcase_10 AC 464 ms
81,396 KB
testcase_11 AC 496 ms
81,588 KB
testcase_12 AC 481 ms
81,920 KB
testcase_13 AC 490 ms
81,612 KB
testcase_14 AC 616 ms
101,064 KB
testcase_15 AC 623 ms
101,216 KB
testcase_16 AC 67 ms
77,184 KB
testcase_17 AC 921 ms
96,228 KB
testcase_18 AC 68 ms
77,204 KB
testcase_19 AC 38 ms
53,120 KB
testcase_20 AC 37 ms
52,992 KB
testcase_21 AC 37 ms
52,608 KB
testcase_22 AC 660 ms
90,112 KB
testcase_23 AC 37 ms
52,480 KB
testcase_24 AC 289 ms
81,016 KB
testcase_25 AC 415 ms
81,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

h, w, si, sj = map(int, input().split())
si -= 1
sj -= 1
A = [list(map(int, input().split())) for _ in range(h)]

visited = [[False for _ in range(w)] for _ in range(h)]
visited[si][sj] = True
Heap = []
Directions = [(1, 0), (0, 1), (-1, 0), (0, -1)]
curr = A[si][sj]
for di, dj in Directions:
    ni, nj = si + di, sj + dj
    if 0 <= ni < h and 0 <= nj < w:
        heappush(Heap, (A[ni][nj], ni, nj))
        visited[ni][nj] = True
while Heap:
    res, ci, cj = heappop(Heap)
    if curr <= res:
        print("No")
        exit()
    curr += res
    for di, dj in Directions:
        ni, nj = ci + di, cj + dj
        if 0 <= ni < h and 0 <= nj < w and not visited[ni][nj]:
            heappush(Heap, (A[ni][nj], ni, nj))
            visited[ni][nj] = True
print("Yes")
0