結果

問題 No.2796 Small Matryoshka
ユーザー t98slidert98slider
提出日時 2024-06-29 16:10:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 840 bytes
コンパイル時間 4,401 ms
コンパイル使用メモリ 269,996 KB
実行使用メモリ 11,436 KB
最終ジャッジ日時 2024-06-29 16:10:11
合計ジャッジ時間 7,589 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 19 ms
5,376 KB
testcase_06 AC 113 ms
11,392 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 82 ms
7,936 KB
testcase_09 AC 128 ms
9,344 KB
testcase_10 AC 114 ms
9,216 KB
testcase_11 AC 123 ms
11,436 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int op(int lhs, int rhs){return max(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();
        seg.set(R, seg.prod(0, r + 1) + 1);
    }
    cout << N - seg.all_prod() << '\n';
}
0