結果

問題 No.60 魔法少女
ユーザー data9824data9824
提出日時 2015-06-18 01:38:00
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 260 ms / 5,000 ms
コード長 1,000 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 64,240 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-07-07 03:37:08
合計ジャッジ時間 2,963 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
7,296 KB
testcase_01 AC 7 ms
7,296 KB
testcase_02 AC 7 ms
7,296 KB
testcase_03 AC 6 ms
7,296 KB
testcase_04 AC 157 ms
8,704 KB
testcase_05 AC 139 ms
8,832 KB
testcase_06 AC 257 ms
10,112 KB
testcase_07 AC 188 ms
9,216 KB
testcase_08 AC 117 ms
8,448 KB
testcase_09 AC 54 ms
7,936 KB
testcase_10 AC 232 ms
9,984 KB
testcase_11 AC 24 ms
7,680 KB
testcase_12 AC 92 ms
8,320 KB
testcase_13 AC 260 ms
10,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

int main() {
	int n, k;
	cin >> n >> k;
	vector<int> x(n), y(n), hp(n);
	for (int i = 0; i < n; ++i) {
		cin >> x[i] >> y[i] >> hp[i];
	}
	vector<int> ax(k), ay(k), w(k), h(k), d(k);
	for (int i = 0; i < k; ++i) {
		cin >> ax[i] >> ay[i] >> w[i] >> h[i] >> d[i];
	}
	vector<vector<int> > offset(1001 + 1, vector<int>(1001));
	for (int i = 0; i < n; ++i) {
		offset[x[i] + 500][y[i] + 500] += hp[i];
		offset[x[i] + 500 + 1][y[i] + 500] -= hp[i];
	}
	for (int i = 0; i < k; ++i) {
		for (int y = ay[i]; y <= ay[i] + h[i]; ++y) {
			if (y + 500 < 1001) {
				offset[ax[i] + 500][y + 500] -= d[i];
				if (ax[i] + w[i] + 1 + 500 < 1001 + 1) {
					offset[ax[i] + w[i] + 1 + 500][y + 500] += d[i];
				}
			}
		}
	}
	int hpSum = 0;
	for (int y = 0; y <= 1000; ++y) {
		int current = 0;
		for (int x = 0; x <= 1000; ++x) {
			current += offset[x][y];
			if (current > 0) {
				hpSum += current;
			}
		}
	}
	cout << hpSum << endl;
	return 0;
}
0