結果

問題 No.1557 Binary Variable
ユーザー yunix91201367yunix91201367
提出日時 2021-06-25 21:48:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 1,762 ms
コンパイル使用メモリ 176,796 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-06-25 08:23:22
合計ジャッジ時間 8,156 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
9,472 KB
testcase_01 AC 145 ms
9,596 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 112 ms
9,540 KB
testcase_05 AC 111 ms
9,560 KB
testcase_06 AC 106 ms
9,472 KB
testcase_07 AC 108 ms
9,472 KB
testcase_08 AC 121 ms
9,488 KB
testcase_09 AC 121 ms
9,424 KB
testcase_10 AC 133 ms
9,444 KB
testcase_11 AC 133 ms
9,472 KB
testcase_12 AC 121 ms
9,428 KB
testcase_13 AC 133 ms
9,432 KB
testcase_14 AC 144 ms
9,472 KB
testcase_15 AC 134 ms
9,472 KB
testcase_16 AC 146 ms
9,472 KB
testcase_17 AC 143 ms
9,472 KB
testcase_18 AC 141 ms
9,444 KB
testcase_19 AC 154 ms
9,472 KB
testcase_20 AC 156 ms
9,432 KB
testcase_21 AC 155 ms
9,424 KB
testcase_22 AC 156 ms
9,600 KB
testcase_23 AC 153 ms
9,472 KB
testcase_24 AC 160 ms
9,544 KB
testcase_25 AC 158 ms
9,500 KB
testcase_26 AC 164 ms
9,472 KB
testcase_27 AC 166 ms
9,500 KB
testcase_28 AC 171 ms
9,428 KB
testcase_29 AC 176 ms
9,444 KB
testcase_30 AC 172 ms
9,472 KB
testcase_31 AC 180 ms
9,552 KB
testcase_32 AC 174 ms
9,572 KB
testcase_33 AC 153 ms
9,436 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
using vec_int = vector<int>;
using P = pair<int,int>;
using T = tuple<int,int,int>;
using ll = long long;
#define rep(i, n) for(int i = 0; i < (int)(n); i++)

signed main(){
    int N, M; cin>>N>>M;
    vec_int L(M), R(M);
    rep(i,M)cin>>L.at(i)>>R.at(i);
    vector<P> RL(M);
    rep(i,M)RL.at(i) = make_pair(R.at(i), L.at(i));
    sort(RL.begin(), RL.end());
    int zeros = 0;
    int right = 0;
    rep(i,M){
        if(RL.at(i).second>right){
            right = RL.at(i).first;
            zeros++;
        }
    }
    cout<<N-zeros<<endl;





    return 0;
}
0