結果
問題 | No.60 魔法少女 |
ユーザー | face4 |
提出日時 | 2018-11-03 08:41:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 77 ms / 5,000 ms |
コード長 | 826 bytes |
コンパイル時間 | 602 ms |
コンパイル使用メモリ | 65,824 KB |
実行使用メモリ | 13,652 KB |
最終ジャッジ日時 | 2024-11-20 18:24:30 |
合計ジャッジ時間 | 1,987 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
12,360 KB |
testcase_01 | AC | 11 ms
12,360 KB |
testcase_02 | AC | 12 ms
12,364 KB |
testcase_03 | AC | 9 ms
12,484 KB |
testcase_04 | AC | 45 ms
12,684 KB |
testcase_05 | AC | 46 ms
13,472 KB |
testcase_06 | AC | 72 ms
13,588 KB |
testcase_07 | AC | 56 ms
13,292 KB |
testcase_08 | AC | 38 ms
13,132 KB |
testcase_09 | AC | 19 ms
12,596 KB |
testcase_10 | AC | 69 ms
13,588 KB |
testcase_11 | AC | 14 ms
12,764 KB |
testcase_12 | AC | 32 ms
13,156 KB |
testcase_13 | AC | 77 ms
13,652 KB |
ソースコード
#include<iostream> using namespace std; typedef long long ll; int sum[1505][1505] = {}; int main(){ int n, k; scanf("%d %d", &n, &k); int x[n], y[n], hp[n]; for(int i = 0; i < n; i++) scanf("%d %d %d", x+i, y+i, hp+i); int ax, ay, w, h, d; for(int i = 0; i < k; i++){ scanf("%d %d %d %d %d", &ax, &ay, &w, &h, &d); ax += 501; ay += 501; sum[ax][ay] += d; sum[ax+w+1][ay] -= d; sum[ax][ay+h+1] -= d; sum[ax+w+1][ay+h+1] += d; } for(int i = 1; i < 1505; i++){ for(int j = 1; j < 1505; j++){ sum[i][j] += sum[i-1][j] + sum[i][j-1] - sum[i-1][j-1]; } } ll ans = 0; for(int i = 0; i < n; i++){ ans += max(0, hp[i]-sum[x[i]+501][y[i]+501]); } cout << ans << endl; return 0; }