結果

問題 No.1490 スライムと爆弾
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-23 23:10:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 989 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 143,096 KB
最終ジャッジ日時 2024-07-04 08:41:52
合計ジャッジ時間 6,431 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,704 KB
testcase_01 AC 36 ms
52,316 KB
testcase_02 AC 48 ms
62,804 KB
testcase_03 AC 47 ms
61,648 KB
testcase_04 WA -
testcase_05 AC 45 ms
62,188 KB
testcase_06 AC 45 ms
61,072 KB
testcase_07 AC 47 ms
62,744 KB
testcase_08 AC 47 ms
61,108 KB
testcase_09 WA -
testcase_10 AC 39 ms
53,780 KB
testcase_11 AC 46 ms
62,840 KB
testcase_12 AC 49 ms
63,216 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 36 ms
52,896 KB
testcase_25 AC 310 ms
124,296 KB
testcase_26 WA -
testcase_27 AC 311 ms
124,288 KB
testcase_28 AC 335 ms
124,692 KB
testcase_29 AC 313 ms
123,292 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

H, W, N, M = map(int, input().split())
slime = tuple(tuple(map(int, input().split())) for _ in range(N))
bomb = tuple(tuple(map(int, input().split())) for _ in range(M))

G = [[0] * (W+2) for _ in range(H+2)]
for x, y, b, c in bomb:
    Lx = max(0, x-b)
    Rx = min(H, x+b+1)
    Ly = max(0, y-b)
    Ry = min(W, y+b+1)
    G[Lx][Ly] += c
    G[Lx][Ry] -= c
    G[Rx][Ly] -= c
    G[Rx][Ry] += c

for i in range(H+2):
    for j in range(W+2):
        if i:
            G[i][j] += G[i-1][j]
for i in range(H+2):
    for j in range(W+2):
        if j:
            G[i][j] += G[i][j-1]
for i in range(H+2):
    for j in range(W+2):
        if i:
            G[i][j] += G[i-1][j]
for i in range(H+2):
    for j in range(W+2):
        if j:
            G[i][j] += G[i][j-1]
ans = 0
for t, u, l, r, a in slime:
    t -= 1
    l -= 1
    damage = G[t][l] + G[u][r] - G[t][r] - G[u][l]
    ans += damage < a
print(ans)
0