結果

問題 No.1557 Binary Variable
ユーザー tarattata1tarattata1
提出日時 2021-06-25 21:47:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,456 bytes
コンパイル時間 796 ms
コンパイル使用メモリ 96,460 KB
実行使用メモリ 814,744 KB
最終ジャッジ日時 2024-06-25 08:22:45
合計ジャッジ時間 7,746 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 40 ms
6,940 KB
testcase_05 AC 37 ms
6,944 KB
testcase_06 AC 35 ms
6,948 KB
testcase_07 AC 36 ms
6,940 KB
testcase_08 AC 39 ms
6,940 KB
testcase_09 AC 40 ms
6,944 KB
testcase_10 AC 47 ms
6,940 KB
testcase_11 AC 48 ms
6,940 KB
testcase_12 AC 39 ms
6,940 KB
testcase_13 AC 48 ms
6,940 KB
testcase_14 AC 73 ms
30,940 KB
testcase_15 AC 49 ms
6,940 KB
testcase_16 AC 70 ms
24,108 KB
testcase_17 AC 62 ms
15,216 KB
testcase_18 AC 59 ms
12,132 KB
testcase_19 AC 229 ms
210,628 KB
testcase_20 AC 120 ms
100,428 KB
testcase_21 AC 115 ms
92,948 KB
testcase_22 AC 177 ms
159,044 KB
testcase_23 AC 112 ms
88,036 KB
testcase_24 AC 375 ms
367,620 KB
testcase_25 AC 314 ms
312,572 KB
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <iterator>
#include <cassert>
#include <numeric>
#include <functional>
#include <ctime>
#include <bitset>
#pragma warning(disable:4996) 

//#define ATCODER
#ifdef ATCODER
#include <atcoder/all>
#endif

typedef long long ll;
typedef unsigned long long ull;
#define LINF  9223300000000000000
#define LINF2 1223300000000000000
#define LINF3 1000000000000
#define INF 2140000000
const long long MOD = 1000000007;
//const long long MOD = 998244353;

using namespace std;
#ifdef ATCODER
using namespace atcoder;
#endif


void solve()
{
    int n, m;
    scanf("%d%d", &n, &m);
    vector<vector<int> > v(n);
    for (int i = 0; i < m; i++) {
        int l, r;
        scanf("%d%d", &l, &r); l--; r--;
        v[l].push_back(r);
    }
    int ans = 0;
    int las = INF;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < (int)v[i].size(); j++) {
            int t = v[i][j];
            las = min(las, t);
        }
        if (i == las) {
            ans++;
            las = INF;
        }
    }
    printf("%d\n", n - ans);
    return;
}

int main()
{
#if 1
    solve();
#else
    int T, t;
    scanf("%d", &T);
    for (t = 0; t < T; t++) {
        //printf("Case #%d: ", t + 1);
        solve();
    }
#endif
    return 0;
}
0