結果

問題 No.1490 スライムと爆弾
ユーザー roarisroaris
提出日時 2021-04-23 22:49:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 487 ms / 2,000 ms
コード長 1,001 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 168,300 KB
最終ジャッジ日時 2024-07-04 08:32:03
合計ジャッジ時間 7,258 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,264 KB
testcase_01 AC 37 ms
52,736 KB
testcase_02 AC 46 ms
60,836 KB
testcase_03 AC 45 ms
61,904 KB
testcase_04 AC 46 ms
61,492 KB
testcase_05 AC 45 ms
60,884 KB
testcase_06 AC 45 ms
60,780 KB
testcase_07 AC 45 ms
60,616 KB
testcase_08 AC 44 ms
60,852 KB
testcase_09 AC 44 ms
62,268 KB
testcase_10 AC 37 ms
55,044 KB
testcase_11 AC 41 ms
59,972 KB
testcase_12 AC 45 ms
61,292 KB
testcase_13 AC 272 ms
117,900 KB
testcase_14 AC 288 ms
122,316 KB
testcase_15 AC 247 ms
101,024 KB
testcase_16 AC 231 ms
106,692 KB
testcase_17 AC 204 ms
116,736 KB
testcase_18 AC 301 ms
110,228 KB
testcase_19 AC 293 ms
120,896 KB
testcase_20 AC 267 ms
104,944 KB
testcase_21 AC 212 ms
101,848 KB
testcase_22 AC 263 ms
111,620 KB
testcase_23 AC 36 ms
53,512 KB
testcase_24 AC 35 ms
52,656 KB
testcase_25 AC 359 ms
144,816 KB
testcase_26 AC 362 ms
144,252 KB
testcase_27 AC 364 ms
144,168 KB
testcase_28 AC 389 ms
147,244 KB
testcase_29 AC 379 ms
153,180 KB
testcase_30 AC 487 ms
168,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H, W, N, M = map(int, input().split())
TULRA = [tuple(map(int, input().split())) for _ in range(N)]
XYBC = [tuple(map(int, input().split())) for _ in range(M)]
damage = [[0]*(W+1) for _ in range(H+1)]

for X, Y, B, C in XYBC:
    X -= 1
    Y -= 1
    sx = max(0, X-B)
    gx = min(H-1, X+B)
    sy = max(0, Y-B)
    gy = min(W-1, Y+B)
    damage[sx][sy] += C
    damage[sx][gy+1] -= C
    damage[gx+1][sy] -= C
    damage[gx+1][gy+1] += C

for i in range(H+1):
    for j in range(1, W+1):
        damage[i][j] += damage[i][j-1]

for i in range(W+1):
    for j in range(1, H+1):
        damage[j][i] += damage[j-1][i]

acc = [[0]*(W+1) for _ in range(H+1)]

for i in range(H):
    for j in range(W):
        acc[i+1][j+1] = acc[i+1][j]+acc[i][j+1]-acc[i][j]+damage[i][j]

ans = 0

for T, U, L, R, A in TULRA:
    T -= 1
    U -= 1
    L -= 1
    R -= 1
    dama = acc[U+1][R+1]-acc[U+1][L]-acc[T][R+1]+acc[T][L]
    
    if A-dama>0:
        ans += 1

print(ans)
0