結果

問題 No.2796 Small Matryoshka
ユーザー ponjuiceponjuice
提出日時 2024-06-28 21:28:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 758 bytes
コンパイル時間 5,085 ms
コンパイル使用メモリ 315,304 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-06-28 21:28:44
合計ジャッジ時間 7,582 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 28 ms
5,376 KB
testcase_06 AC 156 ms
6,656 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 123 ms
5,888 KB
testcase_09 AC 200 ms
7,168 KB
testcase_10 AC 178 ms
7,168 KB
testcase_11 AC 182 ms
7,168 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;
using namespace atcoder;
using ll = long long;
#define rep(i,a,b) for(ll i = a; i < b; i++)
#define all(a) (a).begin(), (a).end()
bool chmin(auto &a, auto b){if(a > b){a = b; return true;} return false;}
bool chmax(auto &a, auto b){if(a < b){a = b; return true;} return false;}

int main(){
    int n;
    cin >> n;
    vector<array<ll,2>> p(n);
    rep(i,0,n){
        cin >> p[i][1] >> p[i][0];
    }
    sort(all(p));

    vector<int> mx(n, 1);
    rep(i,1,n){
        mx[i] = mx[i-1];

        auto itr = lower_bound(all(p), array<ll,2>{p[i][1]+1,0});
        if(itr != p.begin()){
            chmax(mx[i], mx[itr-p.begin() - 1] + 1);
        }
    }

    cout << n - (mx[n-1])<< endl;
}
0