結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー tassei903tassei903
提出日時 2022-05-21 09:52:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 890 ms / 3,000 ms
コード長 1,111 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 99,880 KB
最終ジャッジ日時 2024-09-20 11:19:54
合計ジャッジ時間 7,842 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 36 ms
52,608 KB
testcase_04 AC 36 ms
52,864 KB
testcase_05 AC 36 ms
52,608 KB
testcase_06 AC 35 ms
52,896 KB
testcase_07 AC 362 ms
81,408 KB
testcase_08 AC 78 ms
76,672 KB
testcase_09 AC 404 ms
81,448 KB
testcase_10 AC 434 ms
81,632 KB
testcase_11 AC 469 ms
81,460 KB
testcase_12 AC 466 ms
82,176 KB
testcase_13 AC 464 ms
82,232 KB
testcase_14 AC 571 ms
99,840 KB
testcase_15 AC 565 ms
99,880 KB
testcase_16 AC 71 ms
77,312 KB
testcase_17 AC 890 ms
96,916 KB
testcase_18 AC 70 ms
77,184 KB
testcase_19 AC 40 ms
52,864 KB
testcase_20 AC 38 ms
53,016 KB
testcase_21 AC 39 ms
53,504 KB
testcase_22 AC 634 ms
90,768 KB
testcase_23 AC 37 ms
52,864 KB
testcase_24 AC 280 ms
80,712 KB
testcase_25 AC 405 ms
81,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

h,w,y,x = na()
y-=1
x-=1
a = [na() for i in range(h)]

from heapq import *
hq = [(a[y][x], y, x)]
z = a[y][x]
hq = []
visited = [[0 for j in range(w)]for i in range(h)]
visited[y][x] = 1
for dy, dx in [[1,0],[-1,0],[0,1],[0,-1]]:
    nx = x + dx
    ny = y + dy
    if 0 <= ny < h and 0 <= nx < w and visited[ny][nx]^1:
        heappush(hq, (a[ny][nx],ny,nx))
        visited[ny][nx] = 1
ans = 1
while hq:
    v,y,x = heappop(hq)#print(v,y,x)
    if z <= v:
        ans = 0
        break
    z += v
    for dy, dx in [[1,0],[-1,0],[0,1],[0,-1]]:
        nx = x + dx
        ny = y + dy
        if 0 <= ny < h and 0 <= nx < w and visited[ny][nx]^1:
            heappush(hq, (a[ny][nx],ny,nx))
            visited[ny][nx] = 1
if ans:
    Yes()
else:
    No()
0