結果
問題 | No.60 魔法少女 |
ユーザー | jupiro |
提出日時 | 2020-07-15 02:03:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 109 ms / 5,000 ms |
コード長 | 2,419 bytes |
コンパイル時間 | 1,465 ms |
コンパイル使用メモリ | 135,880 KB |
実行使用メモリ | 19,200 KB |
最終ジャッジ日時 | 2024-11-20 07:18:27 |
合計ジャッジ時間 | 4,005 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 18 ms
19,072 KB |
testcase_01 | AC | 18 ms
19,200 KB |
testcase_02 | AC | 20 ms
19,072 KB |
testcase_03 | AC | 18 ms
19,072 KB |
testcase_04 | AC | 64 ms
19,072 KB |
testcase_05 | AC | 71 ms
19,200 KB |
testcase_06 | AC | 109 ms
19,072 KB |
testcase_07 | AC | 80 ms
18,944 KB |
testcase_08 | AC | 58 ms
18,944 KB |
testcase_09 | AC | 35 ms
18,944 KB |
testcase_10 | AC | 97 ms
18,944 KB |
testcase_11 | AC | 27 ms
19,072 KB |
testcase_12 | AC | 54 ms
18,944 KB |
testcase_13 | AC | 106 ms
19,072 KB |
ソースコード
#include <cstdio> #include <iostream> #include <string> #include <sstream> #include <stack> #include <algorithm> #include <cmath> #include <queue> #include <map> #include <set> #include <cstdlib> #include <bitset> #include <tuple> #include <assert.h> #include <deque> #include <bitset> #include <iomanip> #include <limits> #include <chrono> #include <random> #include <array> #include <unordered_map> #include <functional> #include <complex> #include <numeric> template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } //constexpr long long MAX = 5100000; constexpr long long INF = 1LL << 60; constexpr int inf = 1000000007; constexpr long long mod = 1000000007LL; //constexpr long long mod = 998244353LL; const long double PI = acos((long double)(-1)); using namespace std; typedef unsigned long long ull; typedef long long ll; typedef long double ld; constexpr int D = 500; template<class T> struct imos2D { vector<vector<T>> data; int H, W; imos2D() :H(0), W(0) {} imos2D(int _H, int _W) :H(_H), W(_W) { data.assign(H, vector<T>(W)); } void add(int sh, int sw, int gh, int gw, T x) { data[sh][sw] += x; if(gw < W) data[sh][gw] -= x; if(gh < H) data[gh][sw] -= x; if(gh <H and gw < W) data[gh][gw] += x; } void build() { for (int i = 0; i < H; i++) for (int j = 0; j < W - 1; j++) data[i][j + 1] += data[i][j]; for (int j = 0; j < W; j++) for (int i = 0; i < H - 1; i++) data[i + 1][j] += data[i][j]; } vector<T>& operator[](int i) { return data[i]; } }; int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ constexpr int H = 1001, W = 1001; vector<vector<ll>> a(H, vector<ll>(W)); int n, kkt; scanf("%d %d", &n, &kkt); for (int i = 0; i < n; i++) { int x, y, HP; scanf("%d %d %d", &x, &y, &HP); x += D, y += D; a[x][y] += HP; } imos2D<ll> imos(H, W); while (kkt--) { int sh, sw, gh, gw, d; scanf("%d %d %d %d %d", &sh, &sw, &gh, &gw, &d); sh += D, sw += D, gh += sh, gw += sw; imos.add(sh, sw, gh + 1, gw + 1, -d); } imos.build(); ll res = 0; for (int i = 0; i < H; i++)for (int j = 0; j < W; j++) res += max(0LL, imos[i][j] + a[i][j]); cout << res << endl; return 0; }