結果

問題 No.1490 スライムと爆弾
ユーザー netyo715netyo715
提出日時 2021-01-04 01:45:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 941 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 121,456 KB
最終ジャッジ日時 2024-11-17 19:29:18
合計ジャッジ時間 6,975 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,576 KB
testcase_01 AC 38 ms
52,260 KB
testcase_02 AC 46 ms
61,788 KB
testcase_03 AC 44 ms
61,700 KB
testcase_04 AC 47 ms
62,032 KB
testcase_05 AC 44 ms
60,628 KB
testcase_06 AC 44 ms
61,004 KB
testcase_07 AC 45 ms
61,632 KB
testcase_08 AC 44 ms
60,496 KB
testcase_09 AC 44 ms
62,540 KB
testcase_10 AC 38 ms
54,260 KB
testcase_11 AC 40 ms
59,096 KB
testcase_12 AC 43 ms
61,164 KB
testcase_13 AC 226 ms
95,884 KB
testcase_14 AC 228 ms
106,712 KB
testcase_15 AC 206 ms
95,264 KB
testcase_16 AC 203 ms
94,240 KB
testcase_17 AC 163 ms
98,048 KB
testcase_18 AC 250 ms
107,056 KB
testcase_19 AC 243 ms
103,016 KB
testcase_20 AC 261 ms
95,196 KB
testcase_21 AC 190 ms
93,388 KB
testcase_22 AC 218 ms
97,584 KB
testcase_23 AC 35 ms
52,132 KB
testcase_24 AC 36 ms
53,256 KB
testcase_25 AC 275 ms
121,052 KB
testcase_26 AC 276 ms
121,136 KB
testcase_27 AC 268 ms
121,112 KB
testcase_28 AC 258 ms
108,452 KB
testcase_29 AC 257 ms
108,188 KB
testcase_30 AC 352 ms
121,456 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