結果

問題 No.60 魔法少女
ユーザー ninoinuininoinui
提出日時 2020-09-06 16:20:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 996 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 212,796 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-05-06 21:10:28
合計ジャッジ時間 3,497 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
7,168 KB
testcase_01 AC 7 ms
7,040 KB
testcase_02 AC 7 ms
7,168 KB
testcase_03 AC 7 ms
7,168 KB
testcase_04 AC 43 ms
7,424 KB
testcase_05 AC 46 ms
8,320 KB
testcase_06 AC 72 ms
8,192 KB
testcase_07 AC 54 ms
7,808 KB
testcase_08 AC 36 ms
7,808 KB
testcase_09 AC 19 ms
7,296 KB
testcase_10 AC 65 ms
8,448 KB
testcase_11 AC 14 ms
7,424 KB
testcase_12 AC 34 ms
7,936 KB
testcase_13 AC 71 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  cin.tie(nullptr);
  ios_base::sync_with_stdio(false);
  int N, K;
  cin >> N >> K;
  vector<tuple<int, int, int>> V(N);
  for (int i = 0; i < N; i++) {
    int x, y, hp;
    cin >> x >> y >> hp;
    V.at(i) = {x + 500, y + 500, hp};
  }
  N = 1002;
  vector DP(N, vector(N, 0));
  for (int i = 0; i < K; i++) {
    int x, y, w, h, d;
    cin >> x >> y >> w >> h >> d;
    x += 500, y += 500;
    DP.at(x).at(y) += d;
    DP.at(min(1000, x + w) + 1).at(y) -= d;
    DP.at(x).at(min(1000, y + h) + 1) -= d;
    DP.at(min(1000, x + w) + 1).at(min(1000, y + h) + 1) += d;
  }
  for (int i = 0; i < N; i++) {
    for (int j = 0; j + 1 < N; j++) {
      DP.at(i).at(j + 1) += DP.at(i).at(j);
    }
  }
  for (int i = 0; i + 1 < N; i++) {
    for (int j = 0; j < N; j++) {
      DP.at(i + 1).at(j) += DP.at(i).at(j);
    }
  }
  long ans = 0;
  for (auto [x, y, hp] : V) {
    ans += max(0, hp - DP.at(x).at(y));
  }
  cout << ans << "\n";
}
0