結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー rlangevinrlangevin
提出日時 2023-01-21 18:00:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 653 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 115,768 KB
最終ジャッジ日時 2024-06-24 01:04:35
合計ジャッジ時間 7,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,620 KB
testcase_01 AC 40 ms
54,240 KB
testcase_02 AC 41 ms
53,160 KB
testcase_03 AC 38 ms
52,956 KB
testcase_04 AC 39 ms
53,420 KB
testcase_05 AC 40 ms
54,724 KB
testcase_06 AC 40 ms
53,028 KB
testcase_07 WA -
testcase_08 AC 80 ms
76,312 KB
testcase_09 AC 569 ms
113,872 KB
testcase_10 WA -
testcase_11 AC 590 ms
113,340 KB
testcase_12 AC 605 ms
114,464 KB
testcase_13 AC 81 ms
77,868 KB
testcase_14 AC 167 ms
93,088 KB
testcase_15 AC 168 ms
93,144 KB
testcase_16 AC 72 ms
76,756 KB
testcase_17 AC 561 ms
115,120 KB
testcase_18 AC 71 ms
77,168 KB
testcase_19 AC 40 ms
53,084 KB
testcase_20 AC 41 ms
53,324 KB
testcase_21 AC 41 ms
53,140 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 313 ms
91,556 KB
testcase_25 AC 589 ms
114,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

H, W, X, Y = map(int, input().split())
A = []
for i in range(H):
    A.append(list(map(int, input().split())))
    
S = set()
X, Y = X - 1, Y - 1
S.add((X, Y))
Q = [(A[X][Y], X, Y)]
dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]
now = A[X][Y]
while Q:
    v, px, py = heappop(Q)
    for k in range(4):
        x = px + dx[k]
        y = py + dy[k]
        if x < 0 or x > H - 1 or y < 0 or y > W - 1:
            continue
        if (x, y) in S:
            continue
        if now <= A[x][y]:
            continue
        S.add((x, y))
        now += A[x][y]
        heappush(Q, (now, x, y))
print("Yes") if len(S) == H * W else print("No")
0