結果

問題 No.2796 Small Matryoshka
ユーザー Apoorv KumarApoorv Kumar
提出日時 2024-06-28 21:57:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 750 bytes
コンパイル時間 3,067 ms
コンパイル使用メモリ 173,080 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-28 21:57:26
合計ジャッジ時間 3,724 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 13 ms
6,944 KB
testcase_06 AC 90 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 68 ms
6,940 KB
testcase_09 AC 94 ms
6,940 KB
testcase_10 AC 74 ms
6,940 KB
testcase_11 AC 80 ms
6,940 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;

#ifdef LOCAL
#include "../debug.h"
#else
#define dbg(...)
#endif
 
int32_t main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int N;  cin >> N;
  vector<int> L(N), R(N);
  for(int i = 0 ; i < N ; ++i) {
    cin >> L[i] >> R[i];
  }
  vector<int> dp(N + 1), ord(N);
  iota(ord.begin(), ord.end(), 0);
  sort(ord.begin(), ord.end(), [&](int i, int j) {
    return R[i] < R[j];
  });

  for(int i = 0 ; i < N ; ++i) {
    int lo = -1, hi = i;
    while(hi - lo > 1) {
      int mid = (lo + hi) / 2;
      if(L[ord[i]] >= R[ord[mid]])
        lo = mid;
      else
        hi = mid;
    }
    dp[i + 1] = max(dp[hi] + 1, dp[i]);
    dbg(i, dp[i + 1]);
  }
  cout << N - dp[N] << '\n';
  
  return 0;
}
0