結果

問題 No.1490 スライムと爆弾
ユーザー mkawa2mkawa2
提出日時 2021-04-23 23:20:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 566 ms / 2,000 ms
コード長 1,427 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 121,600 KB
最終ジャッジ日時 2024-07-04 08:45:28
合計ジャッジ時間 7,851 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 48 ms
60,288 KB
testcase_03 AC 50 ms
60,544 KB
testcase_04 AC 49 ms
60,928 KB
testcase_05 AC 48 ms
60,544 KB
testcase_06 AC 48 ms
60,800 KB
testcase_07 AC 49 ms
60,544 KB
testcase_08 AC 48 ms
60,416 KB
testcase_09 AC 48 ms
61,056 KB
testcase_10 AC 41 ms
52,992 KB
testcase_11 AC 42 ms
52,864 KB
testcase_12 AC 47 ms
60,672 KB
testcase_13 AC 247 ms
96,420 KB
testcase_14 AC 284 ms
107,180 KB
testcase_15 AC 236 ms
95,232 KB
testcase_16 AC 224 ms
94,208 KB
testcase_17 AC 337 ms
84,568 KB
testcase_18 AC 303 ms
107,264 KB
testcase_19 AC 286 ms
102,784 KB
testcase_20 AC 262 ms
95,488 KB
testcase_21 AC 215 ms
92,928 KB
testcase_22 AC 248 ms
97,152 KB
testcase_23 AC 38 ms
52,608 KB
testcase_24 AC 38 ms
52,480 KB
testcase_25 AC 558 ms
106,380 KB
testcase_26 AC 542 ms
106,112 KB
testcase_27 AC 566 ms
106,368 KB
testcase_28 AC 374 ms
108,416 KB
testcase_29 AC 365 ms
108,288 KB
testcase_30 AC 464 ms
121,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
inf = 10 ** 16
md = 10 ** 9 + 7
# md = 998244353

h, w, n, m = LI()
ss = LLI(n)
cs = [[0] * (w + 2) for _ in range(h + 2)]
for _ in range(m):
    x, y, b, c = LI()
    i0 = max(1, x - b)
    i1 = min(h+1, x + b + 1)
    j0 = max(1, y - b)
    j1 = min(w+1, y + b + 1)
    cs[i0][j0] += c
    cs[i1][j1] += c
    cs[i0][j1] -= c
    cs[i1][j0] -= c
for i in range(1, h + 1):
    for j in range(w):
        cs[i][j + 1] += cs[i][j]
for j in range(1, w + 1):
    for i in range(h):
        cs[i + 1][j] += cs[i][j]
for i in range(1, h + 1):
    for j in range(w):
        cs[i][j + 1] += cs[i][j]
for j in range(1, w + 1):
    for i in range(h):
        cs[i + 1][j] += cs[i][j]
# p2D(cs)


ans = 0
for t, u, l, r, a in ss:
    t, l = t - 1, l - 1
    # print(cs[t][l] + cs[u][r] - cs[t][r] - cs[u][l])
    if cs[t][l] + cs[u][r] - cs[t][r] - cs[u][l] < a:
        ans += 1

print(ans)
0