結果

問題 No.1995 CHIKA Road
ユーザー SSRSSSRS
提出日時 2022-07-01 21:26:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 1,684 ms
コンパイル使用メモリ 173,900 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-26 03:44:53
合計ジャッジ時間 5,233 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 6 ms
5,248 KB
testcase_07 AC 19 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 51 ms
5,248 KB
testcase_11 AC 81 ms
5,248 KB
testcase_12 AC 93 ms
5,248 KB
testcase_13 AC 27 ms
5,248 KB
testcase_14 AC 29 ms
5,248 KB
testcase_15 AC 71 ms
5,248 KB
testcase_16 AC 9 ms
5,248 KB
testcase_17 AC 37 ms
5,248 KB
testcase_18 AC 62 ms
5,248 KB
testcase_19 AC 60 ms
5,248 KB
testcase_20 AC 33 ms
5,248 KB
testcase_21 AC 30 ms
5,248 KB
testcase_22 AC 56 ms
5,248 KB
testcase_23 AC 18 ms
5,248 KB
testcase_24 AC 49 ms
5,248 KB
testcase_25 AC 11 ms
5,248 KB
testcase_26 AC 22 ms
5,248 KB
testcase_27 AC 50 ms
5,248 KB
testcase_28 AC 31 ms
5,248 KB
testcase_29 AC 59 ms
5,248 KB
testcase_30 AC 10 ms
5,248 KB
testcase_31 AC 6 ms
5,248 KB
testcase_32 AC 14 ms
5,248 KB
testcase_33 AC 48 ms
5,248 KB
testcase_34 AC 7 ms
5,248 KB
testcase_35 AC 21 ms
5,248 KB
testcase_36 AC 24 ms
5,248 KB
testcase_37 AC 57 ms
5,248 KB
testcase_38 AC 41 ms
5,248 KB
testcase_39 AC 6 ms
5,248 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