結果

問題 No.833 かっこいい電車
ユーザー Yumeno UkihashiYumeno Ukihashi
提出日時 2019-05-24 21:49:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 1,855 bytes
コンパイル時間 1,750 ms
コンパイル使用メモリ 175,244 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-07-02 03:39:59
合計ジャッジ時間 4,484 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
6,656 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 71 ms
7,040 KB
testcase_11 AC 97 ms
8,192 KB
testcase_12 AC 30 ms
5,888 KB
testcase_13 AC 20 ms
5,376 KB
testcase_14 AC 80 ms
8,192 KB
testcase_15 AC 40 ms
6,656 KB
testcase_16 AC 35 ms
7,424 KB
testcase_17 AC 24 ms
5,376 KB
testcase_18 AC 89 ms
7,040 KB
testcase_19 AC 33 ms
7,040 KB
testcase_20 AC 10 ms
5,376 KB
testcase_21 AC 66 ms
5,632 KB
testcase_22 AC 58 ms
8,576 KB
testcase_23 AC 37 ms
7,168 KB
testcase_24 AC 57 ms
8,320 KB
testcase_25 AC 80 ms
6,656 KB
testcase_26 AC 39 ms
7,424 KB
testcase_27 AC 59 ms
6,912 KB
testcase_28 AC 40 ms
5,504 KB
testcase_29 AC 51 ms
6,400 KB
testcase_30 AC 89 ms
9,216 KB
testcase_31 AC 52 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(x,y,z) for(int x=y;x<=z;x++)
#define MSET(x,y) memset(x,y,sizeof(x))
#define M 100005
using namespace std;
using LL = long long;
using P = pair<int,int>;
int n,q;
LL tree[M];
int low(int x) { return x&-x; }
void add(int x,int v) {
    for (int i=x; i<=n; i+=low(i))
        tree[i] += v;
}
LL ask(int x) {
    LL res = 0;
    for (int i=x; i>0; i-=low(i))
        res += tree[i];
    return res;
}
LL ask(int x,int y) {
    return ask(y) - ask(x-1);
}
int main()
{
    set<P> s;
    while (~scanf("%d %d", &n, &q)) {
        s.clear();
        MSET(tree, 0);
        REP(i,1,n) {
            int x;
            scanf("%d", &x);
            add(i, x);
        }
        REP(i,1,n) s.insert( make_pair(i,i) );

        auto find_seg = [&](int x) {
            auto it = s.upper_bound( make_pair(x+1, -1) );
            if (it==s.begin()) return make_pair(-1, -1);
            --it;
            return *it;
        };

        REP(i,1,q) {
            int x,y;
            scanf("%d %d",&x,&y);
            if (x==1) {
                auto seg = find_seg(y);
                auto seg2 = find_seg(y+1);
                if (seg!=seg2) {
                    s.erase(seg);
                    s.erase(seg2);
                    s.insert(make_pair(seg.first, seg2.second));
                }
            }
            if (x==2) {
                auto seg = find_seg(y);
                if (y+1 <= seg.second) {
                    s.erase(seg);
                    s.insert(make_pair(seg.first, y));
                    s.insert(make_pair(y+1, seg.second));
                }
            }
            if (x==3) {
                add(y, 1);
            }
            if (x==4) {
                auto seg = find_seg(y);
                printf("%lld\n", ask(seg.first, seg.second));
            }
        }
    }
    return 0;
}
0