結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー H20H20
提出日時 2022-04-10 19:31:58
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 758 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 101,448 KB
最終ジャッジ日時 2024-06-26 20:42:41
合計ジャッジ時間 7,676 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,160 KB
testcase_01 AC 41 ms
53,228 KB
testcase_02 AC 37 ms
53,088 KB
testcase_03 AC 38 ms
53,916 KB
testcase_04 AC 38 ms
54,248 KB
testcase_05 AC 37 ms
52,748 KB
testcase_06 WA -
testcase_07 AC 396 ms
81,532 KB
testcase_08 WA -
testcase_09 AC 439 ms
81,508 KB
testcase_10 WA -
testcase_11 AC 509 ms
81,712 KB
testcase_12 AC 501 ms
82,408 KB
testcase_13 AC 71 ms
77,268 KB
testcase_14 AC 634 ms
101,196 KB
testcase_15 AC 633 ms
101,448 KB
testcase_16 AC 73 ms
77,452 KB
testcase_17 AC 995 ms
96,472 KB
testcase_18 AC 74 ms
77,452 KB
testcase_19 AC 38 ms
53,760 KB
testcase_20 WA -
testcase_21 AC 38 ms
55,116 KB
testcase_22 AC 688 ms
90,872 KB
testcase_23 AC 38 ms
53,516 KB
testcase_24 AC 312 ms
81,396 KB
testcase_25 AC 429 ms
81,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

H,W,Y,X = map(int, input().split())
A = []
for _ in range(H):
    A.append(list(map(int, input().split())))

if not(1<=H<=500 and 1<=W<=500 and len(A)==H and 1<=Y<=H and 1<=X<=W):
    exit()
for a in A:
    if not (len(a)==W and 1<=min(a) and max(a)<=10**9):
        exit()


T = [[0]*W for _ in range(H)]
H,W,Y,X=H-1,W-1,Y-1,X-1
heap = []
T[Y][X]=1
V = A[Y][X]
A[Y][X]=0
heapq.heappush(heap,(A[Y][X],Y,X))

HI = [1,0,-1,0]
WI = [0,1,0,-1]
while len(heap):
    v,h,w = heapq.heappop(heap)
    if V<=v:
        print('No')
        exit()
    V+=v
    for i in range(4):
        nh=h+HI[i]
        nw=w+WI[i]
        if 0<=nh<H and 0<=nw<W and T[nh][nw]==0:
            T[nh][nw]=1
            heapq.heappush(heap,(A[nh][nw],nh,nw))
print('Yes')
0