結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー ああいいああいい
提出日時 2022-05-20 22:33:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 744 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 102,384 KB
最終ジャッジ日時 2024-09-20 08:49:07
合計ジャッジ時間 9,572 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 WA -
testcase_05 AC 39 ms
52,480 KB
testcase_06 WA -
testcase_07 AC 376 ms
80,976 KB
testcase_08 WA -
testcase_09 AC 408 ms
81,264 KB
testcase_10 AC 450 ms
81,680 KB
testcase_11 AC 487 ms
81,320 KB
testcase_12 AC 476 ms
81,548 KB
testcase_13 AC 466 ms
81,952 KB
testcase_14 WA -
testcase_15 AC 657 ms
100,576 KB
testcase_16 AC 74 ms
76,800 KB
testcase_17 AC 928 ms
96,344 KB
testcase_18 AC 71 ms
77,184 KB
testcase_19 AC 39 ms
52,736 KB
testcase_20 AC 40 ms
52,864 KB
testcase_21 AC 42 ms
52,480 KB
testcase_22 AC 680 ms
89,980 KB
testcase_23 AC 40 ms
52,736 KB
testcase_24 AC 314 ms
81,352 KB
testcase_25 AC 435 ms
81,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import heapq

now = A[Y - 1][X - 1]
memo = [[0] * W for _ in range(H)]
memo[Y - 1][X - 1] = 1
count = 1
q = []
l = [(-1,0),(1,0),(0,1),(0,-1)]
X -= 1
Y -= 1
for i,j in l:
    if 0 <= Y + i < H and 0 <= X + j < W:
        heapq.heappush(q,(A[Y + i][X + j],Y + i,X + j))
        memo[Y + i][X + j] = 1
import sys
while q:
    a,y,x = heapq.heappop(q)
    if a > now:
        print('No')
        exit()
    now += a
    #memo[y][x] = 1
    for i,j in l:
        if 0 <= y + i < H and 0 <= x + j < W:
            if memo[y + i][x + j] == 0:
                memo[y + i][x + j] = 1
                heapq.heappush(q,(A[y + i][x + j],y + i,x + j))
print('Yes')
0