結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
40,320 KB
testcase_01 AC 13 ms
40,320 KB
testcase_02 AC 13 ms
40,192 KB
testcase_03 AC 199 ms
49,260 KB
testcase_04 AC 165 ms
45,184 KB
testcase_05 AC 158 ms
44,672 KB
testcase_06 AC 193 ms
49,264 KB
testcase_07 AC 197 ms
49,012 KB
testcase_08 AC 196 ms
49,136 KB
testcase_09 AC 198 ms
49,132 KB
testcase_10 AC 196 ms
49,012 KB
testcase_11 AC 194 ms
49,008 KB
testcase_12 AC 198 ms
49,136 KB
testcase_13 AC 191 ms
49,216 KB
testcase_14 AC 149 ms
48,716 KB
testcase_15 AC 176 ms
49,392 KB
testcase_16 AC 153 ms
48,676 KB
testcase_17 AC 385 ms
57,008 KB
testcase_18 AC 341 ms
55,480 KB
testcase_19 AC 289 ms
53,828 KB
testcase_20 AC 249 ms
52,352 KB
testcase_21 AC 250 ms
52,480 KB
testcase_22 AC 292 ms
53,760 KB
testcase_23 AC 293 ms
53,888 KB
testcase_24 AC 290 ms
53,888 KB
testcase_25 AC 14 ms
40,192 KB
testcase_26 AC 13 ms
40,192 KB
testcase_27 AC 12 ms
40,320 KB
testcase_28 AC 111 ms
40,704 KB
testcase_29 AC 122 ms
41,216 KB
testcase_30 AC 128 ms
41,600 KB
testcase_31 AC 129 ms
42,152 KB
testcase_32 AC 132 ms
42,548 KB
testcase_33 AC 138 ms
42,776 KB
testcase_34 AC 158 ms
43,520 KB
testcase_35 AC 149 ms
43,904 KB
testcase_36 AC 154 ms
44,288 KB
testcase_37 AC 156 ms
44,544 KB
testcase_38 AC 164 ms
45,056 KB
testcase_39 AC 166 ms
45,312 KB
testcase_40 AC 169 ms
46,008 KB
testcase_41 AC 173 ms
46,208 KB
testcase_42 AC 178 ms
46,592 KB
testcase_43 AC 182 ms
47,104 KB
testcase_44 AC 186 ms
47,984 KB
testcase_45 AC 194 ms
48,428 KB
testcase_46 AC 198 ms
48,816 KB
testcase_47 AC 196 ms
49,164 KB
testcase_48 AC 119 ms
49,400 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