結果

問題 No.1995 CHIKA Road
ユーザー SSRSSSRS
提出日時 2022-07-01 21:26:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 1,914 ms
コンパイル使用メモリ 173,712 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 15:29:40
合計ジャッジ時間 4,746 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 7 ms
5,376 KB
testcase_07 AC 18 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 49 ms
5,376 KB
testcase_11 AC 80 ms
5,376 KB
testcase_12 AC 83 ms
5,376 KB
testcase_13 AC 27 ms
5,376 KB
testcase_14 AC 29 ms
5,376 KB
testcase_15 AC 70 ms
5,376 KB
testcase_16 AC 9 ms
5,376 KB
testcase_17 AC 36 ms
5,376 KB
testcase_18 AC 60 ms
5,376 KB
testcase_19 AC 60 ms
5,376 KB
testcase_20 AC 33 ms
5,376 KB
testcase_21 AC 30 ms
5,376 KB
testcase_22 AC 56 ms
5,376 KB
testcase_23 AC 18 ms
5,376 KB
testcase_24 AC 48 ms
5,376 KB
testcase_25 AC 11 ms
5,376 KB
testcase_26 AC 21 ms
5,376 KB
testcase_27 AC 50 ms
5,376 KB
testcase_28 AC 30 ms
5,376 KB
testcase_29 AC 57 ms
5,376 KB
testcase_30 AC 11 ms
5,376 KB
testcase_31 AC 6 ms
5,376 KB
testcase_32 AC 17 ms
5,376 KB
testcase_33 AC 46 ms
5,376 KB
testcase_34 AC 6 ms
5,376 KB
testcase_35 AC 20 ms
5,376 KB
testcase_36 AC 23 ms
5,376 KB
testcase_37 AC 55 ms
5,376 KB
testcase_38 AC 38 ms
5,376 KB
testcase_39 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, M;
  cin >> N >> M;
  vector<int> A(M), B(M);
  for (int i = 0; i < M; i++){
    cin >> A[i] >> B[i];
  }
  vector<pair<int, int>> P(M);
  for (int i = 0; i < M; i++){
    P[i] = make_pair(B[i], A[i]);
  }
  sort(P.begin(), P.end());
  int q = 0;
  int c = 0;
  for (int i = 0; i < M; i++){
    if (q <= P[i].second){
      q = P[i].first;
      c++;
    }
  }
  cout << (N - 1) * 2 - c << endl;
}
0