結果
問題 | No.789 範囲の合計 |
ユーザー | ganariya |
提出日時 | 2019-02-08 22:31:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 608 ms / 1,000 ms |
コード長 | 2,627 bytes |
コンパイル時間 | 1,976 ms |
コンパイル使用メモリ | 160,768 KB |
実行使用メモリ | 67,100 KB |
最終ジャッジ日時 | 2024-07-01 11:38:51 |
合計ジャッジ時間 | 7,008 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 538 ms
61,596 KB |
testcase_03 | AC | 110 ms
15,744 KB |
testcase_04 | AC | 509 ms
59,676 KB |
testcase_05 | AC | 461 ms
62,460 KB |
testcase_06 | AC | 477 ms
61,724 KB |
testcase_07 | AC | 100 ms
15,568 KB |
testcase_08 | AC | 298 ms
34,844 KB |
testcase_09 | AC | 269 ms
32,888 KB |
testcase_10 | AC | 608 ms
67,100 KB |
testcase_11 | AC | 474 ms
60,728 KB |
testcase_12 | AC | 474 ms
59,884 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
ソースコード
//include //------------------------------------------ #include <vector> #include <list> #include <map> #include <unordered_map> #include <climits> #include <set> #include <unordered_set> #include <deque> #include <stack> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cmath> #include <cstdlib> #include <cctype> #include <string> #include <cstring> #include <ctime> #include <queue> #include <random> #include <complex> #include <regex> #include <locale> #include <random> using namespace std; #define SHOW_VECTOR(v) {std::cerr << #v << "\t:";for(const auto& xxx : v){std::cerr << xxx << " ";}std::cerr << "\n";} #define SHOW_MAP(v){std::cerr << #v << endl; for(const auto& xxx: v){std::cerr << xxx.first << " " << xxx.second << "\n";}} using LL = long long; map<int, int> f; map<int, int> g; class SegmentTree { int n; vector<LL> node; public: SegmentTree() { int sz = f.size(); n = 1; while (n < sz) n *= 2; node.resize(2 * n - 1, 0); } void add(int index, int val) { index += n - 1; node[index] += val; while (index > 0) { index = (index - 1) / 2; node[index] = node[index * 2 + 1] + node[index * 2 + 2]; } } LL get_sum(int a, int b, int k = 0, int l = 0, int r = -1) { if (r < 0) r = n; if (r <= a || b <= l) return 0; if (a <= l && r <= b) return node[k]; LL vl = get_sum(a, b, k * 2 + 1, l, (l + r) / 2); LL vr = get_sum(a, b, k * 2 + 2, (l + r) / 2, r); return vl + vr; } }; int main() { int Q; cin >> Q; vector<LL> p(Q), l(Q), r(Q); for (int i = 0; i < Q; i++) { cin >> p[i] >> l[i] >> r[i]; } vector<LL> d; for (int i = 0; i < Q; i++) d.push_back(l[i]), d.push_back(r[i]); vector<LL> dd; for (int i = 0; i < d.size(); i++) { for (int j = -1; j <= 1; j++) { dd.push_back(d[i] + j); } } sort(dd.begin(), dd.end()); dd.erase(unique(dd.begin(), dd.end()), dd.end()); // SHOW_VECTOR(dd); for (int i = 0; i < dd.size(); i++) f[i] =dd[i]; for (int i = 0; i < dd.size(); i++) g[dd[i]] = i; // // //SHOW_VECTOR(d); LL ans = 0; SegmentTree seg; for (int i = 0; i < Q; i++) { if (p[i] == 0) { seg.add(g[l[i]], r[i]); } else { ans += seg.get_sum(g[l[i]], g[r[i]] + 1); } } cout << ans << endl; return 0; }