結果
問題 | No.60 魔法少女 |
ユーザー | pekempey |
提出日時 | 2016-03-28 17:02:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 165 ms / 5,000 ms |
コード長 | 1,028 bytes |
コンパイル時間 | 1,402 ms |
コンパイル使用メモリ | 160,764 KB |
実行使用メモリ | 28,288 KB |
最終ジャッジ日時 | 2024-10-02 06:39:14 |
合計ジャッジ時間 | 3,771 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 106 ms
27,264 KB |
testcase_05 | AC | 87 ms
27,648 KB |
testcase_06 | AC | 165 ms
27,904 KB |
testcase_07 | AC | 118 ms
27,648 KB |
testcase_08 | AC | 81 ms
27,520 KB |
testcase_09 | AC | 45 ms
26,496 KB |
testcase_10 | AC | 148 ms
28,032 KB |
testcase_11 | AC | 16 ms
11,008 KB |
testcase_12 | AC | 64 ms
27,136 KB |
testcase_13 | AC | 162 ms
28,288 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:35:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 35 | scanf("%d %d %d", &xs[i], &ys[i], &hp[i]); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:42:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 42 | scanf("%d %d %d %d %d", &x, &y, &w, &h, &d); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; long long bit[2020][2020]; void update(int y, int x, long long v) { for (int i = y; i < 2020; i += i & -i) { for (int j = x; j < 2020; j += j & -j) { bit[i][j] += v; } } } long long query(int y, int x) { long long result = 0; for (int i = y; i > 0; i -= i & -i) { for (int j = x; j > 0; j -= j & -j) { result += bit[i][j]; } } return result; } int main() { int n, k; cin >> n >> k; const int offset = 510; vector<int> xs(n); vector<int> ys(n); vector<int> hp(n); for (int i = 0; i < n; i++) { scanf("%d %d %d", &xs[i], &ys[i], &hp[i]); xs[i] += offset; ys[i] += offset; } for (int i = 0; i < k; i++) { int x, y, w, h, d; scanf("%d %d %d %d %d", &x, &y, &w, &h, &d); x += offset; y += offset; update(y, x, d); update(y + h + 1, x, -d); update(y, x + w + 1, -d); update(y + h + 1, x + w + 1, d); } long long ans = 0; for (int i = 0; i < n; i++) { ans += max(0ll, hp[i] - query(ys[i], xs[i])); } cout << ans << endl; }