結果

問題 No.2796 Small Matryoshka
ユーザー daiotadaiota
提出日時 2024-06-28 23:12:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 801 bytes
コンパイル時間 1,433 ms
コンパイル使用メモリ 174,852 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-06-28 23:13:00
合計ジャッジ時間 2,943 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 10 ms
5,376 KB
testcase_06 AC 53 ms
7,168 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 42 ms
6,400 KB
testcase_09 AC 67 ms
7,936 KB
testcase_10 AC 61 ms
7,808 KB
testcase_11 AC 61 ms
7,808 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<int,int> P;
#define REP(i,n) for(int i=0;i<int(n);i++)


int dp[200010][2];




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

    int 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