結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー rlangevinrlangevin
提出日時 2023-01-21 19:23:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,383 ms / 3,000 ms
コード長 778 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 134,148 KB
最終ジャッジ日時 2024-06-24 02:11:38
合計ジャッジ時間 12,390 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,864 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 43 ms
52,480 KB
testcase_03 AC 44 ms
52,864 KB
testcase_04 AC 43 ms
52,992 KB
testcase_05 AC 43 ms
52,224 KB
testcase_06 AC 45 ms
52,480 KB
testcase_07 AC 620 ms
115,124 KB
testcase_08 AC 93 ms
76,544 KB
testcase_09 AC 680 ms
113,932 KB
testcase_10 AC 717 ms
116,108 KB
testcase_11 AC 759 ms
118,360 KB
testcase_12 AC 746 ms
116,632 KB
testcase_13 AC 760 ms
117,616 KB
testcase_14 AC 828 ms
134,148 KB
testcase_15 AC 830 ms
134,008 KB
testcase_16 AC 78 ms
76,928 KB
testcase_17 AC 1,383 ms
132,508 KB
testcase_18 AC 78 ms
76,800 KB
testcase_19 AC 42 ms
52,608 KB
testcase_20 AC 43 ms
52,864 KB
testcase_21 AC 45 ms
52,992 KB
testcase_22 AC 992 ms
124,492 KB
testcase_23 AC 42 ms
52,736 KB
testcase_24 AC 420 ms
93,904 KB
testcase_25 AC 649 ms
114,832 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 = []
dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]
for k in range(4):
    x = X + dx[k]
    y = Y + dy[k]
    if x < 0 or x > H - 1 or y < 0 or y > W - 1:
        continue
    heappush(Q, (A[x][y], x, y))
    S.add((x, y))

now = A[X][Y]
while Q:
    v, px, py = heappop(Q)
    if v >= now:
        print("No")
        exit()
    now += v
    
    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
        S.add((x, y))
        heappush(Q, (A[x][y], x, y))
print("Yes")
0