結果

問題 No.60 魔法少女
ユーザー 👑 CleyLCleyL
提出日時 2022-05-12 14:58:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 210 ms / 5,000 ms
コード長 699 bytes
コンパイル時間 798 ms
コンパイル使用メモリ 68,680 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-07-20 08:31:14
合計ジャッジ時間 3,800 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
15,232 KB
testcase_01 AC 13 ms
15,232 KB
testcase_02 AC 10 ms
15,232 KB
testcase_03 AC 17 ms
15,360 KB
testcase_04 AC 122 ms
34,176 KB
testcase_05 AC 133 ms
34,560 KB
testcase_06 AC 207 ms
34,432 KB
testcase_07 AC 158 ms
34,560 KB
testcase_08 AC 110 ms
34,432 KB
testcase_09 AC 53 ms
34,176 KB
testcase_10 AC 199 ms
34,560 KB
testcase_11 AC 36 ms
24,960 KB
testcase_12 AC 95 ms
34,176 KB
testcase_13 AC 210 ms
34,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;
int enem[2000][2000];
int dam[2000][2000];
int rudam[2000][2000];
int main(){
  int n,k;cin>>n>>k;


  for(int i = 0; n > i; i++){
    int x,y,hp;cin>>x>>y>>hp;
    enem[x+500][y+500] = hp;
  }

  for(int i = 0; k > i; i++){
    int ax,ay,w,h,d;cin>>ax>>ay>>w>>h>>d;
    dam[ax+500][ay+500] += d;
    dam[ax+500+w+1][ay+500] -= d;
    dam[ax+500][ay+500+h+1] -= d;
    dam[ax+500+w+1][ay+500+h+1] += d;
  }
  long long ans = 0;
  for(int i = 1; 1500 > i; i++){
    for(int j = 1; 1500 > j; j++){
      rudam[i][j] = rudam[i-1][j]+rudam[i][j-1]-rudam[i-1][j-1]+dam[i-1][j-1];
      ans += max(0,enem[i-1][j-1]-rudam[i][j]);
    }
  }
  cout << ans << endl;
}
0