結果

問題 No.1557 Binary Variable
ユーザー ぷらぷら
提出日時 2021-12-11 15:23:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 2,161 ms
コンパイル使用メモリ 206,316 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 20:27:31
合計ジャッジ時間 10,574 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
5,248 KB
testcase_01 AC 149 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 111 ms
5,376 KB
testcase_05 AC 109 ms
5,376 KB
testcase_06 AC 104 ms
5,376 KB
testcase_07 AC 107 ms
5,376 KB
testcase_08 AC 119 ms
5,376 KB
testcase_09 AC 120 ms
5,376 KB
testcase_10 AC 131 ms
5,376 KB
testcase_11 AC 130 ms
5,376 KB
testcase_12 AC 119 ms
5,376 KB
testcase_13 AC 131 ms
5,376 KB
testcase_14 AC 142 ms
5,376 KB
testcase_15 AC 133 ms
5,376 KB
testcase_16 AC 143 ms
5,376 KB
testcase_17 AC 139 ms
5,376 KB
testcase_18 AC 138 ms
5,376 KB
testcase_19 AC 154 ms
5,376 KB
testcase_20 AC 151 ms
5,376 KB
testcase_21 AC 150 ms
5,376 KB
testcase_22 AC 151 ms
5,376 KB
testcase_23 AC 148 ms
5,376 KB
testcase_24 AC 155 ms
5,376 KB
testcase_25 AC 155 ms
5,376 KB
testcase_26 AC 160 ms
5,376 KB
testcase_27 AC 160 ms
5,376 KB
testcase_28 AC 165 ms
5,376 KB
testcase_29 AC 174 ms
5,376 KB
testcase_30 AC 167 ms
5,376 KB
testcase_31 AC 175 ms
5,376 KB
testcase_32 AC 171 ms
5,376 KB
testcase_33 AC 147 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N,M;
    cin >> N >> M;
    vector<pair<int,int>>tmp(M);
    for(int i = 0; i < M; i++) {
        cin >> tmp[i].second >> tmp[i].first;
    }
    sort(tmp.begin(),tmp.end());
    int mx = 0,sum = 0;
    for(int i = 0; i < M; i++) {
        if(mx >= tmp[i].second) {
            continue;
        }
        mx = tmp[i].first;
        sum++;
    }
    cout << N-sum << endl;
}
0