結果
問題 | No.60 魔法少女 |
ユーザー | kimiyuki |
提出日時 | 2016-09-29 21:37:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,137 bytes |
コンパイル時間 | 386 ms |
コンパイル使用メモリ | 50,400 KB |
実行使用メモリ | 13,948 KB |
最終ジャッジ日時 | 2024-11-21 10:39:54 |
合計ジャッジ時間 | 1,788 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
11,108 KB |
testcase_01 | AC | 7 ms
10,880 KB |
testcase_02 | AC | 8 ms
10,996 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
#include <cstdio> #include <vector> #include <array> #define repeat(i,n) for (int i = 0; (i) < (n); ++(i)) typedef long long ll; using namespace std; const int size = 1001; const int offset = 500; int main() { int n, k; scanf("%d%d", &n, &k); vector<int> x(n), y(n), hp(n); repeat (i,n) scanf("%d%d%d", &x[i], &y[i], &hp[i]); vector<int> ax(k), ay(k), w(k), h(k), d(k); repeat (i,k) scanf("%d%d%d%d%d", &ax[i], &ay[i], &w[i], &h[i], &d[i]); array<array<ll,size+1>,size+1> imos = {}; repeat (i,k) { int lx = max(0, ax[i] + offset - w[i]); int ly = max(0, ay[i] + offset - h[i]); int rx = min(size, ax[i] + offset + w[i] + 1); int ry = min(size, ay[i] + offset + h[i] + 1); imos[ly][lx] += d[i]; imos[ly][rx] -= d[i]; imos[ry][lx] -= d[i]; imos[ry][rx] += d[i]; } repeat (y,size+1) repeat (x,size) imos[y][x+1] += imos[y][x]; repeat (x,size+1) repeat (y,size) imos[y+1][x] += imos[y][x]; ll ans = 0; repeat (i,n) { ans += max(0ll, hp[i] - imos[y[i] + offset][x[i] + offset]); } printf("%lld\n", ans); return 0; }