結果
問題 | No.1441 MErGe |
ユーザー | ninoinui |
提出日時 | 2021-03-27 01:21:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 403 ms / 1,000 ms |
コード長 | 2,917 bytes |
コンパイル時間 | 4,398 ms |
コンパイル使用メモリ | 240,828 KB |
実行使用メモリ | 23,576 KB |
最終ジャッジ日時 | 2024-05-06 19:14:09 |
合計ジャッジ時間 | 12,741 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 5 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 10 ms
5,376 KB |
testcase_06 | AC | 9 ms
5,376 KB |
testcase_07 | AC | 9 ms
5,376 KB |
testcase_08 | AC | 80 ms
8,064 KB |
testcase_09 | AC | 72 ms
7,808 KB |
testcase_10 | AC | 115 ms
8,576 KB |
testcase_11 | AC | 92 ms
7,936 KB |
testcase_12 | AC | 120 ms
8,960 KB |
testcase_13 | AC | 342 ms
21,760 KB |
testcase_14 | AC | 340 ms
21,760 KB |
testcase_15 | AC | 337 ms
21,376 KB |
testcase_16 | AC | 326 ms
21,640 KB |
testcase_17 | AC | 320 ms
21,248 KB |
testcase_18 | AC | 230 ms
17,664 KB |
testcase_19 | AC | 267 ms
20,176 KB |
testcase_20 | AC | 211 ms
16,896 KB |
testcase_21 | AC | 177 ms
14,848 KB |
testcase_22 | AC | 214 ms
16,000 KB |
testcase_23 | AC | 393 ms
23,552 KB |
testcase_24 | AC | 403 ms
23,512 KB |
testcase_25 | AC | 391 ms
23,424 KB |
testcase_26 | AC | 393 ms
23,576 KB |
testcase_27 | AC | 386 ms
23,552 KB |
testcase_28 | AC | 210 ms
23,472 KB |
testcase_29 | AC | 212 ms
23,532 KB |
ソースコード
#pragma GCC diagnostic warning "-Wextra" #pragma GCC diagnostic warning "-Wshadow" #include <bits/stdc++.h> using namespace std; #include <bits/stdc++.h> #include<ext/pb_ds/assoc_container.hpp> using namespace std; using namespace __gnu_pbds; template <class A, class B> bool cmin(A& a, B b) { return a > b && (a = b, true); } template <class A, class B> bool cmax(A& a, B b) { return a < b && (a = b, true); } template <class A, class B> ostream& operator<<(ostream& os, pair<A, B>& p) { return os << '(' << p.first << ", " << p.second << ')'; } static bool debug = false; void dump() {} template <class A, class... B> void dump(A&& a, B&&... b) { if (debug) cout << a << (sizeof...(b) ? ' ' : '\n'), dump(b...); } template <class A> void dump1D(A& a) { if (debug) for (auto i = a.begin(); i != a.end(); i++) cout << *i << (next(i) != a.end() ? ' ' : '\n'); } template <class A> void dump2D(A& a) { if (debug) for (auto i = a.begin(); i != a.end(); i++) dump1D(*i), cout << (next(i) != a.end() ? "" : "\n"); } template <typename T> class FenwickTree { private: long N, M; vector<T> B; public: FenwickTree() : N(0) {} FenwickTree(long n) : N(n + 1), M(1), B(N, 0) { while (M * 2 <= N) M *= 2; } FenwickTree(const vector<T> &v) : N((long)v.size() + 1), M(1), B(N, 0) { for (long i = 0; i < N - 1; i++) add(i, v.at(i)); while (M * 2 <= N) M *= 2; } void add(long i, T x) { i++; while (i < N) B.at(i) += x, i += i & -i; } void add(long l, long r, T x) { add(l, x); add(r + 1, -x); } T sum(long i) { i++; T ret = 0; while (i > 0) ret += B.at(i), i -= i & -i; return ret; } T sum(long l, long r) { return sum(r) - sum(l - 1); } T at(long i) { return sum(i) - sum(i - 1); } long lower_bound(T w) { if (w <= 0) return 0; long x = 0; for (long k = M; k > 0; k /= 2) { if (x + k <= N - 1 && B.at(x + k) < w) { w -= B.at(x + k); x += k; } } return x; } long upper_bound(T w) { if (w < 0) return 0; long x = 0; for (long k = M; k > 0; k /= 2) { if (x + k <= N - 1 && B.at(x + k) <= w) { w -= B.at(x + k); x += k; } } return x; } }; signed main() { cin.tie(nullptr)->sync_with_stdio(false); debug = true; long N, Q; cin >> N >> Q; vector<long> A(N); for (long i = 0; i < N; i++) cin >> A.at(i); vector<tuple<long, long, long>> V(Q); for (long i = 0; i < Q; i++) { long a, b, c; cin >> a >> b >> c, b--, c--; V.at(i) = {a, b, c}; } FenwickTree<long> FT(A); tree<long, null_type, less<long>, rb_tree_tag, tree_order_statistics_node_update> T; for (long i = 0; i <= N; i++) T.insert(i); for (const auto& [a, l, r] : V) { if (a == 1) { for (long i = r; i > l; i--) T.erase(*T.find_by_order(i)); } else { cout << FT.sum(*T.find_by_order(l), *T.find_by_order(r + 1) - 1) << '\n'; } } }