結果
問題 | No.60 魔法少女 |
ユーザー | btk |
提出日時 | 2015-06-16 23:39:14 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 428 ms / 5,000 ms |
コード長 | 656 bytes |
コンパイル時間 | 612 ms |
コンパイル使用メモリ | 57,916 KB |
実行使用メモリ | 36,872 KB |
最終ジャッジ日時 | 2024-07-07 03:24:21 |
合計ジャッジ時間 | 3,774 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
7,496 KB |
testcase_01 | AC | 4 ms
7,496 KB |
testcase_02 | AC | 5 ms
7,620 KB |
testcase_03 | AC | 11 ms
32,208 KB |
testcase_04 | AC | 285 ms
36,452 KB |
testcase_05 | AC | 193 ms
36,872 KB |
testcase_06 | AC | 428 ms
35,952 KB |
testcase_07 | AC | 291 ms
35,888 KB |
testcase_08 | AC | 184 ms
36,744 KB |
testcase_09 | AC | 82 ms
35,736 KB |
testcase_10 | AC | 376 ms
35,924 KB |
testcase_11 | AC | 27 ms
34,888 KB |
testcase_12 | AC | 129 ms
36,828 KB |
testcase_13 | AC | 404 ms
35,940 KB |
ソースコード
#include<iostream> #include<algorithm> #define M 1600 #define m 500 typedef long long LL; LL dam[M][M]; LL enemy[M][M]; using namespace std; int main(){ int N, K; cin >> N >> K; for (int i = 0; i < N; i++){ int x, y, h; cin >> x >> y >> h; x += m, y += m; enemy[x][y]=h; } for (int k = 0; k < K; k++){ int x, y, w, h, d; cin >> x >> y >> w >> h >> d; x += m, y += m; for (int i = 0; i <= w; i++){ dam[x + i][y] += d; dam[x + i][y + h+1] -= d; } } LL res = 0; for (int i = 0; i < M; i++){ LL tmp = 0; for (int j = 0; j < M; j++){ tmp += dam[i][j]; res += max(0ll, enemy[i][j] - tmp); } } cout << res << endl; }