結果

問題 No.1490 スライムと爆弾
ユーザー convexineqconvexineq
提出日時 2021-04-23 22:34:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 519 ms / 2,000 ms
コード長 1,098 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 122,080 KB
最終ジャッジ日時 2024-07-04 08:21:23
合計ジャッジ時間 7,432 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,548 KB
testcase_01 AC 37 ms
54,188 KB
testcase_02 AC 47 ms
62,528 KB
testcase_03 AC 47 ms
61,028 KB
testcase_04 AC 48 ms
61,152 KB
testcase_05 AC 48 ms
62,360 KB
testcase_06 AC 48 ms
60,948 KB
testcase_07 AC 47 ms
61,424 KB
testcase_08 AC 47 ms
61,508 KB
testcase_09 AC 47 ms
61,084 KB
testcase_10 AC 41 ms
54,380 KB
testcase_11 AC 44 ms
60,352 KB
testcase_12 AC 47 ms
61,420 KB
testcase_13 AC 256 ms
96,264 KB
testcase_14 AC 284 ms
107,224 KB
testcase_15 AC 250 ms
96,028 KB
testcase_16 AC 230 ms
94,548 KB
testcase_17 AC 208 ms
98,592 KB
testcase_18 AC 302 ms
107,056 KB
testcase_19 AC 282 ms
103,396 KB
testcase_20 AC 267 ms
95,988 KB
testcase_21 AC 231 ms
92,716 KB
testcase_22 AC 272 ms
98,208 KB
testcase_23 AC 38 ms
52,408 KB
testcase_24 AC 37 ms
53,196 KB
testcase_25 AC 519 ms
121,772 KB
testcase_26 AC 455 ms
121,624 KB
testcase_27 AC 501 ms
121,640 KB
testcase_28 AC 352 ms
108,800 KB
testcase_29 AC 342 ms
108,208 KB
testcase_30 AC 443 ms
122,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
readline = sys.stdin.readline

h,w,n,m = map(int,readline().split())
tulra = [list(map(int,readline().split())) for _ in range(n)]

b = [[0]*(w+1) for _ in range(h+1)]
for _ in range(m):
    x,y,d,c = map(int,readline().split())
    x -= 1
    y -= 1
    lx = max(0,x-d)
    rx = min(h,x+d+1)
    ly = max(0,y-d)
    ry = min(w,y+d+1)
    b[lx][ly] += c
    b[rx][ly] += -c
    b[lx][ry] += -c
    b[rx][ry] += c

for i in range(h+1):
    for j in range(w):
        b[i][j+1] += b[i][j]
for j in range(w+1):
    for i in range(h):
        b[i+1][j] += b[i][j]

for i in range(h+1):
    for j in range(w):
        b[i][j+1] += b[i][j]
for j in range(w+1):
    for i in range(h):
        b[i+1][j] += b[i][j]

ans = 0
for t,u,l,r,a in tulra:
    t -= 1
    u -= 1
    l -= 1
    r -= 1
    #print(t,u,l,r,a)
    #print((b[t][l] if t and l else 0), (b[u][l-1] if l else 0), (b[t-1][r] if t else 0), b[u][r])
    v = (b[t-1][l-1] if t and l else 0) - (b[u][l-1] if l else 0) - (b[t-1][r] if t else 0) + b[u][r]
    ans += int(a > v)
    #print(v)
print(ans)
0