結果

問題 No.2796 Small Matryoshka
ユーザー t98slidert98slider
提出日時 2024-06-29 16:27:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 945 bytes
コンパイル時間 4,556 ms
コンパイル使用メモリ 270,572 KB
実行使用メモリ 11,408 KB
最終ジャッジ日時 2024-06-29 16:27:50
合計ジャッジ時間 6,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 19 ms
6,944 KB
testcase_06 AC 113 ms
11,408 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 83 ms
7,936 KB
testcase_09 AC 117 ms
9,344 KB
testcase_10 AC 120 ms
9,344 KB
testcase_11 AC 130 ms
11,372 KB
testcase_12 AC 32 ms
6,944 KB
testcase_13 AC 6 ms
6,944 KB
testcase_14 AC 32 ms
6,940 KB
testcase_15 AC 10 ms
6,940 KB
testcase_16 AC 15 ms
6,940 KB
testcase_17 AC 93 ms
8,064 KB
testcase_18 AC 121 ms
10,448 KB
testcase_19 AC 36 ms
6,940 KB
testcase_20 AC 44 ms
6,940 KB
testcase_21 AC 90 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int op(int lhs, int rhs){return lhs + rhs;}
int e(){return 0;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N;
    cin >> N;
    vector<pair<int,int>> a(N);
    vector<int> ca(2 * N);
    for(int i = 0; i < N; i++){
        cin >> a[i].first >> a[i].second;
        ca[2 * i] = a[i].first;
        ca[2 * i + 1] = a[i].second;
    }
    sort(a.begin(), a.end());
    sort(ca.begin(), ca.end());
    ca.erase(unique(ca.begin(), ca.end()), ca.end());
    atcoder::segtree<int, op, e> seg(ca.size());
    for(auto [r, R] : a){
        r = lower_bound(ca.begin(), ca.end(), r) - ca.begin();
        R = lower_bound(ca.begin(), ca.end(), R) - ca.begin();
        int l = seg.min_left(r + 1, [&](int v){return v == 0;}) - 1;
        if(l != -1) seg.set(l, seg.get(l) - 1);
        seg.set(R, seg.get(R) + 1);
    }
    cout << seg.all_prod() - 1 << '\n';
}
0