結果
問題 | No.60 魔法少女 |
ユーザー | 🍮かんプリン |
提出日時 | 2019-09-09 20:34:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 232 ms / 5,000 ms |
コード長 | 1,198 bytes |
コンパイル時間 | 1,689 ms |
コンパイル使用メモリ | 172,028 KB |
実行使用メモリ | 23,168 KB |
最終ジャッジ日時 | 2024-06-28 14:39:22 |
合計ジャッジ時間 | 4,102 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
20,864 KB |
testcase_01 | AC | 31 ms
20,992 KB |
testcase_02 | AC | 29 ms
20,864 KB |
testcase_03 | AC | 33 ms
20,992 KB |
testcase_04 | AC | 137 ms
21,248 KB |
testcase_05 | AC | 149 ms
23,168 KB |
testcase_06 | AC | 222 ms
23,040 KB |
testcase_07 | AC | 170 ms
22,528 KB |
testcase_08 | AC | 116 ms
22,272 KB |
testcase_09 | AC | 68 ms
21,376 KB |
testcase_10 | AC | 210 ms
23,168 KB |
testcase_11 | AC | 50 ms
21,504 KB |
testcase_12 | AC | 108 ms
22,400 KB |
testcase_13 | AC | 232 ms
23,168 KB |
ソースコード
#include "bits/stdc++.h" #define ALL(obj) (obj).begin(),(obj).end() #define RALL(obj) (obj).rbegin(),(obj).rend() #define REP(i, n) for(int i = 0; i < (int)(n); i++) #define REPR(i, n) for(int i = (int)(n); i >= 0; i--) #define FOR(i,n,m) for(int i = (int)(n); i < int(m); i++) using namespace std; typedef long long ll; const int MOD = 1e9 + 7; const int INF = MOD - 1; const ll LLINF = 4e18; int main() { int n, k; cin >> n >> k; vector<vector<ll>> grid(1502, vector<ll>(1502,0)); vector<ll> x(n),y(n),hp(n); REP(i, n) { cin >> x[i] >> y[i] >> hp[i]; } REP(i, k) { int ax, ay, w, h, d; cin >> ax >> ay >> w >> h >> d; grid[ax + 500][ay + 500] -= d; grid[ax + w + 501][ay + h + 501] -= d; grid[ax + w + 501][ay + 500] += d; grid[ax + 500][ay + h + 501] += d; } REP(i, 1502) { FOR(j, 1, 1502) { grid[i][j] += grid[i][j - 1]; } } REP(i, 1502) { FOR(j, 1, 1502) { grid[j][i] += grid[j - 1][i]; } } ll ans = 0; REP(i, n) { ans += max(0LL, hp[i] + grid[x[i] + 500][y[i] + 500]); } cout << ans << endl; getchar(); getchar(); }