結果

問題 No.1441 MErGe
ユーザー KudeKude
提出日時 2021-03-26 23:31:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 666 ms / 1,000 ms
コード長 1,839 bytes
コンパイル時間 6,228 ms
コンパイル使用メモリ 291,228 KB
実行使用メモリ 25,984 KB
最終ジャッジ日時 2024-11-29 01:48:16
合計ジャッジ時間 17,501 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 5 ms
5,248 KB
testcase_04 AC 5 ms
5,248 KB
testcase_05 AC 10 ms
5,248 KB
testcase_06 AC 9 ms
5,248 KB
testcase_07 AC 10 ms
5,248 KB
testcase_08 AC 95 ms
8,448 KB
testcase_09 AC 96 ms
8,320 KB
testcase_10 AC 136 ms
7,808 KB
testcase_11 AC 118 ms
6,912 KB
testcase_12 AC 148 ms
8,448 KB
testcase_13 AC 578 ms
24,832 KB
testcase_14 AC 576 ms
24,704 KB
testcase_15 AC 569 ms
23,808 KB
testcase_16 AC 571 ms
24,832 KB
testcase_17 AC 556 ms
24,064 KB
testcase_18 AC 301 ms
19,328 KB
testcase_19 AC 369 ms
22,272 KB
testcase_20 AC 274 ms
18,432 KB
testcase_21 AC 227 ms
16,128 KB
testcase_22 AC 276 ms
15,104 KB
testcase_23 AC 634 ms
25,856 KB
testcase_24 AC 657 ms
25,856 KB
testcase_25 AC 666 ms
25,984 KB
testcase_26 AC 648 ms
25,856 KB
testcase_27 AC 647 ms
25,856 KB
testcase_28 AC 346 ms
25,856 KB
testcase_29 AC 347 ms
25,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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';
        }
    }
}
0