結果

問題 No.60 魔法少女
ユーザー goodbatongoodbaton
提出日時 2015-07-29 22:52:53
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 1,166 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 71,692 KB
実行使用メモリ 20,432 KB
最終ジャッジ日時 2023-09-24 22:01:54
合計ジャッジ時間 2,032 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
19,264 KB
testcase_01 AC 10 ms
19,516 KB
testcase_02 AC 9 ms
19,232 KB
testcase_03 AC 10 ms
19,224 KB
testcase_04 AC 53 ms
19,404 KB
testcase_05 AC 52 ms
20,328 KB
testcase_06 AC 84 ms
20,324 KB
testcase_07 AC 64 ms
20,184 KB
testcase_08 AC 43 ms
20,056 KB
testcase_09 AC 23 ms
19,516 KB
testcase_10 AC 77 ms
20,408 KB
testcase_11 AC 16 ms
20,416 KB
testcase_12 AC 38 ms
20,212 KB
testcase_13 AC 85 ms
20,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <cstring>

typedef long long ll;
using namespace std;

#define mod 1000003
#define INF 10000000
#define LLINF 2000000000000000000LL

#define SIZE 100000

int main(){
    int n,k,x[SIZE],y[SIZE],hp[SIZE],ax,ay,w,h,d,ans=0;
    int mm[2010][2010]={0};
    
    
    scanf("%d%d",&n,&k);
    
    for(int i=0;i<n;i++)
        scanf("%d%d%d",&x[i],&y[i],&hp[i]);
    
    for(int i=0;i<k;i++){
        scanf("%d%d%d%d%d",&ax,&ay,&w,&h,&d);
        
        mm[ax+500][ay+500]+=d;
        mm[ax+500][ay+h+1+500]-=d;
        mm[ax+w+1+500][ay+500]-=d;
        mm[ax+w+1+500][ay+h+1+500]+=d;
    }
    
    for(int i=0;i<1001;i++){
        for(int j=0;j<1001;j++){
            mm[i][j+1]+=mm[i][j];
        }
    }
    
    for(int i=0;i<1001;i++){
        for(int j=0;j<1001;j++){
            mm[j+1][i]+=mm[j][i];
        }
    }
    
    for(int i=0;i<n;i++){
        ans+=max(0,hp[i]-mm[x[i]+500][y[i]+500]);
    }
    
    printf("%d\n",ans);
    
    return 0;
}
0