結果
問題 | No.1490 スライムと爆弾 |
ユーザー | Mister |
提出日時 | 2021-04-23 21:56:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 133 ms / 2,000 ms |
コード長 | 1,592 bytes |
コンパイル時間 | 810 ms |
コンパイル使用メモリ | 85,532 KB |
実行使用メモリ | 37,092 KB |
最終ジャッジ日時 | 2024-07-04 07:58:30 |
合計ジャッジ時間 | 3,013 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 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 | 2 ms
5,376 KB |
testcase_13 | AC | 54 ms
17,920 KB |
testcase_14 | AC | 64 ms
23,168 KB |
testcase_15 | AC | 41 ms
18,944 KB |
testcase_16 | AC | 44 ms
13,312 KB |
testcase_17 | AC | 36 ms
21,760 KB |
testcase_18 | AC | 66 ms
23,168 KB |
testcase_19 | AC | 58 ms
21,120 KB |
testcase_20 | AC | 43 ms
17,792 KB |
testcase_21 | AC | 28 ms
17,024 KB |
testcase_22 | AC | 51 ms
15,360 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 88 ms
36,940 KB |
testcase_26 | AC | 87 ms
37,092 KB |
testcase_27 | AC | 89 ms
36,992 KB |
testcase_28 | AC | 78 ms
34,560 KB |
testcase_29 | AC | 82 ms
34,688 KB |
testcase_30 | AC | 133 ms
36,992 KB |
ソースコード
#include <iostream> #include <vector> #include <tuple> using namespace std; using lint = long long; void solve() { int h, w, n, m; cin >> h >> w >> n >> m; vector<tuple<int, int, int, int, lint>> slimes(n); for (auto& [lx, rx, ly, ry, t] : slimes) { cin >> lx >> rx >> ly >> ry >> t; } auto grid = vector(h + 2, vector(w + 2, 0LL)); while (m--) { int cx, cy, b; cin >> cx >> cy >> b; auto lx = max(1, cx - b), rx = min(h, cx + b), ly = max(1, cy - b), ry = min(w, cy + b); lint c; cin >> c; grid[lx][ly] += c, grid[lx][ry + 1] -= c; grid[rx + 1][ly] -= c, grid[rx + 1][ry + 1] += c; } for (int x = 0; x < h + 2; ++x) { for (int y = 1; y < w + 2; ++y) { grid[x][y] += grid[x][y - 1]; } } for (int x = 1; x < h + 2; ++x) { for (int y = 0; y < w + 2; ++y) { grid[x][y] += grid[x - 1][y]; } } for (int x = 0; x < h + 2; ++x) { for (int y = 1; y < w + 2; ++y) { grid[x][y] += grid[x][y - 1]; } } for (int x = 1; x < h + 2; ++x) { for (int y = 0; y < w + 2; ++y) { grid[x][y] += grid[x - 1][y]; } } int ans = 0; for (auto [lx, rx, ly, ry, t] : slimes) { auto sum = grid[rx][ry] - grid[rx][ly - 1] - grid[lx - 1][ry] + grid[lx - 1][ly - 1]; if (sum < t) ++ans; } cout << ans << "\n"; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); solve(); return 0; }