結果

問題 No.1557 Binary Variable
ユーザー miscalcmiscalc
提出日時 2021-06-25 21:50:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,195 bytes
コンパイル時間 2,008 ms
コンパイル使用メモリ 171,920 KB
実行使用メモリ 22,936 KB
最終ジャッジ日時 2023-09-07 14:28:09
合計ジャッジ時間 14,906 ms
ジャッジサーバーID
(参考情報)
judge13 / 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 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

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