結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー roarisroaris
提出日時 2022-05-20 23:20:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 395 ms / 3,000 ms
コード長 798 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 91,440 KB
最終ジャッジ日時 2024-09-20 09:43:38
合計ジャッジ時間 4,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,144 KB
testcase_01 AC 44 ms
53,760 KB
testcase_02 AC 41 ms
54,144 KB
testcase_03 AC 42 ms
54,016 KB
testcase_04 AC 40 ms
54,528 KB
testcase_05 AC 44 ms
54,016 KB
testcase_06 AC 39 ms
54,144 KB
testcase_07 AC 212 ms
81,024 KB
testcase_08 AC 75 ms
76,672 KB
testcase_09 AC 201 ms
81,376 KB
testcase_10 AC 212 ms
81,280 KB
testcase_11 AC 231 ms
81,432 KB
testcase_12 AC 219 ms
81,648 KB
testcase_13 AC 239 ms
81,912 KB
testcase_14 AC 272 ms
91,352 KB
testcase_15 AC 268 ms
91,440 KB
testcase_16 AC 66 ms
77,056 KB
testcase_17 AC 395 ms
89,272 KB
testcase_18 AC 67 ms
77,312 KB
testcase_19 AC 40 ms
54,016 KB
testcase_20 AC 41 ms
54,400 KB
testcase_21 AC 42 ms
54,912 KB
testcase_22 AC 307 ms
86,112 KB
testcase_23 AC 41 ms
54,144 KB
testcase_24 AC 179 ms
81,160 KB
testcase_25 AC 226 ms
81,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *
from heapq import *

H, W, X, Y = map(int, input().split())
X -= 1
Y -= 1
A = [list(map(int, input().split())) for _ in range(H)]
f = [[False]*W for _ in range(H)]
f[X][Y] = True
pq = []

for nx, ny in [(X-1, Y), (X+1, Y), (X, Y-1), (X, Y+1)]:
    if 0<=nx<H and 0<=ny<W:
        heappush(pq, (A[nx][ny], nx*1000+ny))
        f[nx][ny] = True

now = A[X][Y]

while pq:
    if pq[0][0]<now:
        a, xy = heappop(pq)
        x, y = divmod(xy, 1000)
        now += a
        
        for nx, ny in [(x-1, y), (x+1, y), (x, y-1), (x, y+1)]:
            if 0<=nx<H and 0<=ny<W and not f[nx][ny]:
                heappush(pq, (A[nx][ny], nx*1000+ny))
                f[nx][ny] = True
    else:
        exit(print('No'))
    
print('Yes')
0