結果

問題 No.2294 Union Path Query (Easy)
ユーザー Ecrade_Ecrade_
提出日時 2023-05-05 23:01:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 477 ms / 4,000 ms
コード長 2,136 bytes
コンパイル時間 1,982 ms
コンパイル使用メモリ 168,176 KB
実行使用メモリ 144,100 KB
最終ジャッジ日時 2023-08-15 06:00:55
合計ジャッジ時間 15,695 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
11,680 KB
testcase_01 AC 3 ms
11,668 KB
testcase_02 AC 4 ms
11,684 KB
testcase_03 AC 175 ms
144,092 KB
testcase_04 AC 112 ms
87,612 KB
testcase_05 AC 108 ms
77,820 KB
testcase_06 AC 173 ms
144,096 KB
testcase_07 AC 180 ms
144,080 KB
testcase_08 AC 157 ms
142,516 KB
testcase_09 AC 148 ms
142,692 KB
testcase_10 AC 173 ms
144,100 KB
testcase_11 AC 173 ms
144,092 KB
testcase_12 AC 174 ms
144,088 KB
testcase_13 AC 166 ms
142,872 KB
testcase_14 AC 117 ms
138,608 KB
testcase_15 AC 132 ms
143,460 KB
testcase_16 AC 137 ms
136,632 KB
testcase_17 AC 477 ms
142,992 KB
testcase_18 AC 421 ms
142,264 KB
testcase_19 AC 342 ms
140,736 KB
testcase_20 AC 282 ms
139,632 KB
testcase_21 AC 293 ms
140,976 KB
testcase_22 AC 353 ms
142,276 KB
testcase_23 AC 361 ms
142,276 KB
testcase_24 AC 341 ms
140,708 KB
testcase_25 AC 3 ms
11,688 KB
testcase_26 AC 3 ms
11,664 KB
testcase_27 AC 3 ms
11,892 KB
testcase_28 AC 54 ms
18,576 KB
testcase_29 AC 61 ms
25,348 KB
testcase_30 AC 65 ms
32,244 KB
testcase_31 AC 75 ms
38,764 KB
testcase_32 AC 73 ms
47,268 KB
testcase_33 AC 79 ms
53,648 KB
testcase_34 AC 84 ms
59,236 KB
testcase_35 AC 88 ms
64,024 KB
testcase_36 AC 96 ms
70,744 KB
testcase_37 AC 106 ms
77,312 KB
testcase_38 AC 110 ms
84,060 KB
testcase_39 AC 122 ms
90,764 KB
testcase_40 AC 128 ms
97,132 KB
testcase_41 AC 133 ms
103,924 KB
testcase_42 AC 146 ms
110,400 KB
testcase_43 AC 147 ms
117,168 KB
testcase_44 AC 160 ms
123,452 KB
testcase_45 AC 154 ms
130,004 KB
testcase_46 AC 167 ms
136,664 KB
testcase_47 AC 169 ms
143,108 KB
testcase_48 AC 122 ms
143,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll mod = 998244353;
ll t = 1,n,m,k,q,l,r,a,b,c,u,v,x,y,z,o,X,hd[200009],tot,cnt[200009][39][2],rt[200009],id[200009],sz[200009],dis[200009],ans[200009];
string s;
struct st{ll x,y,z; /*bool operator < (const st &a) const{return x < a.x;};*/}eg[400009];
void addedge(ll u,ll v,ll w){eg[++ tot] = (st){v,hd[u],w},hd[u] = tot;}
bool cmp(const st &a,const st &b){return a.x < b.x;}
inline ll read(){
	ll s = 0,w = 1;
	char ch = getchar();
	while (ch > '9' || ch < '0'){ if (ch == '-') w = -1; ch = getchar();}
	while (ch <= '9' && ch >= '0') s = (s << 1) + (s << 3) + (ch ^ 48),ch = getchar();
	return s * w;
}
ll qp(ll x,ll y){
	ll a = 1,b = x;
	while (y){
		if (y & 1) a = a * b % mod;
		b = b * b % mod,y >>= 1;
	}
	return a;
}
inline void add(ll &x,ll y){x += y; if (x >= mod) x -= mod;}
ll find(ll x){return x == id[x] ? x : id[x] = find(id[x]);}
void dfs(ll u,ll fa,ll rt){
	for (ll i = 0;i < 30;i += 1) add(ans[rt],cnt[rt][i][((dis[u] >> i) & 1) ^ 1] * (1ll << i) % mod);
	for (ll i = 0;i < 30;i += 1) cnt[rt][i][(dis[u] >> i) & 1] += 1;
	for (ll i = hd[u];i;i = eg[i].y){
		ll v = eg[i].x;
		if (v == fa) continue;
		dis[v] = dis[u] ^ eg[i].z,dfs(v,u,rt);
	}
}
void merge(ll x,ll y,ll z){
	ll qwq = find(x),awa = find(y);
	if (qwq == awa) return;
	if (sz[qwq] > sz[awa]) swap(x,y),swap(qwq,awa);
	id[qwq] = awa,sz[awa] += sz[qwq],sz[qwq] = 0;
	dis[x] = dis[y] ^ z,addedge(x,y,z),addedge(y,x,z),dfs(x,y,awa);
}
ll query(ll x,ll y){
	return dis[x] ^ dis[y];
}
int main(){//t = read();
while (t --){
	n = read(),X = read() + 1,q = read();
	for (ll i = 1;i <= n;i += 1){
		rt[i] = id[i] = i,sz[i] = 1;
		for (ll j = 0;j < 30;j += 1) cnt[i][j][0] = 1;
	}
	while (q --){
		o = read();
		if (o == 1){
			x = read() + 1,y = read();
			merge(x,X,y);
		}
		if (o == 2){
			x = read() + 1,y = read() + 1;
			if (find(x) != find(y)) puts("-1");
			else{
				ll qwq = query(x,y);
				X += qwq;
				printf("%lld\n",qwq);
			}
		}
		if (o == 3){
			x = read() + 1;
			printf("%lld\n",ans[find(x)]);
		}
		if (o == 4) X += read();
		X = (X + n - 1) % n + 1;
	}
}
	return 0;
}
0