結果

問題 No.1557 Binary Variable
ユーザー chocoruskchocorusk
提出日時 2021-06-25 21:26:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 964 bytes
コンパイル時間 3,542 ms
コンパイル使用メモリ 193,624 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-25 08:07:52
合計ジャッジ時間 9,948 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
6,812 KB
testcase_01 AC 146 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 112 ms
6,944 KB
testcase_05 AC 110 ms
6,940 KB
testcase_06 AC 104 ms
6,944 KB
testcase_07 AC 109 ms
6,944 KB
testcase_08 AC 119 ms
6,940 KB
testcase_09 AC 120 ms
6,940 KB
testcase_10 AC 131 ms
6,940 KB
testcase_11 AC 133 ms
6,944 KB
testcase_12 AC 119 ms
6,940 KB
testcase_13 AC 133 ms
6,940 KB
testcase_14 AC 144 ms
6,944 KB
testcase_15 AC 133 ms
6,944 KB
testcase_16 AC 143 ms
6,944 KB
testcase_17 AC 141 ms
6,944 KB
testcase_18 AC 140 ms
6,944 KB
testcase_19 AC 155 ms
6,944 KB
testcase_20 AC 154 ms
6,940 KB
testcase_21 AC 152 ms
6,940 KB
testcase_22 AC 154 ms
6,940 KB
testcase_23 AC 154 ms
6,940 KB
testcase_24 AC 159 ms
6,944 KB
testcase_25 AC 161 ms
6,944 KB
testcase_26 AC 163 ms
6,944 KB
testcase_27 AC 161 ms
6,940 KB
testcase_28 AC 171 ms
6,944 KB
testcase_29 AC 179 ms
6,944 KB
testcase_30 AC 178 ms
6,944 KB
testcase_31 AC 178 ms
6,944 KB
testcase_32 AC 173 ms
6,940 KB
testcase_33 AC 151 ms
6,944 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;

int main()
{
    ll n;int m; cin>>n>>m;
    vector<P> v(m);
    for(int i=0; i<m; i++){
        cin>>v[i].second>>v[i].first;
    }
    ll ans=0;
    sort(v.begin(), v.end());
    int pr=-1;
    for(int i=0; i<m; i++){
        if(pr<v[i].second){
            pr=v[i].first;
            ans++;
        }
    }
    ans=n-ans;
    cout<<ans<<endl;
    return 0;
}


0