結果
問題 | No.1490 スライムと爆弾 |
ユーザー | suisen |
提出日時 | 2021-04-23 21:55:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 304 ms / 2,000 ms |
コード長 | 2,128 bytes |
コンパイル時間 | 2,265 ms |
コンパイル使用メモリ | 211,920 KB |
実行使用メモリ | 67,968 KB |
最終ジャッジ日時 | 2024-07-04 07:58:02 |
合計ジャッジ時間 | 6,083 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 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 | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 133 ms
31,360 KB |
testcase_14 | AC | 166 ms
40,704 KB |
testcase_15 | AC | 89 ms
34,048 KB |
testcase_16 | AC | 117 ms
22,016 KB |
testcase_17 | AC | 77 ms
39,552 KB |
testcase_18 | AC | 166 ms
40,576 KB |
testcase_19 | AC | 144 ms
37,376 KB |
testcase_20 | AC | 106 ms
31,232 KB |
testcase_21 | AC | 66 ms
30,208 KB |
testcase_22 | AC | 141 ms
25,344 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 202 ms
67,840 KB |
testcase_26 | AC | 200 ms
67,968 KB |
testcase_27 | AC | 200 ms
67,840 KB |
testcase_28 | AC | 154 ms
65,920 KB |
testcase_29 | AC | 155 ms
66,048 KB |
testcase_30 | AC | 304 ms
67,840 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using int128 = __int128_t; #define rep(i, n) for (int i = 0; i < n; ++i) #define reps(i, n, s) for (int i = 0; i < n; i += s) #define repl(i, l, r) for (int i = l; i < r; ++i) #define repsl(i, l, r, s) for (int i = l; i < r; i += s) #define all(iterable) (iterable).begin(), (iterable).end() constexpr int dx4[4] = {1, 0, -1, 0}; constexpr int dy4[4] = {0, 1, 0, -1}; constexpr int dx8[8] = {1, 1, 0, -1, -1, -1, 0, 1}; constexpr int dy8[8] = {0, 1, 1, 1, 0, -1, -1, -1}; template <typename T> void print(const vector<T>& vec, const string sep = " ", const string end = "\n") { int n = vec.size(); rep(i, n) { cout << vec[i]; if (i < n - 1) cout << sep; else cout << end; } } template <typename T> void read(vector<T>& a, int begin_index, int length) { if (a.size() < begin_index + length) a.resize(begin_index + length); while (length --> 0) cin >> a[begin_index++]; } template <typename T> void read(vector<T>& a) { read(a, 0, a.size()); } int main() { int h, w, n, m; cin >> h >> w >> n >> m; vector<vector<long long>> s(h + 1, vector<long long>(w + 1, 0)); vector<tuple<int, int, int, int, int>> slimes(n); rep(i, n) { int u, d, l, r, a; cin >> u >> d >> l >> r >> a; slimes[i] = {u - 1, d, l - 1, r, a}; } rep(i, m) { int cr, cc, k, x; cin >> cr >> cc >> k >> x; --cr, --cc; int u = max(cr - k, 0), d = min(cr + k + 1, h); int l = max(cc - k, 0), r = min(cc + k + 1, w); s[u][l] += x; s[u][r] -= x; s[d][l] -= x; s[d][r] += x; } rep(i, h) rep(j, w + 1) s[i + 1][j] += s[i][j]; rep(i, h + 1) rep(j, w) s[i][j + 1] += s[i][j]; vector<vector<long long>> t(h + 1, vector<long long>(w + 1, 0)); rep(i, h) rep(j, w) { t[i + 1][j + 1] = s[i][j] + t[i + 1][j] + t[i][j + 1] - t[i][j]; } int ans = 0; for (auto &[u, d, l, r, a] : slimes) { long long x = t[d][r] - t[d][l] - t[u][r] + t[u][l]; ans += x < a; } cout << ans << '\n'; return 0; }