結果

問題 No.60 魔法少女
ユーザー mukadenodaioumukadenodaiou
提出日時 2018-03-30 11:49:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 241 ms / 5,000 ms
コード長 1,510 bytes
コンパイル時間 929 ms
コンパイル使用メモリ 104,508 KB
実行使用メモリ 37,320 KB
最終ジャッジ日時 2024-06-26 00:22:50
合計ジャッジ時間 4,401 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,324 KB
testcase_01 AC 50 ms
35,416 KB
testcase_02 AC 54 ms
35,864 KB
testcase_03 AC 54 ms
35,296 KB
testcase_04 AC 154 ms
35,404 KB
testcase_05 AC 162 ms
37,056 KB
testcase_06 AC 241 ms
37,244 KB
testcase_07 AC 181 ms
37,124 KB
testcase_08 AC 143 ms
36,376 KB
testcase_09 AC 93 ms
36,964 KB
testcase_10 AC 225 ms
37,268 KB
testcase_11 AC 67 ms
35,624 KB
testcase_12 AC 130 ms
36,576 KB
testcase_13 AC 240 ms
37,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# include <iostream>
# include <algorithm>
# include <vector>
# include <string>
# include <set>
# include <map>
# include <cmath>
# include <iomanip>
# include <functional>
# include <utility>
# include <stack>
# include <queue>
# include <list>
# include <bitset>
# include <complex>
#include<limits.h>
#include<unordered_map>
#include<unordered_set>
#include<deque>
#include<cstdio>
using namespace std;
typedef long long int ll;
const int N = 1000000;
const int mod = 1000000007;
const int INF = 1 << 30;
#define rep(i,n) for(int i=(ll)0;i<(ll)n;++i)
#define ALL(x) x.begin(),x.end()
#define pp pair<ll,ll>
#define fi first
#define se second
ll ppow(ll x, ll n) {
	ll ans = 1;
	while (n > 0) {
		if ((n & 1) == 1)ans = ans + x;
		x = x * x;
		n >>= 1;
		ans %= mod;
	}
	return ans;
}
string YN(bool b) { return(b ? "YES" : "NO"); }
string yn(bool b) { return(b ? "Yes" : "No"); }
ll enemy[100000][3],m[2010][2010];//mは+1000して使う
int main(){
	ll n, k,sum=0;
	cin >> n >> k;
	rep(i, n)cin >> enemy[i][0] >> enemy[i][1] >> enemy[i][2];
	ll x, y, w, h, d;
	rep(i, k) {
		cin >> x >> y >> w >> h >> d;
		m[x + 1000][y + 1000] += d;
		m[x + 1000 + w + 1][y+1000] -= d;
		m[x + 1000][y + 1000 + h + 1] -= d;
		m[x + 1000 + w + 1][y + 1000 + h + 1] += d;
	}
	rep(j,2010)rep(i, 2010)if (i > 0)m[i][j] += m[i - 1][j];
	rep(i, 2010)rep(j, 2010)if (j > 0)m[i][j] += m[i][j - 1];
	rep(i, n) {
		sum += max((ll)0, enemy[i][2] - m[enemy[i][0] + 1000][enemy[i][1] + 1000]);
	}
	cout << sum << endl;
	return 0;
}
0