結果

問題 No.1490 スライムと爆弾
ユーザー H3PO4H3PO4
提出日時 2022-08-02 21:32:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 1,086 bytes
コンパイル時間 634 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 143,008 KB
最終ジャッジ日時 2024-07-23 15:31:33
合計ジャッジ時間 8,399 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,832 KB
testcase_01 AC 38 ms
53,316 KB
testcase_02 AC 47 ms
61,996 KB
testcase_03 AC 46 ms
60,824 KB
testcase_04 AC 47 ms
61,916 KB
testcase_05 AC 47 ms
60,828 KB
testcase_06 AC 46 ms
61,044 KB
testcase_07 AC 47 ms
61,156 KB
testcase_08 AC 47 ms
61,236 KB
testcase_09 AC 47 ms
60,648 KB
testcase_10 AC 40 ms
53,668 KB
testcase_11 AC 47 ms
62,028 KB
testcase_12 AC 49 ms
62,504 KB
testcase_13 AC 260 ms
107,108 KB
testcase_14 AC 253 ms
106,308 KB
testcase_15 AC 217 ms
100,616 KB
testcase_16 AC 222 ms
100,256 KB
testcase_17 AC 174 ms
99,556 KB
testcase_18 AC 293 ms
113,056 KB
testcase_19 AC 269 ms
108,972 KB
testcase_20 AC 226 ms
102,424 KB
testcase_21 AC 182 ms
96,424 KB
testcase_22 AC 246 ms
105,284 KB
testcase_23 AC 38 ms
52,836 KB
testcase_24 AC 38 ms
52,344 KB
testcase_25 AC 303 ms
124,224 KB
testcase_26 AC 305 ms
124,736 KB
testcase_27 AC 299 ms
124,352 KB
testcase_28 AC 328 ms
124,280 KB
testcase_29 AC 317 ms
123,088 KB
testcase_30 AC 417 ms
143,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

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 = [[0] * (W + 2) for _ in range(H + 2)]
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
for h in range(H + 1):
    for w in range(W + 2):
        table[h + 1][w] += table[h][w]
for h in range(H + 2):
    for w in range(W + 1):
        table[h][w + 1] += table[h][w]

# スライム用のimos
for h in range(H + 1):
    for w in range(W + 2):
        table[h + 1][w] += table[h][w]
for h in range(H + 2):
    for w in range(W + 1):
        table[h][w + 1] += table[h][w]

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