結果
問題 | No.60 魔法少女 |
ユーザー | koba-e964 |
提出日時 | 2015-06-10 13:38:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 186 ms / 5,000 ms |
コード長 | 1,302 bytes |
コンパイル時間 | 598 ms |
コンパイル使用メモリ | 86,880 KB |
実行使用メモリ | 22,272 KB |
最終ジャッジ日時 | 2024-07-06 15:21:02 |
合計ジャッジ時間 | 3,354 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
21,120 KB |
testcase_01 | AC | 11 ms
21,120 KB |
testcase_02 | AC | 11 ms
21,120 KB |
testcase_03 | AC | 12 ms
21,248 KB |
testcase_04 | AC | 113 ms
21,376 KB |
testcase_05 | AC | 117 ms
22,272 KB |
testcase_06 | AC | 181 ms
22,272 KB |
testcase_07 | AC | 142 ms
21,940 KB |
testcase_08 | AC | 93 ms
21,868 KB |
testcase_09 | AC | 47 ms
21,632 KB |
testcase_10 | AC | 175 ms
22,272 KB |
testcase_11 | AC | 29 ms
21,496 KB |
testcase_12 | AC | 86 ms
21,900 KB |
testcase_13 | AC | 186 ms
22,272 KB |
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <cctype> #include <cmath> #include <cstdio> #include <cstdlib> #include <cstring> #include <ctime> #include <deque> #include <functional> #include <iomanip> #include <iostream> #include <list> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <utility> #include <vector> #define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++) using namespace std; typedef long long int ll; typedef vector<int> VI; typedef pair<int, int> PI; const double EPS=1e-9; const int N = 100100, B = 500, X = 1510; int x[N],y[N], hh[N]; ll tbl[X][X] = {}; int main(void){ int n,k; cin >> n >> k; REP(i, 0, n) { cin >> x[i] >> y[i] >> hh[i]; x[i] += B; y[i] += B; } REP(i, 0, k) { int ax, ay, w, h, d; cin >> ax >> ay >> w >> h >> d; ax += B; ay += B; tbl[ax][ay] += d; tbl[ax][ay + h + 1] -= d; tbl[ax + w + 1][ay] -= d; tbl[ax + w + 1][ay + h + 1] += d; } REP(i, 1, X) { REP(j, 0, X) { tbl[i][j] += tbl[i - 1][j]; } } REP(j, 1, X) { REP(i, 0, X) { tbl[i][j] += tbl[i][j - 1]; } } ll sum = 0; REP(i, 0, n) { sum += max(0LL, hh[i] - tbl[x[i]][y[i]]); } cout << sum << endl; }