結果
問題 | No.1441 MErGe |
ユーザー | Kude |
提出日時 | 2021-03-26 23:31:49 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 688 ms / 1,000 ms |
コード長 | 1,839 bytes |
コンパイル時間 | 6,262 ms |
コンパイル使用メモリ | 292,124 KB |
実行使用メモリ | 25,984 KB |
最終ジャッジ日時 | 2024-05-06 17:33:00 |
合計ジャッジ時間 | 18,325 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 6 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 9 ms
5,376 KB |
testcase_06 | AC | 10 ms
5,376 KB |
testcase_07 | AC | 10 ms
5,376 KB |
testcase_08 | AC | 96 ms
8,448 KB |
testcase_09 | AC | 98 ms
8,448 KB |
testcase_10 | AC | 140 ms
7,808 KB |
testcase_11 | AC | 121 ms
6,912 KB |
testcase_12 | AC | 151 ms
8,448 KB |
testcase_13 | AC | 565 ms
24,704 KB |
testcase_14 | AC | 550 ms
24,704 KB |
testcase_15 | AC | 546 ms
23,808 KB |
testcase_16 | AC | 514 ms
24,832 KB |
testcase_17 | AC | 514 ms
24,064 KB |
testcase_18 | AC | 294 ms
19,328 KB |
testcase_19 | AC | 348 ms
22,400 KB |
testcase_20 | AC | 265 ms
18,432 KB |
testcase_21 | AC | 228 ms
16,128 KB |
testcase_22 | AC | 269 ms
15,232 KB |
testcase_23 | AC | 620 ms
25,856 KB |
testcase_24 | AC | 650 ms
25,984 KB |
testcase_25 | AC | 671 ms
25,856 KB |
testcase_26 | AC | 667 ms
25,984 KB |
testcase_27 | AC | 688 ms
25,856 KB |
testcase_28 | AC | 342 ms
25,856 KB |
testcase_29 | AC | 345 ms
25,856 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; using namespace std; using namespace atcoder; #define rep(i,n)for (int i = 0; i < int(n); ++i) #define rrep(i,n)for (int i = int(n)-1; i >= 0; --i) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() template<class T> void chmax(T& a, const T& b) {a = max(a, b);} template<class T> void chmin(T& a, const T& b) {a = min(a, b);} using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, q; cin >> n >> q; VL a(n), s(n + 1); rep(i, n) cin >> a[i]; rep(i, n) s[i+1] = s[i] + a[i]; VI tmp(n); iota(all(tmp), 0); tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> t_l(all(tmp)); tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> t_r(all(tmp)); while(q--) { int type, l, r; cin >> type >> l >> r; l--, r--; if (type == 1) { { auto it1 = t_r.find_by_order(l); auto it2 = t_r.find_by_order(r); while(it1 != it2) it1 = t_r.erase(it1); } { auto it1 = t_l.find_by_order(l); auto it2 = t_l.find_by_order(r); while(it1 != it2) { auto tmp = it2; tmp--; t_l.erase(it2); it2 = tmp; } } } else { int i = *t_l.find_by_order(l); int j = *t_r.find_by_order(r); cout << s[j + 1] - s[i] << '\n'; } } }