結果

問題 No.1995 CHIKA Road
ユーザー tnakao0123tnakao0123
提出日時 2022-07-03 01:26:43
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 1,057 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 55,704 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-11-28 01:46:16
合計ジャッジ時間 3,533 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,808 KB
testcase_01 AC 4 ms
7,936 KB
testcase_02 AC 4 ms
7,808 KB
testcase_03 AC 4 ms
7,808 KB
testcase_04 AC 4 ms
7,936 KB
testcase_05 AC 4 ms
7,808 KB
testcase_06 AC 8 ms
7,936 KB
testcase_07 AC 22 ms
8,832 KB
testcase_08 AC 4 ms
7,808 KB
testcase_09 AC 4 ms
7,808 KB
testcase_10 AC 40 ms
10,112 KB
testcase_11 AC 80 ms
13,184 KB
testcase_12 AC 55 ms
12,288 KB
testcase_13 AC 24 ms
9,728 KB
testcase_14 AC 26 ms
9,728 KB
testcase_15 AC 63 ms
12,672 KB
testcase_16 AC 11 ms
8,320 KB
testcase_17 AC 36 ms
9,984 KB
testcase_18 AC 59 ms
11,264 KB
testcase_19 AC 60 ms
11,264 KB
testcase_20 AC 33 ms
9,728 KB
testcase_21 AC 31 ms
9,600 KB
testcase_22 AC 57 ms
11,136 KB
testcase_23 AC 20 ms
8,832 KB
testcase_24 AC 50 ms
10,752 KB
testcase_25 AC 13 ms
8,448 KB
testcase_26 AC 22 ms
9,088 KB
testcase_27 AC 48 ms
10,752 KB
testcase_28 AC 30 ms
9,600 KB
testcase_29 AC 59 ms
11,136 KB
testcase_30 AC 12 ms
8,320 KB
testcase_31 AC 7 ms
7,936 KB
testcase_32 AC 15 ms
8,576 KB
testcase_33 AC 46 ms
10,496 KB
testcase_34 AC 9 ms
8,064 KB
testcase_35 AC 21 ms
8,960 KB
testcase_36 AC 25 ms
9,088 KB
testcase_37 AC 55 ms
11,136 KB
testcase_38 AC 39 ms
10,240 KB
testcase_39 AC 7 ms
8,064 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