結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー Akijin_007Akijin_007
提出日時 2022-05-20 23:46:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,150 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 99,984 KB
最終ジャッジ日時 2024-09-20 10:12:47
合計ジャッジ時間 9,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,992 KB
testcase_01 AC 41 ms
53,120 KB
testcase_02 AC 44 ms
52,992 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 40 ms
53,112 KB
testcase_05 AC 39 ms
52,992 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 443 ms
81,024 KB
testcase_08 AC 80 ms
76,672 KB
testcase_09 AC 528 ms
81,440 KB
testcase_10 AC 564 ms
81,780 KB
testcase_11 AC 588 ms
81,892 KB
testcase_12 AC 577 ms
82,316 KB
testcase_13 AC 584 ms
81,816 KB
testcase_14 AC 709 ms
99,984 KB
testcase_15 AC 709 ms
99,720 KB
testcase_16 AC 73 ms
77,056 KB
testcase_17 AC 1,032 ms
95,548 KB
testcase_18 AC 71 ms
77,184 KB
testcase_19 AC 39 ms
52,864 KB
testcase_20 AC 41 ms
53,376 KB
testcase_21 AC 41 ms
52,992 KB
testcase_22 AC 805 ms
90,496 KB
testcase_23 WA -
testcase_24 AC 360 ms
81,484 KB
testcase_25 AC 481 ms
81,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

H, W, Y, X = map(int, input().split())
X -= 1
Y -= 1

A = [0] * H
for i in range(H):
    A[i] = list(map(int, input().split()))

import heapq

q = []
# print(A[Y])
s = A[Y][X]

v = [[0] * W for i in range(H)]
v[Y][X] = 1

if X + 1 < W:
    q.append([A[Y][X+1], Y, X+1])
    v[Y][X+1] = 1
if X - 1 > 0:
    q.append([A[Y][X-1], Y, X-1])
    v[Y][X-1] = 1
if Y + 1 < H:
    q.append([A[Y+1][X], Y+1, X])
    v[Y+1][X] = 1
if Y - 1 > 0:
    q.append([A[Y-1][X], Y-1, X])
    v[Y-1][X] = 1

heapq.heapify(q)


dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]

f = 1

while len(q) > 0:
    t = heapq.heappop(q)
    a = t[0]
    x = t[1]
    y = t[2]
    if s <= a:
        f = 0
        break
    s += a
    for i in range(4):
        nx = x + dx[i]
        ny = y + dy[i]
        # print(nx, ny)
        if nx < 0 or nx >= H or ny < 0 or ny >= W:
            continue
        if v[nx][ny] == 1:
            continue
        heapq.heappush(q, [A[nx][ny], nx, ny])
        v[nx][ny] = 1

# for i in range(H):
#     print(v[i])
# print(q)


if f == 0:
    print("No")
else:
    print("Yes")


0