結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー titiatitia
提出日時 2022-05-20 21:27:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 692 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 101,612 KB
最終ジャッジ日時 2024-09-20 07:16:17
合計ジャッジ時間 9,517 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,648 KB
testcase_01 AC 36 ms
52,624 KB
testcase_02 AC 35 ms
54,340 KB
testcase_03 AC 36 ms
52,872 KB
testcase_04 AC 37 ms
52,896 KB
testcase_05 AC 36 ms
53,036 KB
testcase_06 AC 37 ms
53,368 KB
testcase_07 AC 366 ms
81,020 KB
testcase_08 AC 75 ms
76,768 KB
testcase_09 AC 414 ms
81,396 KB
testcase_10 AC 451 ms
81,964 KB
testcase_11 AC 479 ms
81,984 KB
testcase_12 AC 467 ms
82,180 KB
testcase_13 AC 464 ms
81,768 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 61 ms
77,056 KB
testcase_17 AC 892 ms
96,708 KB
testcase_18 AC 59 ms
77,104 KB
testcase_19 WA -
testcase_20 AC 38 ms
53,604 KB
testcase_21 AC 37 ms
53,656 KB
testcase_22 AC 647 ms
90,148 KB
testcase_23 AC 36 ms
53,476 KB
testcase_24 AC 277 ms
80,984 KB
testcase_25 AC 411 ms
81,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import heapq

H,W,x,y=map(int,input().split())
A=[list(map(int,input().split())) for i in range(H)]

x-=1
y-=1
NOW=A[x][y]

B=0
USE=[[0]*W for i in range(H)]

Q=[]

for z,w in [(x+1,y),(x-1,y),(x,y+1),(x,y-1)]:
    if 0<=z<H and 0<=w<W:
        heapq.heappush(Q,(A[z][w],z,w))
        USE[z][w]=1

while Q:
    if Q[0][0]<NOW:
        p,x,y=heapq.heappop(Q)
        NOW+=p
        USE[x][y]=1

        for z,w in [(x+1,y),(x-1,y),(x,y+1),(x,y-1)]:
            if 0<=z<H and 0<=w<W and USE[z][w]==0:
                heapq.heappush(Q,(A[z][w],z,w))
                USE[z][w]=1

    else:
        print("No")
        exit()

print("Yes")
        
    
    
0