結果
問題 | No.60 魔法少女 |
ユーザー | kyuna |
提出日時 | 2019-08-31 14:41:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 178 ms / 5,000 ms |
コード長 | 1,471 bytes |
コンパイル時間 | 794 ms |
コンパイル使用メモリ | 75,240 KB |
実行使用メモリ | 8,448 KB |
最終ジャッジ日時 | 2024-05-03 15:26:20 |
合計ジャッジ時間 | 3,178 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
7,424 KB |
testcase_01 | AC | 5 ms
7,296 KB |
testcase_02 | AC | 5 ms
7,424 KB |
testcase_03 | AC | 5 ms
7,424 KB |
testcase_04 | AC | 97 ms
7,680 KB |
testcase_05 | AC | 103 ms
8,448 KB |
testcase_06 | AC | 170 ms
8,320 KB |
testcase_07 | AC | 130 ms
8,064 KB |
testcase_08 | AC | 82 ms
7,808 KB |
testcase_09 | AC | 37 ms
7,680 KB |
testcase_10 | AC | 165 ms
8,320 KB |
testcase_11 | AC | 22 ms
7,680 KB |
testcase_12 | AC | 72 ms
8,064 KB |
testcase_13 | AC | 178 ms
8,320 KB |
ソースコード
#include <algorithm> #include <iostream> #include <vector> using namespace std; template<typename T> struct Imos2D { vector<vector<T>> imos; Imos2D(int h = 0, int w = 0) : imos(h + 2, vector<T>(w + 2)) { } void add(int i, int j, T x) { imos[i + 1][j + 1] += x; } void add_rect(int i1, int j1, int i2, int j2, T x = 1) { add(i1, j1, +x); add(i1, j2, -x); add(i2, j1, -x); add(i2, j2, +x); } void build() { int H = imos.size(), W = imos[0].size(); for (int i = 1; i < H; i++) for (int j = 1; j < W; j++) { imos[i][j] += imos[i][j - 1] + imos[i - 1][j] - imos[i - 1][j - 1]; } } T get(int i, int j) { return imos[i + 1][j + 1]; } T diff(int si, int sj, int ti, int tj) { // [si, ti) x [sj, tj) return imos[ti][tj] - imos[ti][sj] - imos[si][tj] + imos[si][sj]; } }; int main() { const int OFS = 500; Imos2D<int> imos(1001, 1001); int n, k; cin >> n >> k; vector<int> x(n), y(n), hp(n); for (int i = 0; i < n; i++) cin >> x[i] >> y[i] >> hp[i]; while (k--) { int i, j, w, h, d; cin >> i >> j >> w >> h >> d; i += OFS, j += OFS; int i2 = min(1000, i + w); int j2 = min(1000, j + h); imos.add_rect(i, j, i2 + 1, j2 + 1, d); } imos.build(); int rest = 0; for (int i = 0; i < n; i++) { rest += max(0, hp[i] - imos.get(x[i] + OFS, y[i] + OFS)); } cout << rest << endl; return 0; }