結果

問題 No.1490 スライムと爆弾
ユーザー H3PO4H3PO4
提出日時 2022-08-02 21:36:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,787 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 143,448 KB
最終ジャッジ日時 2024-07-23 15:34:46
合計ジャッジ時間 28,296 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 495 ms
44,260 KB
testcase_01 AC 491 ms
44,380 KB
testcase_02 AC 495 ms
44,008 KB
testcase_03 AC 496 ms
44,140 KB
testcase_04 AC 505 ms
44,388 KB
testcase_05 AC 496 ms
43,996 KB
testcase_06 AC 496 ms
43,740 KB
testcase_07 AC 495 ms
43,736 KB
testcase_08 AC 496 ms
43,748 KB
testcase_09 AC 495 ms
43,992 KB
testcase_10 AC 495 ms
44,248 KB
testcase_11 AC 490 ms
44,124 KB
testcase_12 AC 502 ms
44,004 KB
testcase_13 AC 1,121 ms
89,160 KB
testcase_14 AC 1,001 ms
98,404 KB
testcase_15 AC 863 ms
82,500 KB
testcase_16 AC 959 ms
77,600 KB
testcase_17 AC 705 ms
84,000 KB
testcase_18 AC 1,045 ms
98,888 KB
testcase_19 AC 1,038 ms
93,964 KB
testcase_20 AC 951 ms
83,096 KB
testcase_21 AC 759 ms
74,968 KB
testcase_22 AC 1,020 ms
83,176 KB
testcase_23 AC 497 ms
44,252 KB
testcase_24 AC 494 ms
43,876 KB
testcase_25 AC 1,064 ms
127,844 KB
testcase_26 AC 1,070 ms
127,648 KB
testcase_27 AC 1,073 ms
127,896 KB
testcase_28 AC 1,362 ms
121,664 KB
testcase_29 AC 1,364 ms
120,744 KB
testcase_30 AC 1,787 ms
143,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

import numpy as np

input = sys.stdin.buffer.readline

H, W, N, M = map(int, input().split())
slimes = tuple(tuple(map(int, input().split())) for _ in range(N))
bombs = tuple(tuple(map(int, input().split())) for _ in range(M))

table = np.zeros((H + 2, W + 2), dtype=np.int64)
for x, y, b, c in bombs:
    x -= 1
    y -= 1
    u = max(x - b, 0) + 1
    d = min(x + b + 1, H) + 1
    l = max(y - b, 0) + 1
    r = min(y + b + 1, W) + 1
    table[u, l] += c
    table[u, r] -= c
    table[d, l] -= c
    table[d, r] += c

# 各マスの爆風を計算するimos
table = table.cumsum(axis=0)
table = table.cumsum(axis=1)

# スライム用のimos
table = table.cumsum(axis=0)
table = table.cumsum(axis=1)

ans = 0
for t, u, l, r, a in slimes:
    t -= 1
    l -= 1
    if table[t, l] - table[t, r] - table[u, l] + table[u, r] < a:
        ans += 1
print(ans)
0