結果
問題 | No.1490 スライムと爆弾 |
ユーザー | siman |
提出日時 | 2022-06-29 02:37:16 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 280 ms / 2,000 ms |
コード長 | 1,793 bytes |
コンパイル時間 | 2,875 ms |
コンパイル使用メモリ | 141,556 KB |
実行使用メモリ | 39,168 KB |
最終ジャッジ日時 | 2024-11-21 21:50:21 |
合計ジャッジ時間 | 7,987 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 16 ms
34,944 KB |
testcase_01 | AC | 16 ms
35,072 KB |
testcase_02 | AC | 16 ms
34,840 KB |
testcase_03 | AC | 16 ms
35,048 KB |
testcase_04 | AC | 15 ms
35,004 KB |
testcase_05 | AC | 17 ms
34,944 KB |
testcase_06 | AC | 16 ms
35,032 KB |
testcase_07 | AC | 16 ms
34,964 KB |
testcase_08 | AC | 17 ms
35,000 KB |
testcase_09 | AC | 17 ms
34,944 KB |
testcase_10 | AC | 17 ms
35,036 KB |
testcase_11 | AC | 16 ms
34,968 KB |
testcase_12 | AC | 18 ms
34,844 KB |
testcase_13 | AC | 135 ms
36,992 KB |
testcase_14 | AC | 159 ms
37,120 KB |
testcase_15 | AC | 85 ms
35,932 KB |
testcase_16 | AC | 123 ms
36,864 KB |
testcase_17 | AC | 73 ms
35,560 KB |
testcase_18 | AC | 159 ms
37,120 KB |
testcase_19 | AC | 150 ms
36,992 KB |
testcase_20 | AC | 110 ms
36,480 KB |
testcase_21 | AC | 66 ms
35,584 KB |
testcase_22 | AC | 143 ms
37,248 KB |
testcase_23 | AC | 17 ms
34,964 KB |
testcase_24 | AC | 16 ms
34,980 KB |
testcase_25 | AC | 186 ms
37,216 KB |
testcase_26 | AC | 183 ms
37,300 KB |
testcase_27 | AC | 183 ms
37,376 KB |
testcase_28 | AC | 130 ms
36,992 KB |
testcase_29 | AC | 131 ms
36,864 KB |
testcase_30 | AC | 280 ms
39,168 KB |
ソースコード
#include <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <climits> #include <map> #include <queue> #include <set> #include <cstring> #include <vector> using namespace std; typedef long long ll; ll S[2010][2010]; int main() { int H, W, N, M; cin >> H >> W >> N >> M; int T[N]; int U[N]; int L[N]; int R[N]; ll A[N]; for (int i = 0; i < N; ++i) { cin >> T[i] >> U[i] >> L[i] >> R[i] >> A[i]; } int X[M]; int Y[M]; int B[M]; ll C[M]; for (int i = 0; i < M; ++i) { cin >> Y[i] >> X[i] >> B[i] >> C[i]; } memset(S, 0, sizeof(S)); for (int i = 0; i < M; ++i) { int y = Y[i]; int x = X[i]; int b = B[i]; ll c = C[i]; int ly = max(1, y - b); int lx = max(1, x - b); int ry = min(H, y + b); int rx = min(W, x + b); // fprintf(stderr, "(%d, %d) - (%d, %d)\n", ly, lx, ry, rx); S[ly][lx] += c; S[ly][rx + 1] -= c; S[ry + 1][lx] -= c; S[ry + 1][rx + 1] += c; } for (int y = 0; y <= H; ++y) { ll sum = 0; for (int x = 1; x <= W; ++x) { sum += S[y][x]; S[y][x] = sum + S[y][x - 1]; } } for (int x = 0; x <= W; ++x) { ll sum = 0; for (int y = 1; y <= H; ++y) { sum += S[y][x]; S[y][x] = sum + S[y - 1][x]; } } /* for (int y = 0; y <= H; ++y) { for (int x = 0; x <= W; ++x) { cerr << S[y][x] << " "; } cerr << endl; } */ int ans = 0; for (int i = 0; i < N; ++i) { int ly = T[i]; int ry = U[i]; int lx = L[i]; int rx = R[i]; // fprintf(stderr, "(%d, %d) - (%d, %d)\n", ly, lx, ry, rx); ll damage = S[ry][rx] - S[ry][lx - 1] - S[ly - 1][rx] + S[ly - 1][lx - 1]; if (damage < A[i]) ++ans; } cout << ans << endl; return 0; }