結果
問題 | No.60 魔法少女 |
ユーザー | kmjp |
提出日時 | 2014-11-09 23:31:21 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,192 bytes |
コンパイル時間 | 1,538 ms |
コンパイル使用メモリ | 161,560 KB |
実行使用メモリ | 14,464 KB |
最終ジャッジ日時 | 2024-12-31 08:56:29 |
合計ジャッジ時間 | 3,589 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
11,452 KB |
testcase_01 | AC | 7 ms
11,460 KB |
testcase_02 | AC | 6 ms
11,348 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
#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[1002][1002]; int S[1002][1002]; 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,1002) FOR(x,1002) 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; }