結果
問題 | No.60 魔法少女 |
ユーザー | Pachicobue |
提出日時 | 2017-07-14 20:10:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,950 bytes |
コンパイル時間 | 1,633 ms |
コンパイル使用メモリ | 169,968 KB |
実行使用メモリ | 14,196 KB |
最終ジャッジ日時 | 2024-10-07 21:53:10 |
合計ジャッジ時間 | 5,440 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
13,428 KB |
testcase_01 | AC | 6 ms
13,348 KB |
testcase_02 | AC | 6 ms
13,164 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
ソースコード
#include <bits/stdc++.h> #define show(x) cout << #x << " = " << x << endl using namespace std; using ll = long long; using pii = pair<int, int>; using vi = vector<int>; template <typename T> ostream& operator<<(ostream& os, const vector<T>& v) { os << "sz=" << v.size() << "\n["; for (const auto& p : v) { os << p << ","; } os << "]\n"; return os; } template <typename S, typename T> ostream& operator<<(ostream& os, const pair<S, T>& p) { os << "(" << p.first << "," << p.second << ")"; return os; } constexpr ll MOD = 1e9 + 7; template <typename T> constexpr T INF = numeric_limits<T>::max() / 100; constexpr ll HALF = 500; constexpr ll MAX = HALF * 2; ll imos[MAX + 1][MAX + 1]; ll sum[MAX + 1][MAX + 1]; struct Enemy { ll hp; ll x; ll y; }; int main() { ll N, K; cin >> N >> K; vector<Enemy> enemy(N); for (ll i = 0; i < N; i++) { ll x, y, hp; cin >> x >> y >> hp; enemy[i] = Enemy{hp, x + HALF, y + HALF}; } for (ll i = 0; i < K; i++) { ll ax, ay, w, h, d; cin >> ax >> ay >> w >> h >> d; const ll starty = ay + HALF; const ll endy = ay + h + HALF; const ll startx = ax + HALF; const ll endx = ax + w + HALF; for (ll y = starty; y <= endy; y++) { imos[y][startx] += d; if (endx < MAX) { imos[y][endx + 1] -= d; } } } for (ll y = 0; y <= MAX; y++) { sum[y][0] = imos[y][0]; } for (ll y = 0; y <= MAX; y++) { for (ll x = 1; x <= MAX; x++) { sum[y][x] = sum[y][x - 1] + imos[y][x]; } } ll res = 0; for (ll i = 0; i < N; i++) { const ll hp = enemy[i].hp; const ll y = enemy[i].y; const ll x = enemy[i].x; if (sum[y][x] < hp) { res += (hp - sum[y][x]); } } cout << res << endl; return 0; }