結果

問題 No.2293 無向辺 2-SAT
ユーザー SSRSSSRS
提出日時 2023-05-05 22:04:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 453 ms / 4,000 ms
コード長 1,547 bytes
コンパイル時間 1,947 ms
コンパイル使用メモリ 171,984 KB
実行使用メモリ 9,068 KB
最終ジャッジ日時 2024-05-02 16:20:19
合計ジャッジ時間 29,705 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 453 ms
9,068 KB
testcase_04 AC 414 ms
5,376 KB
testcase_05 AC 395 ms
5,376 KB
testcase_06 AC 396 ms
5,376 KB
testcase_07 AC 308 ms
5,376 KB
testcase_08 AC 396 ms
5,376 KB
testcase_09 AC 375 ms
5,376 KB
testcase_10 AC 407 ms
5,376 KB
testcase_11 AC 408 ms
5,376 KB
testcase_12 AC 407 ms
5,376 KB
testcase_13 AC 369 ms
5,376 KB
testcase_14 AC 364 ms
5,376 KB
testcase_15 AC 350 ms
5,376 KB
testcase_16 AC 406 ms
5,376 KB
testcase_17 AC 402 ms
5,376 KB
testcase_18 AC 414 ms
5,376 KB
testcase_19 AC 199 ms
5,376 KB
testcase_20 AC 405 ms
5,376 KB
testcase_21 AC 403 ms
5,376 KB
testcase_22 AC 399 ms
5,376 KB
testcase_23 AC 406 ms
5,376 KB
testcase_24 AC 412 ms
5,376 KB
testcase_25 AC 437 ms
5,376 KB
testcase_26 AC 433 ms
5,376 KB
testcase_27 AC 435 ms
5,376 KB
testcase_28 AC 426 ms
5,376 KB
testcase_29 AC 417 ms
5,376 KB
testcase_30 AC 410 ms
5,376 KB
testcase_31 AC 403 ms
5,376 KB
testcase_32 AC 393 ms
5,376 KB
testcase_33 AC 385 ms
5,376 KB
testcase_34 AC 391 ms
5,376 KB
testcase_35 AC 389 ms
5,376 KB
testcase_36 AC 386 ms
5,376 KB
testcase_37 AC 403 ms
5,376 KB
testcase_38 AC 402 ms
5,376 KB
testcase_39 AC 400 ms
5,376 KB
testcase_40 AC 398 ms
5,376 KB
testcase_41 AC 385 ms
5,376 KB
testcase_42 AC 404 ms
5,376 KB
testcase_43 AC 389 ms
5,376 KB
testcase_44 AC 406 ms
5,376 KB
testcase_45 AC 405 ms
5,376 KB
testcase_46 AC 407 ms
5,376 KB
testcase_47 AC 413 ms
5,376 KB
testcase_48 AC 415 ms
5,376 KB
testcase_49 AC 414 ms
5,376 KB
testcase_50 AC 415 ms
5,376 KB
testcase_51 AC 440 ms
5,376 KB
testcase_52 AC 410 ms
5,376 KB
testcase_53 AC 413 ms
5,376 KB
testcase_54 AC 410 ms
5,376 KB
testcase_55 AC 403 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
const long long HALF = 499122177;
struct unionfind{
  vector<int> p;
  vector<int> id;
  unionfind(int N){
    p = vector<int>(N, -1);
  }
  int root(int x){
    if (p[x] < 0){
      return x;
    } else {
      p[x] = root(p[x]);
      return p[x];
    }
  }
  bool same(int x, int y){
    return root(x) == root(y);
  }
  void unite(int x, int y){
    id.push_back(x);
    id.push_back(y);
    x = root(x);
    y = root(y);
    if (x != y){
      if (p[x] < p[y]){
        swap(x, y);
      }
      p[y] += p[x];
      p[x] = y;
    }
  }
  void reset(){
    for (int v : id){
      p[v] = -1;
    }
    id.clear();
  }
};
int main(){
  int N, Q;
  cin >> N >> Q;
  long long a = 1;
  for (int i = 0; i < N; i++){
    a *= 2;
    a %= MOD;
  }
  unionfind UF(N * 2);
  long long ans = a;
  for (int i = 0; i < Q; i++){
    int t;
    cin >> t;
    if (t == 1){
      int u, v;
      cin >> u >> v;
      u--;
      v--;
      if (UF.same(u, N + v)){
        ans = 0;
      } else if (!UF.same(u, v)){
        ans *= HALF;
        ans %= MOD;
        UF.unite(u, v);
        UF.unite(N + u, N + v);
      }
    }
    if (t == 2){
      int u, v;
      cin >> u >> v;
      u--;
      v--;
      if (UF.same(u, v)){
        ans = 0;
      } else if (!UF.same(u, N + v)){
        ans *= HALF;
        ans %= MOD;
        UF.unite(u, N + v);
        UF.unite(N + u, v);
      }
    }
    if (t == 3){
      ans = a;
      UF.reset();
    }
    cout << ans << endl;
  }
}
0