結果

問題 No.2294 Union Path Query (Easy)
ユーザー kotatsugamekotatsugame
提出日時 2023-05-05 22:13:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 372 ms / 4,000 ms
コード長 1,237 bytes
コンパイル時間 816 ms
コンパイル使用メモリ 73,344 KB
実行使用メモリ 57,012 KB
最終ジャッジ日時 2024-05-02 16:37:13
合計ジャッジ時間 15,284 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
40,192 KB
testcase_01 AC 33 ms
40,064 KB
testcase_02 AC 32 ms
40,192 KB
testcase_03 AC 220 ms
49,004 KB
testcase_04 AC 182 ms
45,184 KB
testcase_05 AC 178 ms
44,544 KB
testcase_06 AC 200 ms
49,008 KB
testcase_07 AC 212 ms
49,136 KB
testcase_08 AC 215 ms
49,140 KB
testcase_09 AC 214 ms
49,136 KB
testcase_10 AC 205 ms
49,136 KB
testcase_11 AC 222 ms
49,004 KB
testcase_12 AC 213 ms
49,008 KB
testcase_13 AC 198 ms
49,132 KB
testcase_14 AC 160 ms
48,692 KB
testcase_15 AC 192 ms
49,396 KB
testcase_16 AC 165 ms
48,600 KB
testcase_17 AC 372 ms
57,012 KB
testcase_18 AC 359 ms
55,476 KB
testcase_19 AC 300 ms
53,760 KB
testcase_20 AC 257 ms
52,352 KB
testcase_21 AC 254 ms
52,352 KB
testcase_22 AC 306 ms
53,760 KB
testcase_23 AC 293 ms
53,888 KB
testcase_24 AC 311 ms
53,888 KB
testcase_25 AC 32 ms
40,192 KB
testcase_26 AC 28 ms
40,192 KB
testcase_27 AC 29 ms
40,064 KB
testcase_28 AC 127 ms
40,832 KB
testcase_29 AC 134 ms
41,344 KB
testcase_30 AC 137 ms
41,600 KB
testcase_31 AC 142 ms
42,120 KB
testcase_32 AC 158 ms
42,544 KB
testcase_33 AC 154 ms
42,880 KB
testcase_34 AC 150 ms
43,520 KB
testcase_35 AC 158 ms
43,776 KB
testcase_36 AC 163 ms
44,288 KB
testcase_37 AC 163 ms
44,672 KB
testcase_38 AC 165 ms
45,056 KB
testcase_39 AC 172 ms
45,440 KB
testcase_40 AC 183 ms
45,824 KB
testcase_41 AC 186 ms
46,080 KB
testcase_42 AC 206 ms
46,464 KB
testcase_43 AC 198 ms
46,976 KB
testcase_44 AC 228 ms
47,984 KB
testcase_45 AC 200 ms
48,292 KB
testcase_46 AC 207 ms
48,816 KB
testcase_47 AC 206 ms
49,048 KB
testcase_48 AC 128 ms
49,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int N,Q;
struct dat{
	vector<int>Vs;
	mint cnt[30];
};
int pr[2<<17];
dat V[2<<17];
int XOR[2<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int N,X,Q;
	cin>>N>>X>>Q;
	for(int i=0;i<N;i++)
	{
		V[i].Vs.push_back(i);
		for(int j=0;j<30;j++)V[i].cnt[j]=mint::raw(0);
		pr[i]=i;
		XOR[i]=0;
	}
	for(;Q--;)
	{
		int op;cin>>op;
		if(op==1)
		{
			int v,w;cin>>v>>w;
			{
				int pu=pr[X],pv=pr[v];
				if(V[pu].Vs.size()<V[pv].Vs.size())swap(pu,pv);
				w^=XOR[v]^XOR[X];
				for(int x:V[pv].Vs)
				{
					XOR[x]^=w;
					V[pu].Vs.push_back(x);
					pr[x]=pu;
					for(int j=0;j<30;j++)if(XOR[x]>>j&1)V[pu].cnt[j]++;
				}
			}
		}
		else if(op==2)
		{
			int u,v;cin>>u>>v;
			int pu=pr[u],pv=pr[v];
			if(pu!=pv)cout<<"-1\n";
			else
			{
				int d=XOR[u]^XOR[v];
				cout<<d<<"\n";
				X+=d;
				X%=N;
			}
		}
		else if(op==3)
		{
			int v;cin>>v;
			v=pr[v];
			mint ans=0;
			for(int j=30;j--;)
			{
				mint c=V[v].cnt[j];
				mint d=mint::raw(V[v].Vs.size())-c;
				ans=ans+ans+c*d;
			}
			cout<<ans.val()<<"\n";
		}
		else
		{
			int v;cin>>v;
			X+=v;
			X%=N;
		}
	}
}
0