結果
問題 | No.60 魔法少女 |
ユーザー | fura |
提出日時 | 2020-06-07 12:46:39 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 87 ms / 5,000 ms |
コード長 | 628 bytes |
コンパイル時間 | 2,535 ms |
コンパイル使用メモリ | 201,984 KB |
実行使用メモリ | 13,352 KB |
最終ジャッジ日時 | 2024-12-23 16:53:05 |
合計ジャッジ時間 | 4,032 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 13 ms
12,364 KB |
testcase_01 | AC | 14 ms
12,488 KB |
testcase_02 | AC | 13 ms
12,356 KB |
testcase_03 | AC | 10 ms
12,360 KB |
testcase_04 | AC | 53 ms
12,672 KB |
testcase_05 | AC | 53 ms
13,352 KB |
testcase_06 | AC | 87 ms
13,212 KB |
testcase_07 | AC | 64 ms
12,928 KB |
testcase_08 | AC | 44 ms
12,760 KB |
testcase_09 | AC | 24 ms
12,672 KB |
testcase_10 | AC | 79 ms
13,348 KB |
testcase_11 | AC | 15 ms
12,644 KB |
testcase_12 | AC | 38 ms
12,920 KB |
testcase_13 | AC | 87 ms
13,284 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; int main(){ int n,k; scanf("%d%d",&n,&k); vector<int> x(n),y(n),hp(n); rep(i,n) scanf("%d%d%d",&x[i],&y[i],&hp[i]), x[i]+=500, y[i]+=500; static int sum[1502][1502]; rep(i,k){ int ax,ay,w,h,d; scanf("%d%d%d%d%d",&ax,&ay,&w,&h,&d); ax+=500; ay+=500; sum[ay][ax]+=d; sum[ay][ax+w+1]-=d; sum[ay+h+1][ax]-=d; sum[ay+h+1][ax+w+1]+=d; } rep(i,1502) rep(j,1501) sum[i][j+1]+=sum[i][j]; rep(i,1501) rep(j,1502) sum[i+1][j]+=sum[i][j]; int ans=0; rep(i,n) ans+=max(hp[i]-sum[y[i]][x[i]],0); printf("%d\n",ans); return 0; }