結果

問題 No.2796 Small Matryoshka
ユーザー askr58askr58
提出日時 2024-06-28 22:52:54
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 4,688 ms
コンパイル使用メモリ 320,292 KB
実行使用メモリ 15,872 KB
最終ジャッジ日時 2024-06-28 22:53:07
合計ジャッジ時間 7,288 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 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,944 KB
testcase_05 AC 24 ms
6,940 KB
testcase_06 AC 142 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 112 ms
6,940 KB
testcase_09 AC 210 ms
15,872 KB
testcase_10 AC 226 ms
15,728 KB
testcase_11 AC 219 ms
15,744 KB
testcase_12 AC 53 ms
6,940 KB
testcase_13 AC 9 ms
6,944 KB
testcase_14 AC 47 ms
6,944 KB
testcase_15 AC 14 ms
6,944 KB
testcase_16 AC 24 ms
6,944 KB
testcase_17 AC 135 ms
7,936 KB
testcase_18 AC 148 ms
8,576 KB
testcase_19 AC 43 ms
6,940 KB
testcase_20 AC 61 ms
6,944 KB
testcase_21 AC 131 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main()
{
    int n;
    cin>>n;
    using pll=pair<ll,ll>;
    vector<pll> a(n);
    for(int i=0;i<n;i++)cin>>a[i].second>>a[i].first;
    sort(a.rbegin(),a.rend());
    multiset<ll> s;
    int ans=-1;
    for(int i=0;i<n;i++){
        auto itr=s.lower_bound(a[i].first);
        if(itr==s.end()){
            ans++;
        }else{
            s.extract(itr);
        }
        s.insert(a[i].second);
    }
    cout<<ans<<endl;

    return 0;
}
0