結果

問題 No.60 魔法少女
ユーザー 👑 kmjpkmjp
提出日時 2014-11-09 23:35:53
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 232 ms / 5,000 ms
コード長 1,195 bytes
コンパイル時間 2,035 ms
コンパイル使用メモリ 146,312 KB
実行使用メモリ 24,264 KB
最終ジャッジ日時 2023-08-30 02:50:01
合計ジャッジ時間 3,595 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
18,352 KB
testcase_01 AC 11 ms
18,312 KB
testcase_02 AC 11 ms
18,380 KB
testcase_03 AC 12 ms
23,948 KB
testcase_04 AC 167 ms
23,904 KB
testcase_05 AC 107 ms
24,184 KB
testcase_06 AC 232 ms
24,200 KB
testcase_07 AC 172 ms
24,108 KB
testcase_08 AC 103 ms
24,264 KB
testcase_09 AC 53 ms
23,876 KB
testcase_10 AC 210 ms
24,156 KB
testcase_11 AC 19 ms
23,924 KB
testcase_12 AC 73 ms
24,060 KB
testcase_13 AC 231 ms
24,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<to;x++)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N,K;
int X[100001],Y[100001],H[100001];
int AX[100001],AY[100001],W[100001],HH[100001],D[100001];

int DD[1505][1505];
int S[1505][1505];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>K;
	FOR(i,N) cin>>X[i]>>Y[i]>>H[i];
	
	FOR(i,K) {
		cin>>AX[i]>>AY[i]>>W[i]>>HH[i]>>D[i];
		for(y=AY[i]+500;y<=AY[i]+500+HH[i];y++) DD[y][AX[i]+500]+=D[i],DD[y][AX[i]+500+W[i]+1]-=D[i];
	}
	
	FOR(y,1502) FOR(x,1502) S[y][x]=((x>0)?S[y][x-1]:0)+DD[y][x];
	
	int tot=0;
	FOR(i,N) tot+=max(0,H[i]-S[Y[i]+500][X[i]+500]);
	cout<<tot<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false);
	FOR(i,argc-1) s+=argv[i+1],s+='\n';
	FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	solve(); return 0;
}
0