結果

問題 No.1995 CHIKA Road
ユーザー tnakao0123tnakao0123
提出日時 2022-07-03 01:26:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 1,057 bytes
コンパイル時間 651 ms
コンパイル使用メモリ 55,684 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-05-06 00:19:09
合計ジャッジ時間 4,526 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
7,808 KB
testcase_01 AC 6 ms
7,808 KB
testcase_02 AC 6 ms
7,936 KB
testcase_03 AC 7 ms
7,936 KB
testcase_04 AC 6 ms
7,808 KB
testcase_05 AC 6 ms
7,936 KB
testcase_06 AC 11 ms
8,064 KB
testcase_07 AC 24 ms
8,960 KB
testcase_08 AC 6 ms
7,808 KB
testcase_09 AC 5 ms
7,808 KB
testcase_10 AC 46 ms
10,112 KB
testcase_11 AC 99 ms
13,312 KB
testcase_12 AC 74 ms
12,544 KB
testcase_13 AC 33 ms
9,728 KB
testcase_14 AC 34 ms
9,728 KB
testcase_15 AC 83 ms
12,672 KB
testcase_16 AC 14 ms
8,448 KB
testcase_17 AC 44 ms
9,984 KB
testcase_18 AC 72 ms
11,392 KB
testcase_19 AC 74 ms
11,264 KB
testcase_20 AC 41 ms
9,856 KB
testcase_21 AC 38 ms
9,728 KB
testcase_22 AC 70 ms
11,264 KB
testcase_23 AC 24 ms
9,088 KB
testcase_24 AC 61 ms
10,752 KB
testcase_25 AC 16 ms
8,576 KB
testcase_26 AC 27 ms
9,216 KB
testcase_27 AC 58 ms
10,752 KB
testcase_28 AC 38 ms
9,728 KB
testcase_29 AC 70 ms
11,264 KB
testcase_30 AC 15 ms
8,448 KB
testcase_31 AC 10 ms
8,192 KB
testcase_32 AC 19 ms
8,576 KB
testcase_33 AC 57 ms
10,624 KB
testcase_34 AC 11 ms
8,192 KB
testcase_35 AC 26 ms
9,088 KB
testcase_36 AC 30 ms
9,216 KB
testcase_37 AC 67 ms
11,136 KB
testcase_38 AC 49 ms
10,240 KB
testcase_39 AC 10 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 1995.cc:  No.1995 CHIKA Road - yukicoder
 */

#include<cstdio>
#include<vector>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_M = 100000;
const int MAX_K = MAX_M * 2 + 2;

/* typedef */

typedef vector<int> vi;

/* global variables */

int as[MAX_M], bs[MAX_M], xs[MAX_K], dp[MAX_K];
vi nbrs[MAX_K];

/* subroutines */

inline void setmax(int &a, int b) { if (a < b) a = b; }

/* main */

int main() {
  int n, m;
  scanf("%d%d", &n, &m);

  int k = 0;
  xs[k++] = 1, xs[k++] = n;
  for (int i = 0; i < m; i++) {
    scanf("%d%d", as + i, bs + i);
    xs[k++] = as[i], xs[k++] = bs[i];
  }
  sort(xs, xs + k);
  k = unique(xs, xs + k) - xs;

  for (int i = 0; i < m; i++) {
    int ai = lower_bound(xs, xs + k, as[i]) - xs;
    int bi = lower_bound(xs, xs + k, bs[i]) - xs;
    nbrs[ai].push_back(bi);
  }

  for (int i = 0; i < k; i++) {
    if (i + 1 < n) setmax(dp[i + 1], dp[i]);
    for (auto j: nbrs[i]) setmax(dp[j], dp[i] + 1);
  }

  printf("%d\n", (n - 1) * 2 - dp[k - 1]);
  return 0;
}
0