結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー kept1994kept1994
提出日時 2022-10-30 18:13:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,046 ms / 3,000 ms
コード長 935 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 99,880 KB
最終ジャッジ日時 2024-07-07 09:59:59
合計ジャッジ時間 9,895 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 40 ms
52,608 KB
testcase_05 AC 44 ms
51,968 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 418 ms
80,768 KB
testcase_08 AC 89 ms
76,416 KB
testcase_09 AC 455 ms
80,936 KB
testcase_10 AC 489 ms
80,904 KB
testcase_11 AC 524 ms
81,332 KB
testcase_12 AC 506 ms
81,280 KB
testcase_13 AC 508 ms
81,508 KB
testcase_14 AC 638 ms
99,636 KB
testcase_15 AC 644 ms
99,880 KB
testcase_16 AC 73 ms
76,800 KB
testcase_17 AC 1,046 ms
96,484 KB
testcase_18 AC 80 ms
76,800 KB
testcase_19 AC 41 ms
52,096 KB
testcase_20 AC 42 ms
52,608 KB
testcase_21 AC 43 ms
52,352 KB
testcase_22 AC 710 ms
89,960 KB
testcase_23 AC 41 ms
52,480 KB
testcase_24 AC 306 ms
80,584 KB
testcase_25 AC 457 ms
81,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
import heapq
INF = 10 ** 16

def main():
    H, W, Y, X = map(int, input().split())
    G = []
    for _ in range(H):
        G.append(list(map(int, input().split())))
    hq = [(0, Y - 1, X - 1)]
    heapq.heapify(hq)
    seen = [[0] * W for _ in range(H)]
    seen[Y - 1][X - 1] = 1
    now = G[Y - 1][X - 1]
    G[Y - 1][X - 1] = 0
    while hq:
        cost, nowy, nowx = heapq.heappop(hq)
        if cost >= now:
            print("No")
            return
        now += cost
        for dx, dy in [(0, 1), (1, 0), (-1, 0), (0, -1)]:
            nexty = nowy + dy
            nextx = nowx + dx
            if nexty < 0 or nextx < 0 or nexty >= H or nextx >= W or seen[nexty][nextx]:
                continue
            
            heapq.heappush(hq, (G[nexty][nextx], nexty, nextx))
            seen[nexty][nextx] = 1
        
    print("Yes")
    return


if __name__ == '__main__':
    main()
0