結果

問題 No.2223 Merged Med
ユーザー ぷらぷら
提出日時 2023-02-17 22:34:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,347 ms / 7,000 ms
コード長 2,574 bytes
コンパイル時間 2,622 ms
コンパイル使用メモリ 217,928 KB
実行使用メモリ 9,140 KB
最終ジャッジ日時 2024-07-19 13:46:51
合計ジャッジ時間 25,559 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 628 ms
6,944 KB
testcase_14 AC 497 ms
6,940 KB
testcase_15 AC 454 ms
7,060 KB
testcase_16 AC 1,056 ms
8,524 KB
testcase_17 AC 324 ms
6,940 KB
testcase_18 AC 445 ms
6,944 KB
testcase_19 AC 585 ms
6,940 KB
testcase_20 AC 1,320 ms
9,140 KB
testcase_21 AC 1,329 ms
9,016 KB
testcase_22 AC 1,332 ms
8,888 KB
testcase_23 AC 1,342 ms
9,020 KB
testcase_24 AC 1,284 ms
9,012 KB
testcase_25 AC 1,315 ms
8,892 KB
testcase_26 AC 1,347 ms
9,012 KB
testcase_27 AC 1,317 ms
9,012 KB
testcase_28 AC 1,310 ms
9,016 KB
testcase_29 AC 1,344 ms
8,884 KB
testcase_30 AC 647 ms
9,012 KB
testcase_31 AC 633 ms
9,020 KB
testcase_32 AC 337 ms
6,944 KB
testcase_33 AC 1,138 ms
9,016 KB
testcase_34 AC 934 ms
8,884 KB
testcase_35 AC 936 ms
8,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int inf = 1001001001;

array<int,4> mrg(array<int,4>&a,array<int,4>&b) {
    array<int,4>ar = {0,0,0,0};
    ar[0] = max(a[0],a[2]+b[0]);
    ar[1] = max(b[1],b[2]+a[1]);
    ar[2] = a[2]+b[2];
    ar[3] = max({a[3],b[3],a[1]+b[0]});
    return ar;
}

struct SegmentTree {
    int n;
    vector<array<int,4>> dat;
    SegmentTree() {}
    SegmentTree(int N) {
        n = 1;
        while(n < N) {
            n *= 2;
        }
        dat.resize(2*n-1);
        for(int i = n-1; i < 2*n-1; i++) {
            dat[i] = {1,1,1,1};
        }
        for(int i = n-2; i >= 0; i--) {
            dat[i] = mrg(dat[i*2+1],dat[i*2+2]);
        }
    }
    void update(int x) {
        x += n-1;
        dat[x] = {0,0,-1,0};
        while(x > 0) {
            x = (x-1)/2;
            dat[x] = mrg(dat[2*x+1],dat[2*x+2]);
        }
    }
    array<int,4> query(int a, int b, int k, int l, int r) {
        if(r <= a || b <= l) return {0,0,0,0};
        if(a <= l && r <= b) return dat[k];
        array<int,4> vl = query(a, b, 2*k+1, l, (l+r)/2);
        array<int,4> vr = query(a, b, 2*k+2, (l+r)/2, r);
        return mrg(vl, vr);
    }
    array<int,4> query(int a,int b) {//[a,b)
        return query(a,b,0,0,n);
    }
};

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N,Q;
    cin >> N >> Q;
    vector<int>A(N);
    for(int i = 0; i < N; i++) {
        cin >> A[i];
    }
    vector<int>L(Q),R(Q);
    for(int i = 0; i < Q; i++) {
        cin >> L[i] >> R[i];
        L[i]--;
        R[i]--;
    }
    vector<int>l(Q,0),r(Q,inf);
    while(true) {
        vector<array<int,3>>query;
        for(int i = 0; i < Q; i++) {
            if(l[i]+1 < r[i]) {
                int mid = (l[i]+r[i])/2;
                query.push_back({mid,1,i});
            }
        }
        if(query.empty()) break;
        for(int i = 0; i < N; i++) {
            query.push_back({A[i],0,i});
        }
        sort(query.begin(),query.end());
        SegmentTree Seg(N);
        for(int i = 0; i < query.size(); i++) {
            if(query[i][1] == 0) {
                Seg.update(query[i][2]);
            }
            else {
                int id = query[i][2];
                array<int,4> now = Seg.query(L[id],R[id]+1);
                if(-now[2]+max(0,now[3]-1) >= 1) {
                    r[id] = query[i][0];
                }
                else {
                    l[id] = query[i][0];
                }
            }
        }
    }
    for(int i = 0; i < Q; i++) {
        cout << r[i] << "\n";
    }
}
0