結果

問題 No.60 魔法少女
ユーザー imulanimulan
提出日時 2016-07-19 00:13:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 1,351 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 168,540 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-10-15 17:08:07
合計ジャッジ時間 4,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
11,264 KB
testcase_01 AC 14 ms
11,136 KB
testcase_02 AC 12 ms
11,136 KB
testcase_03 AC 12 ms
11,392 KB
testcase_04 AC 43 ms
11,520 KB
testcase_05 AC 47 ms
12,288 KB
testcase_06 AC 75 ms
12,160 KB
testcase_07 AC 56 ms
12,032 KB
testcase_08 AC 37 ms
11,904 KB
testcase_09 AC 21 ms
11,648 KB
testcase_10 AC 67 ms
12,160 KB
testcase_11 AC 18 ms
11,648 KB
testcase_12 AC 40 ms
12,032 KB
testcase_13 AC 78 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr)
#define all(x) (x).begin(),(x).end()
#define mp make_pair
#define pb push_back
#define fi first
#define se second

//座標(x,y)に合計で入るダメージ
ll dm[1002][1002]={0};

int main()
{
    int n,k;
    cin >>n >>k;

    vector<int> x(n),y(n),hp(n);
    rep(i,n)
    {
        scanf(" %d %d %d", &x[i], &y[i], &hp[i]);
        //すべて第1象限で考えるために平行移動
        x[i]+=500;
        y[i]+=500;
    }

    rep(i,k)
    {
        int ax,ay,w,h,d;
        scanf(" %d %d %d %d %d", &ax, &ay, &w, &h, &d);
        //平行移動
        ax+=500;
        ay+=500;

        int rx=min(1000,ax+w);
        int ry=min(1000,ay+h);

        dm[ax][ay]+=d;
        dm[rx+1][ay]-=d;
        dm[ax][ry+1]-=d;
        dm[rx+1][ry+1]+=d;
    }

    //x方向に足し合わせる
    rep(i,1002)
    {
        for(int j=1; j<1002; ++j) dm[j][i]+=dm[j-1][i];
    }
    //y方向に足し合わせる
    rep(i,1002)
    {
        for(int j=1; j<1002; ++j) dm[i][j]+=dm[i][j-1];
    }

    ll ans=0;
    rep(i,n)
    {
        ll rem=hp[i]-dm[x[i]][y[i]];
        if(rem>0) ans+=rem;
    }
    cout << ans << endl;
    return 0;
}
0