結果
問題 | No.60 魔法少女 |
ユーザー | kurenai3110 |
提出日時 | 2017-04-10 15:59:32 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 209 ms / 5,000 ms |
コード長 | 1,461 bytes |
コンパイル時間 | 563 ms |
コンパイル使用メモリ | 68,456 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-07-18 05:41:08 |
合計ジャッジ時間 | 3,339 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
7,296 KB |
testcase_01 | AC | 10 ms
7,296 KB |
testcase_02 | AC | 10 ms
7,424 KB |
testcase_03 | AC | 9 ms
7,296 KB |
testcase_04 | AC | 114 ms
7,296 KB |
testcase_05 | AC | 128 ms
7,296 KB |
testcase_06 | AC | 201 ms
7,424 KB |
testcase_07 | AC | 150 ms
7,424 KB |
testcase_08 | AC | 99 ms
7,296 KB |
testcase_09 | AC | 47 ms
7,296 KB |
testcase_10 | AC | 190 ms
7,296 KB |
testcase_11 | AC | 30 ms
7,296 KB |
testcase_12 | AC | 89 ms
7,424 KB |
testcase_13 | AC | 209 ms
7,296 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <string> using namespace std; #define SIZE 1001 #define offset 500 //2次元Imos法 class Imos2 { public: vector<vector<int>>table; int n, m; Imos2(int n_, int m_) { n = n_ + 1; m = m_ + 1; table.resize(n); for (int i = 0; i < n; i++)table[i].resize(m); } void input(pair<int, int>tl, pair<int, int>br, int v) { table[tl.first][tl.second] += v; table[tl.first][br.second] -= v; table[br.first][tl.second] -= v; table[br.first][br.second] += v; } void accumulate() { for (int i = 0; i < n; i++) { for (int j = 1; j < m; j++) { table[i][j] += table[i][j - 1]; } } for (int j = 0; j < m; j++) { for (int i = 1; i < n; i++) { table[i][j] += table[i - 1][j]; } } } }; int solve() { Imos2 imos2(SIZE, SIZE); int N, K; cin >> N >> K; for (int i = 0; i < N; i++) { int x, y, hp; cin >> x >> y >> hp; x += offset; y += offset; imos2.input(make_pair(x, y), make_pair(x + 1, y + 1), hp); } for (int i = 0; i < K; i++) { int x, y, w, h, d; cin >> x >> y >> w >> h >> d; x += offset; y += offset; imos2.input(make_pair(x, y), make_pair(min(SIZE,x + w + 1), min(SIZE,y + h + 1)), -d); } imos2.accumulate(); int ans = 0; for (int i = 0; i < SIZE; i++) { for (int j = 0; j < SIZE; j++) { if (imos2.table[i][j] > 0)ans += imos2.table[i][j]; } } return ans; } int main() { cout<< solve() <<endl; return 0; }