結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー KazunKazun
提出日時 2022-05-20 22:05:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 880 ms / 3,000 ms
コード長 715 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 100,284 KB
最終ジャッジ日時 2024-09-20 08:14:36
合計ジャッジ時間 7,960 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 37 ms
52,736 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 43 ms
52,224 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 383 ms
82,048 KB
testcase_08 AC 84 ms
78,080 KB
testcase_09 AC 413 ms
81,020 KB
testcase_10 AC 454 ms
81,920 KB
testcase_11 AC 478 ms
81,792 KB
testcase_12 AC 462 ms
81,720 KB
testcase_13 AC 454 ms
81,920 KB
testcase_14 AC 567 ms
100,156 KB
testcase_15 AC 576 ms
100,284 KB
testcase_16 AC 74 ms
78,208 KB
testcase_17 AC 880 ms
96,028 KB
testcase_18 AC 75 ms
77,824 KB
testcase_19 AC 38 ms
52,480 KB
testcase_20 AC 38 ms
52,864 KB
testcase_21 AC 38 ms
52,480 KB
testcase_22 AC 668 ms
90,368 KB
testcase_23 AC 38 ms
52,480 KB
testcase_24 AC 296 ms
81,664 KB
testcase_25 AC 412 ms
81,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

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

A=[[-1]*(W+2) for _ in range(H+2)]
for i in range(1,H+1):
    for j,a in enumerate(map(int,input().split()),1):
        A[i][j]=a

Q=[]
T=[[0]*(W+2) for _ in range(H+2)]; T[Y][X]=1

dx=[1,0,-1,0]; dy=[0,1,0,-1]
for d in range(4):
    py=Y+dy[d]; px=X+dx[d]
    if A[py][px]!=-1:
        heappush(Q,(A[py][px],py,px))
        T[py][px]=1

remain=H*W-1; attack=A[Y][X]
while Q:
    a,i,j=heappop(Q)
    if attack<=a:
        break

    attack+=a
    remain-=1

    for d in range(4):
        py=i+dy[d]; px=j+dx[d]
        if A[py][px]!=-1 and T[py][px]==0:
            heappush(Q,(A[py][px],py,px))
            T[py][px]=1

print("Yes" if remain==0 else "No")

0