結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー gr1msl3ygr1msl3y
提出日時 2022-05-22 22:49:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 889 ms / 3,000 ms
コード長 634 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 101,424 KB
最終ジャッジ日時 2024-09-20 12:57:05
合計ジャッジ時間 8,326 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 38 ms
52,864 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 36 ms
52,736 KB
testcase_07 AC 373 ms
81,152 KB
testcase_08 AC 85 ms
76,672 KB
testcase_09 AC 414 ms
81,536 KB
testcase_10 AC 451 ms
81,776 KB
testcase_11 AC 467 ms
81,328 KB
testcase_12 AC 460 ms
81,792 KB
testcase_13 AC 450 ms
81,616 KB
testcase_14 AC 583 ms
101,424 KB
testcase_15 AC 602 ms
101,268 KB
testcase_16 AC 77 ms
76,928 KB
testcase_17 AC 889 ms
96,532 KB
testcase_18 AC 76 ms
77,184 KB
testcase_19 AC 41 ms
52,480 KB
testcase_20 AC 42 ms
53,120 KB
testcase_21 AC 39 ms
52,736 KB
testcase_22 AC 626 ms
90,368 KB
testcase_23 AC 38 ms
52,608 KB
testcase_24 AC 300 ms
81,236 KB
testcase_25 AC 393 ms
81,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq as hq
H, W, Y, X = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(H)]
Y -= 1
X -= 1
seen = [[0]*W for _ in range(H)]
seen[Y][X] = 1
v = A[Y][X]
A[Y][X] = 0
ct = 0

mv = [[1, 0], [0, 1], [-1, 0], [0, -1]]
task = [(0, Y, X)]
while task:
    d, x, y = hq.heappop(task)
    if d >= v:
        break
    v += d
    ct += 1
    for mx, my in mv:
        nx, ny = x+mx, y+my
        if not (0 <= nx < H and 0 <= ny < W):
            continue
        if seen[nx][ny]:
            continue
        hq.heappush(task, (A[nx][ny], nx, ny))
        seen[nx][ny] = 1

print('Yes' if ct == H*W else 'No')
0