結果

問題 No.1557 Binary Variable
ユーザー miscalcmiscalc
提出日時 2021-06-25 21:53:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,195 bytes
コンパイル時間 2,077 ms
コンパイル使用メモリ 205,024 KB
実行使用メモリ 16,120 KB
最終ジャッジ日時 2023-09-07 14:29:18
合計ジャッジ時間 15,209 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 1,548 ms
15,980 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 1,477 ms
15,844 KB
testcase_27 AC 1,443 ms
16,120 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using pll = pair<ll, ll>;
using tlll = tuple<ll, ll, ll>;
//constexpr ll MOD = 1e9 + 7;
constexpr ll MOD = 998244353;
//constexpr ll MOD = ;
ll mod(ll A, ll M) {return (A % M + M) % M;}
constexpr ll INF = 1LL << 60;
template<class T> bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;}
template<class T> bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;}
ll divceil(ll A, ll B) {return (A + (B - 1)) / B;}
#define FINALANS(A) do {cout << (A) << '\n'; exit(0);} while (false)

int main()
{
  ll N, M;
  cin >> N >> M;
  set<pll> RL;
  for (ll i = 0; i < M; i++)
  {
    ll l, r;
    cin >> l >> r;
    RL.emplace(make_pair(r, l));
  }

  /*
  for (auto rl : RL)
  {
    cerr << rl.first << " " << rl.second << endl;
  }
  //*/

  ll ans = 0;
  while (!RL.empty())
  {
    pll rl = *RL.begin();
    ll r = rl.first, l = rl.second;
    for (auto r0l0 : RL)
    {
      ll r0 = r0l0.first, l0 = r0l0.second;
      if (l0 <= r && r <= r0)
        RL.erase(r0l0);
    }
    ans++;
    //cerr << r << " " << l << " " << RL.size() << endl;
  }
  cout << N - ans << endl;
}
0