結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー AkariAkari
提出日時 2022-05-21 00:15:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,547 ms / 3,000 ms
コード長 827 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 60,016 KB
最終ジャッジ日時 2024-09-20 10:39:57
合計ジャッジ時間 24,919 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 481 ms
44,364 KB
testcase_01 AC 480 ms
44,120 KB
testcase_02 AC 479 ms
44,240 KB
testcase_03 AC 478 ms
44,368 KB
testcase_04 AC 491 ms
44,240 KB
testcase_05 AC 470 ms
43,988 KB
testcase_06 AC 483 ms
44,240 KB
testcase_07 AC 1,168 ms
46,972 KB
testcase_08 AC 487 ms
49,420 KB
testcase_09 AC 1,200 ms
49,296 KB
testcase_10 AC 1,211 ms
48,900 KB
testcase_11 AC 1,218 ms
49,004 KB
testcase_12 AC 1,213 ms
47,664 KB
testcase_13 AC 1,224 ms
46,032 KB
testcase_14 AC 1,129 ms
59,740 KB
testcase_15 AC 1,115 ms
60,016 KB
testcase_16 AC 470 ms
45,404 KB
testcase_17 AC 1,547 ms
55,244 KB
testcase_18 AC 484 ms
45,528 KB
testcase_19 AC 465 ms
44,240 KB
testcase_20 AC 469 ms
43,984 KB
testcase_21 AC 472 ms
44,112 KB
testcase_22 AC 1,322 ms
51,024 KB
testcase_23 AC 466 ms
44,240 KB
testcase_24 AC 868 ms
45,648 KB
testcase_25 AC 1,145 ms
47,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np
from heapq import heappush, heappop


def main():
    h, w, sy, sx = map(int, input().split())
    A = np.fromstring(sys.stdin.read(), np.int64, sep=' ').reshape(-1, w)
    sy -= 1
    sx -= 1
    b = A[sy, sx]
    A[sy, sx] = 0
    q = [(0, sy, sx)]
    cnt = 0
    dyx = [[1, 0], [-1, 0], [0, 1], [0, -1]]
    B = np.zeros_like(A, np.bool_)
    B[sy, sx] = True
    while q:
        a, y, x = heappop(q)
        if b <= a: break
        cnt += 1
        b += a
        for i in range(4):
            dy, dx = dyx[i]
            Y, X = y + dy, x + dx
            if Y < 0 or Y >= h or X < 0 or X >= w: continue
            if B[Y, X]: continue
            heappush(q, (A[Y, X], Y, X))
            B[Y, X] = True
    print('Yes' if cnt == h * w else 'No')




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