結果

問題 No.2293 無向辺 2-SAT
ユーザー t98slidert98slider
提出日時 2023-05-07 18:11:37
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 489 ms / 4,000 ms
コード長 849 bytes
コンパイル時間 4,053 ms
コンパイル使用メモリ 230,404 KB
実行使用メモリ 7,148 KB
最終ジャッジ日時 2024-11-24 17:48:34
合計ジャッジ時間 36,823 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 4 ms
6,816 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 489 ms
7,148 KB
testcase_04 AC 471 ms
5,248 KB
testcase_05 AC 445 ms
5,248 KB
testcase_06 AC 442 ms
5,248 KB
testcase_07 AC 303 ms
5,248 KB
testcase_08 AC 444 ms
5,248 KB
testcase_09 AC 413 ms
5,248 KB
testcase_10 AC 406 ms
5,248 KB
testcase_11 AC 464 ms
6,816 KB
testcase_12 AC 450 ms
6,816 KB
testcase_13 AC 402 ms
6,820 KB
testcase_14 AC 392 ms
6,816 KB
testcase_15 AC 372 ms
6,820 KB
testcase_16 AC 465 ms
5,248 KB
testcase_17 AC 461 ms
5,248 KB
testcase_18 AC 454 ms
5,248 KB
testcase_19 AC 219 ms
5,248 KB
testcase_20 AC 463 ms
5,248 KB
testcase_21 AC 452 ms
5,248 KB
testcase_22 AC 459 ms
5,248 KB
testcase_23 AC 461 ms
5,248 KB
testcase_24 AC 460 ms
5,248 KB
testcase_25 AC 464 ms
5,248 KB
testcase_26 AC 459 ms
5,248 KB
testcase_27 AC 466 ms
5,248 KB
testcase_28 AC 460 ms
5,248 KB
testcase_29 AC 465 ms
5,248 KB
testcase_30 AC 462 ms
5,248 KB
testcase_31 AC 463 ms
5,248 KB
testcase_32 AC 433 ms
5,248 KB
testcase_33 AC 433 ms
5,248 KB
testcase_34 AC 430 ms
5,248 KB
testcase_35 AC 431 ms
5,248 KB
testcase_36 AC 432 ms
5,248 KB
testcase_37 AC 431 ms
5,248 KB
testcase_38 AC 436 ms
5,248 KB
testcase_39 AC 434 ms
5,248 KB
testcase_40 AC 447 ms
5,248 KB
testcase_41 AC 414 ms
5,248 KB
testcase_42 AC 418 ms
5,248 KB
testcase_43 AC 434 ms
5,248 KB
testcase_44 AC 441 ms
5,248 KB
testcase_45 AC 450 ms
5,248 KB
testcase_46 AC 450 ms
5,248 KB
testcase_47 AC 442 ms
5,248 KB
testcase_48 AC 453 ms
5,248 KB
testcase_49 AC 456 ms
5,248 KB
testcase_50 AC 446 ms
5,248 KB
testcase_51 AC 459 ms
5,248 KB
testcase_52 AC 460 ms
5,248 KB
testcase_53 AC 455 ms
5,248 KB
testcase_54 AC 460 ms
5,248 KB
testcase_55 AC 468 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define private public
#include <atcoder/all>
using namespace std;

int main(){
    int N, Q, type, u, v, num;
    cin >> N >> Q;
    num = N;
    bool zero = false;
    atcoder::dsu uf(2 * N);
    vector<int> memo;
    while(Q--){
        cin >> type;
        if(--type < 2){
            cin >> u >> v;
            memo.push_back(--u);
            memo.push_back(--v);
            if(!uf.same(u, v + type * N)) num--;
            uf.merge(u, v + type * N);
            uf.merge(u + N, v + (1 ^ type) * N);
            if(uf.same(u, u + N)) zero = true;
        }else{
            num = N;
            zero = false;
            for(int v : memo) uf.parent_or_size[v] = uf.parent_or_size[v + N] = -1;
            memo.clear();
        }
        cout << (zero ? 0 : atcoder::modint998244353(2).pow(num).val()) << '\n';
    }
}
0