結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー terasaterasa
提出日時 2022-05-23 15:46:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,040 ms / 3,000 ms
コード長 1,203 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 106,040 KB
最終ジャッジ日時 2024-09-20 13:07:38
合計ジャッジ時間 9,328 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
66,580 KB
testcase_01 AC 69 ms
67,796 KB
testcase_02 AC 68 ms
66,804 KB
testcase_03 AC 61 ms
67,024 KB
testcase_04 AC 61 ms
67,296 KB
testcase_05 AC 62 ms
66,848 KB
testcase_06 AC 61 ms
66,200 KB
testcase_07 AC 606 ms
84,188 KB
testcase_08 AC 99 ms
80,152 KB
testcase_09 AC 514 ms
84,136 KB
testcase_10 AC 508 ms
84,680 KB
testcase_11 AC 544 ms
84,292 KB
testcase_12 AC 537 ms
84,132 KB
testcase_13 AC 545 ms
83,884 KB
testcase_14 AC 411 ms
106,040 KB
testcase_15 AC 403 ms
105,780 KB
testcase_16 AC 93 ms
79,532 KB
testcase_17 AC 1,040 ms
106,024 KB
testcase_18 AC 91 ms
79,372 KB
testcase_19 AC 61 ms
67,696 KB
testcase_20 AC 63 ms
68,088 KB
testcase_21 AC 63 ms
68,220 KB
testcase_22 AC 724 ms
99,956 KB
testcase_23 AC 64 ms
66,988 KB
testcase_24 AC 333 ms
83,800 KB
testcase_25 AC 597 ms
84,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict, Counter
import string
import random

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


H, W, R, C = map(int, input().split())
R -= 1
C -= 1
A = [list(map(int, input().split())) for _ in range(H)]


player = A[R][C]
h = []
darr = [(1, 0), (0, 1), (-1, 0), (0, -1)]
for dr, dc in darr:
    ar, ac = R + dr, C + dc
    if ar < 0 or ar > H - 1 or ac < 0 or ac > W - 1:
        continue
    heapq.heappush(h, (A[ar][ac], ar * W + ac))
flag = [[False for _ in range(W)] for _ in range(H)]
flag[R][C] = True

while len(h) > 0:
    enemy, hash_ = heapq.heappop(h)
    r, c = divmod(hash_, W)
    if flag[r][c] is True:
        continue
    if player <= enemy:
        print('No')
        exit()
    player += enemy
    flag[r][c] = True

    for dr, dc in darr:
        ar, ac = r + dr, c + dc
        if ar < 0 or ar > H - 1 or ac < 0 or ac > W - 1:
            continue
        if flag[ar][ac] is False:
            heapq.heappush(h, (A[ar][ac], ar * W + ac))
s = 0
for r in range(H):
    for c in range(W):
        s += A[r][c]
print('Yes')
0