結果

問題 No.2292 Interval Union Find
ユーザー SSRSSSRS
提出日時 2023-05-05 22:20:47
言語 C++14
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 313 ms
5,248 KB
testcase_05 AC 431 ms
5,248 KB
testcase_06 AC 312 ms
5,248 KB
testcase_07 AC 425 ms
5,248 KB
testcase_08 AC 439 ms
5,248 KB
testcase_09 AC 447 ms
5,248 KB
testcase_10 AC 431 ms
5,248 KB
testcase_11 AC 393 ms
5,248 KB
testcase_12 AC 452 ms
5,248 KB
testcase_13 AC 353 ms
5,248 KB
testcase_14 AC 367 ms
5,248 KB
testcase_15 AC 373 ms
5,248 KB
testcase_16 AC 365 ms
5,248 KB
testcase_17 AC 411 ms
5,248 KB
testcase_18 AC 581 ms
22,272 KB
testcase_19 AC 648 ms
22,272 KB
testcase_20 AC 716 ms
22,144 KB
testcase_21 AC 619 ms
14,464 KB
testcase_22 AC 622 ms
14,464 KB
testcase_23 AC 619 ms
14,464 KB
testcase_24 AC 622 ms
14,336 KB
testcase_25 AC 618 ms
14,464 KB
testcase_26 AC 624 ms
14,464 KB
testcase_27 AC 621 ms
14,464 KB
testcase_28 AC 620 ms
14,464 KB
testcase_29 AC 622 ms
14,464 KB
testcase_30 AC 612 ms
14,592 KB
testcase_31 AC 615 ms
14,464 KB
testcase_32 AC 636 ms
14,464 KB
testcase_33 AC 621 ms
14,464 KB
testcase_34 AC 614 ms
14,336 KB
testcase_35 AC 624 ms
14,336 KB
testcase_36 AC 622 ms
14,464 KB
testcase_37 AC 620 ms
14,464 KB
testcase_38 AC 624 ms
14,464 KB
testcase_39 AC 621 ms
14,464 KB
testcase_40 AC 637 ms
14,464 KB
testcase_41 AC 234 ms
5,248 KB
testcase_42 AC 239 ms
5,248 KB
testcase_43 AC 244 ms
5,248 KB
testcase_44 AC 279 ms
5,248 KB
testcase_45 AC 281 ms
5,248 KB
testcase_46 AC 299 ms
5,248 KB
testcase_47 AC 325 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

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