結果
問題 | No.60 魔法少女 |
ユーザー | srup٩(๑`н´๑)۶ |
提出日時 | 2016-09-30 15:15:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,062 bytes |
コンパイル時間 | 658 ms |
コンパイル使用メモリ | 66,812 KB |
実行使用メモリ | 9,192 KB |
最終ジャッジ日時 | 2024-11-21 11:15:16 |
合計ジャッジ時間 | 3,686 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
8,628 KB |
testcase_01 | AC | 7 ms
8,776 KB |
testcase_02 | AC | 7 ms
8,288 KB |
testcase_03 | WA | - |
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 <iostream> #include <algorithm> #include <vector> #include <queue> #include <cstdio> #include <cmath> using namespace std; typedef long long ll; #define rep(i,n) for(int i=0;i<(n);i++) #define reps(i,f,n) for(int i=(f);i<(n);i++) const int INF = 1e9; int n, k; int x[100010], y[100010], hp[100010]; int imos[1100][1100]; //imos int main(void){ cin >> n >> k; rep(i, n){ cin >> x[i] >> y[i] >> hp[i]; x[i] += 510; y[i] += 510; } rep(i, 1100)rep(j, 1100) imos[i][j] = 0; rep(i, k){ int ax, ay, w, h, d; cin >> ax >> ay >> w >> h >> d; ax += 510; ay += 510; imos[ay][ax] += d;//左上 imos[ay][ax + w + 1] -= d;//右上 imos[ay + h + 1][ax] -= d;//左下 imos[ay + h + 1][ax + w + 1] += d;//右下 } //横方向への累積和 rep(i, 1100)reps(j, 1, 1100){ imos[i][j] += imos[i][j - 1]; } //縦方向の累積和 reps(i, 1, 1100)rep(j, 1100){ imos[i][j] += imos[i - 1][j]; } ll ans = 0; rep(i, n){ int ty = y[i], tx = x[i]; ans += max((ll)0, (ll)(hp[i] - imos[ty][tx])); } printf("%lld\n", ans); return 0; }