結果

問題 No.1490 スライムと爆弾
ユーザー netyo715netyo715
提出日時 2021-01-04 00:59:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 941 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 121,728 KB
最終ジャッジ日時 2024-10-13 18:56:52
合計ジャッジ時間 6,400 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 49 ms
60,032 KB
testcase_03 AC 51 ms
61,184 KB
testcase_04 AC 51 ms
60,416 KB
testcase_05 AC 50 ms
60,416 KB
testcase_06 AC 48 ms
59,776 KB
testcase_07 AC 49 ms
60,800 KB
testcase_08 AC 49 ms
59,904 KB
testcase_09 AC 49 ms
60,032 KB
testcase_10 AC 40 ms
52,864 KB
testcase_11 AC 43 ms
58,368 KB
testcase_12 AC 47 ms
60,160 KB
testcase_13 AC 233 ms
95,616 KB
testcase_14 AC 236 ms
106,880 KB
testcase_15 AC 203 ms
95,604 KB
testcase_16 AC 202 ms
93,824 KB
testcase_17 AC 179 ms
98,176 KB
testcase_18 AC 265 ms
106,752 KB
testcase_19 AC 257 ms
103,156 KB
testcase_20 AC 234 ms
95,608 KB
testcase_21 AC 187 ms
93,056 KB
testcase_22 AC 226 ms
97,920 KB
testcase_23 AC 36 ms
52,096 KB
testcase_24 AC 37 ms
51,968 KB
testcase_25 AC 277 ms
121,216 KB
testcase_26 AC 281 ms
121,344 KB
testcase_27 AC 285 ms
121,600 KB
testcase_28 AC 274 ms
108,288 KB
testcase_29 AC 268 ms
108,160 KB
testcase_30 AC 352 ms
121,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H, W, N, M = map(int, input().split())
SLIMES = [list(map(int, input().split())) for _ in range(N)]

grid = [[0]*(W+1) for _ in range(H+1)]
for _ in range(M):
    x, y, b, c = map(int, input().split())
    x -= 1
    y -= 1
    grid[max(0, x-b)][max(0, y-b)] += c
    grid[min(H, x+b+1)][min(W, y+b+1)] += c
    grid[max(0, x-b)][min(W, y+b+1)] -= c
    grid[min(H, x+b+1)][max(0, y-b)] -= c

for h in range(H+1):
    for w in range(1, W+1):
        grid[h][w] += grid[h][w-1]
for h in range(1, H+1):
    for w in range(W+1):
        grid[h][w] += grid[h-1][w]

for h in range(H):
    for w in range(1, W):
        grid[h][w] += grid[h][w-1]
for h in range(1, H):
    for w in range(W):
        grid[h][w] += grid[h-1][w]

ans = N
for t, u, l, r, a in SLIMES:
    t -= 1
    u -= 1
    l -= 1
    r -= 1
    if grid[u][r] + grid[t-1][l-1] - grid[u][l-1] -grid[t-1][r] >= a:
        ans -= 1

print(ans)
0