結果

問題 No.2292 Interval Union Find
ユーザー SSRSSSRS
提出日時 2023-05-05 22:20:47
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 716 ms / 5,000 ms
コード長 2,057 bytes
コンパイル時間 1,924 ms
コンパイル使用メモリ 177,552 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-11-23 08:47:09
合計ジャッジ時間 27,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, Q;
  cin >> N >> Q;
  map<int, int> mp;
  mp[0] = 0;
  mp[N] = 0;
  for (int i = 0; i < Q; i++){
    int t;
    cin >> t;
    if (t == 1){
      int L, R;
      cin >> L >> R;
      for (int j : {L, R}){
        if (mp.count(j) == 0){
          auto itr = prev(mp.lower_bound(j));
          int x = (*itr).second;
          mp[j] = x;
        }
      }
      while (true){
        auto itr = mp.lower_bound(L);
        int p1 = (*itr).first;
        if (p1 == R){
          break;
        }
        mp.erase(itr);
      }
      mp[L] = 1;
      for (int j : {L, R}){
        auto itr = mp.lower_bound(j);
        if ((*itr).second == (*prev(itr)).second){
          mp.erase(itr);
        }
      }
    }
    if (t == 2){
      int L, R;
      cin >> L >> R;
      for (int j : {L, R}){
        if (mp.count(j) == 0){
          auto itr = prev(mp.lower_bound(j));
          int x = (*itr).second;
          mp[j] = x;
        }
      }
      while (true){
        auto itr = mp.lower_bound(L);
        int p1 = (*itr).first;
        if (p1 == R){
          break;
        }
        mp.erase(itr);
      }
      mp[L] = 0;
      for (int j : {L, R}){
        auto itr = mp.lower_bound(j);
        if ((*itr).second == (*prev(itr)).second){
          mp.erase(itr);
        }
      }
    }
    if (t == 3){
      int u, v;
      cin >> u >> v;
      if (u == v){
        cout << 1 << endl;
      } else {
        if (u > v){
          swap(u, v);
        }
        auto itr = prev(mp.upper_bound(u));
        if ((*itr).second == 1 && (*next(itr)).first >= v){
          cout << 1 << endl;
        } else {
          cout << 0 << endl;
        }
      }
    }
    if (t == 4){
      int v;
      cin >> v;
      int ans = 1;
      auto itr = prev(mp.upper_bound(v));
      if ((*itr).second == 1){
        ans += (*next(itr)).first - v;
      }
      itr = prev(mp.lower_bound(v));
      if ((*itr).second == 1){
        ans += v - (*itr).first;
      }
      cout << ans << endl;
    }
  }
}
0