結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー ああいいああいい
提出日時 2022-05-20 22:39:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 920 ms / 3,000 ms
コード長 745 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 100,720 KB
最終ジャッジ日時 2024-09-20 08:57:21
合計ジャッジ時間 8,020 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,884 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 40 ms
52,608 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 35 ms
52,608 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 365 ms
80,840 KB
testcase_08 AC 75 ms
76,472 KB
testcase_09 AC 404 ms
81,012 KB
testcase_10 AC 453 ms
81,160 KB
testcase_11 AC 486 ms
81,704 KB
testcase_12 AC 479 ms
81,408 KB
testcase_13 AC 462 ms
81,760 KB
testcase_14 AC 593 ms
100,460 KB
testcase_15 AC 593 ms
100,720 KB
testcase_16 AC 65 ms
76,880 KB
testcase_17 AC 920 ms
96,464 KB
testcase_18 AC 67 ms
77,156 KB
testcase_19 AC 37 ms
52,352 KB
testcase_20 AC 37 ms
52,992 KB
testcase_21 AC 37 ms
53,248 KB
testcase_22 AC 648 ms
90,212 KB
testcase_23 AC 37 ms
52,480 KB
testcase_24 AC 298 ms
81,660 KB
testcase_25 AC 401 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