結果

問題 No.2293 無向辺 2-SAT
ユーザー ニックネームニックネーム
提出日時 2023-05-05 22:38:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,829 ms / 4,000 ms
コード長 917 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 151,072 KB
最終ジャッジ日時 2024-11-23 09:57:22
合計ジャッジ時間 88,734 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,352 KB
testcase_01 AC 43 ms
51,712 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 2,829 ms
151,072 KB
testcase_04 AC 891 ms
78,780 KB
testcase_05 AC 918 ms
79,228 KB
testcase_06 AC 863 ms
78,048 KB
testcase_07 AC 593 ms
76,416 KB
testcase_08 AC 840 ms
77,704 KB
testcase_09 AC 783 ms
77,568 KB
testcase_10 AC 808 ms
78,020 KB
testcase_11 AC 911 ms
79,176 KB
testcase_12 AC 849 ms
77,732 KB
testcase_13 AC 915 ms
78,572 KB
testcase_14 AC 1,091 ms
81,000 KB
testcase_15 AC 1,426 ms
86,332 KB
testcase_16 AC 903 ms
79,632 KB
testcase_17 AC 1,029 ms
99,320 KB
testcase_18 AC 867 ms
77,792 KB
testcase_19 AC 513 ms
77,908 KB
testcase_20 AC 1,754 ms
90,572 KB
testcase_21 AC 1,901 ms
91,008 KB
testcase_22 AC 1,855 ms
111,224 KB
testcase_23 AC 1,731 ms
106,524 KB
testcase_24 AC 1,795 ms
107,500 KB
testcase_25 AC 1,712 ms
107,924 KB
testcase_26 AC 1,769 ms
107,872 KB
testcase_27 AC 1,778 ms
110,604 KB
testcase_28 AC 1,805 ms
108,676 KB
testcase_29 AC 1,802 ms
109,448 KB
testcase_30 AC 1,845 ms
110,632 KB
testcase_31 AC 1,786 ms
110,176 KB
testcase_32 AC 1,866 ms
90,672 KB
testcase_33 AC 1,942 ms
91,504 KB
testcase_34 AC 1,827 ms
88,708 KB
testcase_35 AC 1,888 ms
89,700 KB
testcase_36 AC 1,892 ms
89,988 KB
testcase_37 AC 1,885 ms
90,220 KB
testcase_38 AC 1,897 ms
90,764 KB
testcase_39 AC 1,885 ms
89,996 KB
testcase_40 AC 1,871 ms
90,240 KB
testcase_41 AC 1,015 ms
80,788 KB
testcase_42 AC 1,556 ms
86,508 KB
testcase_43 AC 1,827 ms
88,372 KB
testcase_44 AC 1,939 ms
91,160 KB
testcase_45 AC 1,969 ms
90,848 KB
testcase_46 AC 1,718 ms
85,288 KB
testcase_47 AC 1,906 ms
91,336 KB
testcase_48 AC 1,837 ms
90,180 KB
testcase_49 AC 1,804 ms
91,984 KB
testcase_50 AC 1,708 ms
90,840 KB
testcase_51 AC 1,713 ms
92,008 KB
testcase_52 AC 1,678 ms
97,344 KB
testcase_53 AC 1,644 ms
98,704 KB
testcase_54 AC 1,675 ms
109,008 KB
testcase_55 AC 1,609 ms
117,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UF:
    def __init__(self,n):
        self.p = {}
    def f(self,x):
        if x not in self.p: self.p[x] = -1; return x
        elif self.p[x]<0: return x
        else: self.p[x] = self.f(self.p[x]); return self.p[x]
    def u(self,x,y):
        x = self.f(x); y = self.f(y)
        if x==y: return
        if -self.p[x]<-self.p[y]: x,y = y,x
        self.p[x] += self.p[y]; self.p[y] = x
    def s(self,x,y): return self.f(x) == self.f(y)
n,q = map(int,input().split())
mod = 998244353; uf = UF(2*n); c = n
for _ in range(q):
    t,*uv = map(int,input().split())
    if t==1:
        u,v = [w-1 for w in uv]
        if uf.s(u,v+n): c = -1
        elif not uf.s(u,v): uf.u(u,v); uf.u(u+n,v+n); c -= 1
    if t==2:
        u,v = [w-1 for w in uv]
        if uf.s(u,v): c = -1
        elif not uf.s(u,v+n): uf.u(u,v+n); uf.u(u+n,v); c -= 1
    if t==3: uf = UF(2*n); c = n
    print(pow(2,c,mod) if c>=0 else 0)
0