結果

問題 No.2293 無向辺 2-SAT
ユーザー kotatsugamekotatsugame
提出日時 2023-05-05 21:52:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,088 bytes
コンパイル時間 860 ms
コンパイル使用メモリ 72,960 KB
実行使用メモリ 18,184 KB
最終ジャッジ日時 2024-11-23 07:10:49
合計ジャッジ時間 144,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 3 ms
10,624 KB
testcase_02 AC 2 ms
10,624 KB
testcase_03 AC 89 ms
16,140 KB
testcase_04 AC 2,377 ms
14,596 KB
testcase_05 AC 1,673 ms
13,688 KB
testcase_06 TLE -
testcase_07 AC 30 ms
11,268 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,307 ms
14,472 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 2,645 ms
14,576 KB
testcase_15 AC 2,540 ms
12,904 KB
testcase_16 AC 1,816 ms
14,464 KB
testcase_17 AC 206 ms
14,464 KB
testcase_18 TLE -
testcase_19 AC 975 ms
11,636 KB
testcase_20 AC 541 ms
16,132 KB
testcase_21 AC 3,723 ms
14,468 KB
testcase_22 AC 138 ms
14,464 KB
testcase_23 AC 145 ms
14,600 KB
testcase_24 AC 137 ms
14,596 KB
testcase_25 AC 138 ms
14,340 KB
testcase_26 AC 141 ms
16,136 KB
testcase_27 AC 144 ms
14,468 KB
testcase_28 AC 137 ms
14,384 KB
testcase_29 AC 139 ms
15,244 KB
testcase_30 AC 135 ms
14,468 KB
testcase_31 AC 146 ms
15,108 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 3,039 ms
9,092 KB
testcase_48 AC 1,727 ms
9,096 KB
testcase_49 AC 976 ms
8,960 KB
testcase_50 AC 632 ms
9,096 KB
testcase_51 AC 362 ms
9,092 KB
testcase_52 AC 212 ms
9,092 KB
testcase_53 AC 160 ms
9,092 KB
testcase_54 AC 136 ms
8,960 KB
testcase_55 AC 119 ms
18,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int N,Q;
int pr[4<<17];
vector<int>hist;
int find(int u)
{
	if(pr[u]>=0)return pr[u]=find(pr[u]);
	else return u;
}
bool merge(int u,int v)
{
	u=find(u);
	v=find(v);
	if(u==v)return false;
	if(-pr[u]<-pr[v])swap(u,v);
	pr[u]+=pr[v];
	pr[v]=u;
	hist.push_back(u);
	hist.push_back(v);
	return true;
}
void clear()
{
	for(int u:hist)pr[u]=-1;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>Q;
	for(int i=0;i<N+N;i++)pr[i]=-1;
	int cnt=2*N;
	const mint inv2=mint::raw(2).inv();
	const mint all=mint::raw(2).pow(N);
	mint now=all;
	for(;Q--;)
	{
		int op;cin>>op;
		if(op==1)
		{
			int u,v;cin>>u>>v;u--,v--;
			if(merge(u,v))
			{
				if(merge(u+N,v+N))now*=inv2;
				else
				{
					now=mint::raw(0);
				}
			}
		}
		else if(op==2)
		{
			int u,v;cin>>u>>v;u--,v--;
			if(merge(u,v+N))
			{
				if(merge(u+N,v))now*=inv2;
				else
				{
					now=mint::raw(0);
				}
			}
		}
		else
		{
			clear();
			now=all;
		}
		cout<<now.val()<<"\n";
	}
}
0