結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー terasaterasa
提出日時 2022-05-23 16:25:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 982 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 80,128 KB
最終ジャッジ日時 2024-09-20 13:12:54
合計ジャッジ時間 3,665 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
66,048 KB
testcase_01 WA -
testcase_02 AC 60 ms
66,304 KB
testcase_03 AC 60 ms
65,920 KB
testcase_04 WA -
testcase_05 AC 62 ms
66,048 KB
testcase_06 WA -
testcase_07 AC 90 ms
79,104 KB
testcase_08 WA -
testcase_09 AC 99 ms
80,128 KB
testcase_10 AC 105 ms
79,744 KB
testcase_11 AC 102 ms
79,828 KB
testcase_12 AC 91 ms
79,360 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 90 ms
79,232 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 63 ms
65,792 KB
testcase_21 WA -
testcase_22 AC 90 ms
79,104 KB
testcase_23 AC 61 ms
65,664 KB
testcase_24 WA -
testcase_25 AC 92 ms
79,136 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 = [(0, R * W + C)]
darr = [(1, 0), (0, 1), (-1, 0), (0, -1)]
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))
print('Yes')
0