結果

問題 No.2796 Small Matryoshka
ユーザー GOTKAKOGOTKAKO
提出日時 2024-06-28 21:28:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 514 bytes
コンパイル時間 1,866 ms
コンパイル使用メモリ 213,832 KB
実行使用メモリ 15,708 KB
最終ジャッジ日時 2024-06-28 21:28:30
合計ジャッジ時間 4,264 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 11 ms
6,944 KB
testcase_06 AC 56 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 44 ms
6,940 KB
testcase_09 AC 131 ms
15,708 KB
testcase_10 AC 127 ms
15,704 KB
testcase_11 AC 134 ms
15,616 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N; cin >> N;
    vector<pair<long long,long long>> rR(N);
    for(auto &[r,R] : rR) cin >> r >> R;
    sort(rR.rbegin(),rR.rend());

    multiset<long long> S;
    for(auto &[r,R] : rR){
        auto itr = S.lower_bound(R);
        if(itr == S.end()) S.insert(r);
        else{
            itr--;
            S.erase(itr); S.insert(r);
        }
    }
    cout << S.size()-1 << endl;
}
0