結果
問題 | No.1490 スライムと爆弾 |
ユーザー | milanis48663220 |
提出日時 | 2021-04-23 22:46:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 130 ms / 2,000 ms |
コード長 | 2,082 bytes |
コンパイル時間 | 813 ms |
コンパイル使用メモリ | 96,056 KB |
実行使用メモリ | 68,480 KB |
最終ジャッジ日時 | 2024-07-04 08:29:05 |
合計ジャッジ時間 | 3,184 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 60 ms
41,472 KB |
testcase_14 | AC | 73 ms
51,456 KB |
testcase_15 | AC | 53 ms
46,464 KB |
testcase_16 | AC | 53 ms
30,976 KB |
testcase_17 | AC | 32 ms
39,680 KB |
testcase_18 | AC | 66 ms
45,568 KB |
testcase_19 | AC | 73 ms
51,328 KB |
testcase_20 | AC | 59 ms
44,800 KB |
testcase_21 | AC | 42 ms
43,264 KB |
testcase_22 | AC | 61 ms
35,840 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 86 ms
68,352 KB |
testcase_26 | AC | 87 ms
68,352 KB |
testcase_27 | AC | 88 ms
68,224 KB |
testcase_28 | AC | 76 ms
66,048 KB |
testcase_29 | AC | 80 ms
66,048 KB |
testcase_30 | AC | 130 ms
68,480 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; ll imos[2005][2005]; ll cumsum[2005][2005]; int h, w, n, m; int t[200005], u[200005], l[200005], r[200005]; ll a[200005]; void print(); void input(){ cin >> h >> w >> n >> m; for(int i = 0; i < n; i++) { cin >> t[i] >> u[i] >> l[i] >> r[i] >> a[i]; } for(int i = 0; i < m; i++){ int x, y, b, c; cin >> x >> y >> b >> c; int x1 = max(0, x-b); int x2 = min(h, x+b); int y1 = max(0, y-b); int y2 = min(w, y+b); imos[x1][y1]+=c; imos[x1][y2+1]-=c; imos[x2+1][y1]-=c; imos[x2+1][y2+1]+=c; } for(int i = 1; i <= h; i++){ for(int j = 0; j <= w; j++) imos[i][j] += imos[i-1][j]; } for(int i = 0; i <= h; i++){ for(int j = 1; j <= w; j++) imos[i][j] += imos[i][j-1]; } for(int i = 1; i <= h; i++){ for(int j = 1; j <= w; j++) { cumsum[i][j] = cumsum[i][j-1]+cumsum[i-1][j]-cumsum[i-1][j-1]+imos[i][j]; } } } ll calc(int t, int u, int l, int r){ return cumsum[u][r]-cumsum[u][l-1]-cumsum[t-1][r]+cumsum[t-1][l-1]; } void print(){ for(int i = 0; i <= h; i++){ for(int j = 0; j <= w; j++){ cout << imos[i][j] << ' '; } cout << endl; } } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; input(); int ans = 0; for(int i = 0; i < n; i++){ ll x = calc(t[i], u[i], l[i], r[i]); if(x < a[i]) ans++; } cout << ans << endl; }