結果

問題 No.1490 スライムと爆弾
ユーザー merom686merom686
提出日時 2021-04-23 22:37:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 1,575 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 204,424 KB
実行使用メモリ 36,608 KB
最終ジャッジ日時 2024-07-04 08:23:04
合計ジャッジ時間 4,194 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 52 ms
22,400 KB
testcase_14 AC 59 ms
28,032 KB
testcase_15 AC 37 ms
25,088 KB
testcase_16 AC 45 ms
17,536 KB
testcase_17 AC 28 ms
21,760 KB
testcase_18 AC 60 ms
24,960 KB
testcase_19 AC 55 ms
27,776 KB
testcase_20 AC 42 ms
24,192 KB
testcase_21 AC 30 ms
23,296 KB
testcase_22 AC 52 ms
20,096 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 70 ms
36,352 KB
testcase_26 AC 73 ms
36,352 KB
testcase_27 AC 72 ms
36,608 KB
testcase_28 AC 63 ms
34,688 KB
testcase_29 AC 66 ms
34,712 KB
testcase_30 AC 117 ms
36,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using ll = long long;
using namespace std;

ll s[2001][2001];

struct P {
    int t, u, l, r, a;
};

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int h, w, n, m;
    cin >> h >> w >> n >> m;

    vector<P> p(n);
    for (int i = 0; i < n; i++) {
        int t, u, l, r, a;
        cin >> t >> u >> l >> r >> a;
        t--; l--;
        t--; u--; l--; r--;

        p[i] = { t, u, l, r, a };
    }

    for (int i = 0; i < m; i++) {
        int x, y, b, c;
        cin >> x >> y >> b >> c;
        int t = max(x - b - 1, 0);
        int u = min(x + b, h);
        int l = max(y - b - 1, 0);
        int r = min(y + b, w);

        s[t][l] += c;
        s[t][r] -= c;
        s[u][l] -= c;
        s[u][r] += c;
    }
    for (int l = 0; l < 2; l++) {
        for (int i = 1; i <= h; i++) {
            for (int j = 0; j <= w; j++) {
                s[i][j] += s[i - 1][j];
            }
        }
        for (int i = 0; i <= h; i++) {
            for (int j = 1; j <= w; j++) {
                s[i][j] += s[i][j - 1];
            }
        }
        //for (int i = 0; i <= h; i++) {
        //    for (int j = 0; j <= w; j++) {
        //        cout << s[i][j] << ' ';
        //    }
        //    cout << '\n';
        //}
        //cout << '\n';
    }

    int ans = 0;
    for (auto [t, u, l, r, a] : p) {
        ll c = s[u][r] - (l < 0 ? 0 : s[u][l]) - (t < 0 ? 0 : s[t][r]) + (l < 0 || t < 0 ? 0 : s[t][l]);
        //cout << c << ' ' << a << endl;
        ans += c < a;
    }

    cout << ans << endl;

    return 0;
}
0