結果

問題 No.1490 スライムと爆弾
ユーザー uzzyuzzy
提出日時 2021-04-23 22:53:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 1,551 bytes
コンパイル時間 2,500 ms
コンパイル使用メモリ 185,524 KB
実行使用メモリ 36,608 KB
最終ジャッジ日時 2024-07-04 08:34:03
合計ジャッジ時間 6,203 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
34,560 KB
testcase_01 AC 24 ms
34,560 KB
testcase_02 AC 25 ms
34,688 KB
testcase_03 AC 24 ms
34,560 KB
testcase_04 AC 24 ms
34,688 KB
testcase_05 AC 24 ms
34,560 KB
testcase_06 AC 24 ms
34,688 KB
testcase_07 AC 24 ms
34,560 KB
testcase_08 AC 25 ms
34,560 KB
testcase_09 AC 24 ms
34,688 KB
testcase_10 AC 16 ms
34,688 KB
testcase_11 AC 24 ms
34,688 KB
testcase_12 AC 24 ms
34,560 KB
testcase_13 AC 90 ms
35,456 KB
testcase_14 AC 108 ms
36,352 KB
testcase_15 AC 83 ms
35,072 KB
testcase_16 AC 76 ms
35,712 KB
testcase_17 AC 74 ms
35,072 KB
testcase_18 AC 107 ms
36,352 KB
testcase_19 AC 112 ms
35,968 KB
testcase_20 AC 91 ms
35,200 KB
testcase_21 AC 75 ms
35,072 KB
testcase_22 AC 88 ms
36,096 KB
testcase_23 AC 24 ms
34,688 KB
testcase_24 AC 25 ms
34,688 KB
testcase_25 AC 177 ms
36,608 KB
testcase_26 AC 169 ms
36,608 KB
testcase_27 AC 172 ms
36,480 KB
testcase_28 AC 162 ms
34,688 KB
testcase_29 AC 163 ms
34,688 KB
testcase_30 AC 213 ms
36,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("O2")
#pragma GCC target ("avx2")
#include<bits/stdc++.h>
//#include<atcoder/all>
//using namespace atcoder;

using namespace std;
typedef long long ll;
#define rep(i, n) for(int i = 0; i < (n); i++)
#define rep1(i, n) for(int i = 1; i <= (n); i++)
#define co(x) cout << (x) << "\n"
#define cosp(x) cout << (x) << " "
#define ce(x) cerr << (x) << "\n"
#define cesp(x) cerr << (x) << " "
#define pb push_back
#define mp make_pair
#define chmin(x, y) x = min(x, y)
#define chmax(x, y) x = max(x, y)
#define Would
#define you
#define please


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


	int H, W, N, M;
	cin >> H >> W >> N >> M;

	int T[100000], U[100000], L[100000], R[100000], A[100000];
	rep(i, N) {
		cin >> T[i] >> U[i] >> L[i] >> R[i] >> A[i];
	}

	ll HW[2002][2002] = {};
	rep(i, M) {
		int x, y, b, c;
		cin >> x >> y >> b >> c;

		int x0 = max(1, x - b);
		int x1 = min(H + 1, x + 1 + b);
		int y0 = max(1, y - b);
		int y1 = min(W + 1, y + 1 + b);
		HW[x0][y0] += c;
		HW[x0][y1] -= c;
		HW[x1][y0] -= c;
		HW[x1][y1] += c;
	}
	rep1(i, H + 1) rep1(j, W) {
		HW[i][j + 1] += HW[i][j];
	}
	rep1(j, W + 1) rep1(i, H) {
		HW[i + 1][j] += HW[i][j];
	}
	rep1(i, H + 1) rep1(j, W) {
		HW[i][j + 1] += HW[i][j];
	}
	rep1(j, W + 1) rep1(i, H) {
		HW[i + 1][j] += HW[i][j];
	}

	int kotae = N;
	rep(i, N) {
		ll kari = 0;
		kari += HW[U[i]][R[i]];
		kari -= HW[U[i]][L[i] - 1];
		kari -= HW[T[i] - 1][R[i]];
		kari += HW[T[i] - 1][L[i] - 1];
		if (kari >= A[i]) kotae--;
	}
	co(kotae);


	Would you please return 0;
}
0