結果

問題 No.60 魔法少女
ユーザー なおなお
提出日時 2014-11-09 23:43:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 179 ms / 5,000 ms
コード長 1,014 bytes
コンパイル時間 1,162 ms
コンパイル使用メモリ 160,700 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-06-10 02:05:56
合計ジャッジ時間 3,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
13,256 KB
testcase_01 AC 9 ms
13,260 KB
testcase_02 AC 9 ms
13,384 KB
testcase_03 AC 7 ms
17,496 KB
testcase_04 AC 96 ms
19,008 KB
testcase_05 AC 102 ms
18,996 KB
testcase_06 AC 172 ms
19,072 KB
testcase_07 AC 125 ms
18,940 KB
testcase_08 AC 84 ms
19,024 KB
testcase_09 AC 38 ms
18,968 KB
testcase_10 AC 157 ms
18,940 KB
testcase_11 AC 23 ms
18,952 KB
testcase_12 AC 76 ms
19,000 KB
testcase_13 AC 179 ms
19,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define REP(i, n)           for(int(i)=0;(i)<(n);++(i))
#define RREP(i, n)          for(int(i)=(n)-1;(i)>=0;--(i))

const int MOD = (int)(1e9+9);
const int B = 500;

ll HP[1001][1001];
ll DMG[1001][1001];

int main(){
    int N,K; cin >> N >> K;
    REP(i,N){
        int X,Y,H; cin >> X >> Y >> H;
        HP[B+Y][B+X] = H;
    }

    REP(i,K){
        int x,y,w,h,d;
        cin >> x >> y >> w >> h >> d;
        DMG[B+y][B+x] += d;
        if(B+y+h+1<=1000) DMG[B+y+h+1][B+x] -= d;
        if(B+x+w+1<=1000) DMG[B+y][B+x+w+1] -= d;
        if(B+y+h+1<=1000 && B+x+w+1 <= 1000) DMG[B+y+h+1][B+x+w+1] += d;
    }
    REP(y,1001) REP(x,1000){
        DMG[y][x+1] += DMG[y][x];
    }
    int sum = 0;
    REP(y,1001) REP(x,1001){
        if(y < 1000) DMG[y+1][x] += DMG[y][x];
        if(HP[y][x] > DMG[y][x]){
            sum += HP[y][x]-DMG[y][x];
        }
    }
    cout << sum << endl;
    return 0;
}
0