結果

問題 No.2796 Small Matryoshka
ユーザー daiotadaiota
提出日時 2024-06-28 23:14:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 796 bytes
コンパイル時間 1,541 ms
コンパイル使用メモリ 174,788 KB
実行使用メモリ 12,552 KB
最終ジャッジ日時 2024-06-28 23:15:10
合計ジャッジ時間 3,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 10 ms
6,944 KB
testcase_06 AC 55 ms
11,380 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 43 ms
9,600 KB
testcase_09 AC 63 ms
12,544 KB
testcase_10 AC 61 ms
12,496 KB
testcase_11 AC 62 ms
12,552 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>

using namespace std;

typedef long long ll;
typedef pair<ll,ll> P;
#define REP(i,n) for(int i=0;i<int(n);i++)


ll dp[200010][2];




int main(){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
    ll i,j,k;

    ll N;
    cin >> N;

   vector<P> M(N+1);
   M[0]=P(0,0);

    for(i=1;i<=N;i++) cin >> M[i].first >> M[i].second;

    sort(M.begin(),M.end());
    vector<P> MM=M;

    for(i=1;i<=N;i++){
    	if(M[i-1].second<=M[i].first ){
    		dp[i][1]=max(dp[i-1][0]+1,dp[i-1][1]+1);
    	}

    	else if(MM[i-1].second<=MM[i].first ){
    		dp[i][1]=dp[i-1][0]+1;
    	}

    	else{
    		dp[i][0]=max(dp[i-1][0],dp[i-1][1]);
    		MM[i].second=min(M[i-1].second,MM[i-1].second);
    	}

    }


    cout << N-max(dp[N][0],dp[N][1]) << endl;





	return 0;

}
0