結果

問題 No.1490 スライムと爆弾
ユーザー KudeKude
提出日時 2021-04-23 22:56:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 1,752 bytes
コンパイル時間 3,878 ms
コンパイル使用メモリ 266,104 KB
実行使用メモリ 67,840 KB
最終ジャッジ日時 2024-07-04 08:36:43
合計ジャッジ時間 6,881 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 71 ms
31,360 KB
testcase_14 AC 95 ms
40,704 KB
testcase_15 AC 65 ms
34,048 KB
testcase_16 AC 53 ms
22,016 KB
testcase_17 AC 56 ms
39,424 KB
testcase_18 AC 91 ms
40,704 KB
testcase_19 AC 93 ms
37,248 KB
testcase_20 AC 72 ms
31,360 KB
testcase_21 AC 54 ms
30,208 KB
testcase_22 AC 60 ms
25,344 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 161 ms
67,840 KB
testcase_26 AC 160 ms
67,840 KB
testcase_27 AC 161 ms
67,840 KB
testcase_28 AC 147 ms
65,920 KB
testcase_29 AC 150 ms
65,920 KB
testcase_30 AC 210 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i,n)for (int i = 0; i < int(n); ++i)
#define rrep(i,n)for (int i = int(n)-1; i >= 0; --i)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
template<class T> void chmax(T& a, const T& b) {a = max(a, b);}
template<class T> void chmin(T& a, const T& b) {a = min(a, b);}
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int h, w, n, m;
    cin >> h >> w >> n >> m;
    VVL s(h + 1, VL(w + 1));
    struct Slime {
        int u, d, l, r, a;
    };
    vector<Slime> slimes(n);
    for(auto& slm: slimes) cin >> slm.u >> slm.d >> slm.l >> slm.r >> slm.a, slm.u--, slm.l--;
    rep(_, m) {
        int x, y, b, c;
        cin >> x >> y >> b >> c;
        --x, --y;
        int u = max(0, x - b), d = min(x + b + 1, h), l = max(0, y - b), r = min(w, y + b + 1);
        s[u][l] += c;
        s[u][r] -= c;
        s[d][l] -= c;
        s[d][r] += c;
    }
    rep(i, h + 1) {
        ll now = 0;
        rep(j, w + 1) {
            now += s[i][j];
            s[i][j] = now;
        }
    }
    rep(j, w + 1) {
        ll now = 0;
        rep(i, h + 1) {
            now += s[i][j];
            s[i][j] = now;
        }
    }
    VVL sm(h + 1, VL(w + 1));
    rep(i, h) rep(j, w) sm[i+1][j+1] = s[i][j] + sm[i+1][j] + sm[i][j+1] - sm[i][j];
    int ans = 0;
    for(auto slm: slimes) {
        int u = slm.u, d = slm.d, l = slm.l, r = slm.r;
        ll rm = slm.a - (sm[d][r] - sm[u][r] - sm[d][l] + sm[u][l]);
        ans += rm > 0;
    }
    cout << ans << '\n';
}
0