結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,656 KB
testcase_01 AC 36 ms
53,484 KB
testcase_02 AC 44 ms
61,304 KB
testcase_03 AC 43 ms
59,484 KB
testcase_04 AC 47 ms
59,840 KB
testcase_05 AC 42 ms
59,640 KB
testcase_06 AC 44 ms
61,172 KB
testcase_07 AC 44 ms
59,956 KB
testcase_08 AC 42 ms
59,320 KB
testcase_09 AC 44 ms
60,204 KB
testcase_10 AC 43 ms
61,404 KB
testcase_11 AC 43 ms
59,092 KB
testcase_12 AC 41 ms
59,668 KB
testcase_13 AC 240 ms
96,084 KB
testcase_14 AC 283 ms
106,892 KB
testcase_15 AC 246 ms
95,396 KB
testcase_16 AC 216 ms
94,368 KB
testcase_17 AC 192 ms
98,216 KB
testcase_18 AC 308 ms
106,540 KB
testcase_19 AC 289 ms
103,132 KB
testcase_20 AC 245 ms
95,920 KB
testcase_21 AC 212 ms
92,620 KB
testcase_22 AC 248 ms
98,016 KB
testcase_23 AC 36 ms
52,068 KB
testcase_24 AC 36 ms
53,020 KB
testcase_25 AC 568 ms
121,848 KB
testcase_26 AC 517 ms
121,872 KB
testcase_27 AC 587 ms
121,880 KB
testcase_28 AC 367 ms
108,736 KB
testcase_29 AC 364 ms
108,636 KB
testcase_30 AC 464 ms
121,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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+2) for _ in range(h+2)]
for _ in range(m):
    x,y,d,c = map(int,readline().split())
    lx,rx,ly,ry = max(1,x-d), min(h,x+d)+1, max(1,y-d), min(w,y+d)+1
    b[lx][ly] += c
    b[rx][ly] -= c
    b[lx][ry] -= c
    b[rx][ry] += c
for _ in range(2):
    for i in range(h+2):
        for j in range(w+1):
            b[i][j+1] += b[i][j]
    for j in range(w+2):
        for i in range(h+1):
            b[i+1][j] += b[i][j]

print(sum(int(a > b[t-1][l-1] - b[u][l-1] - b[t-1][r] + b[u][r]) for t,u,l,r,a in tulra))
0