結果

問題 No.2294 Union Path Query (Easy)
ユーザー kwm_tkwm_t
提出日時 2023-05-06 00:31:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 227 ms / 4,000 ms
コード長 2,490 bytes
コンパイル時間 4,902 ms
コンパイル使用メモリ 266,064 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2024-05-02 19:26:24
合計ジャッジ時間 17,994 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 214 ms
52,480 KB
testcase_04 AC 158 ms
31,360 KB
testcase_05 AC 152 ms
27,904 KB
testcase_06 AC 227 ms
52,352 KB
testcase_07 AC 226 ms
52,480 KB
testcase_08 AC 196 ms
52,352 KB
testcase_09 AC 201 ms
52,480 KB
testcase_10 AC 217 ms
52,480 KB
testcase_11 AC 220 ms
52,480 KB
testcase_12 AC 217 ms
52,352 KB
testcase_13 AC 203 ms
52,480 KB
testcase_14 AC 161 ms
52,480 KB
testcase_15 AC 181 ms
52,480 KB
testcase_16 AC 150 ms
52,480 KB
testcase_17 AC 181 ms
52,480 KB
testcase_18 AC 180 ms
52,608 KB
testcase_19 AC 177 ms
52,352 KB
testcase_20 AC 173 ms
52,480 KB
testcase_21 AC 178 ms
52,480 KB
testcase_22 AC 165 ms
52,480 KB
testcase_23 AC 179 ms
52,480 KB
testcase_24 AC 172 ms
52,480 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 88 ms
5,760 KB
testcase_29 AC 97 ms
8,192 KB
testcase_30 AC 104 ms
10,624 KB
testcase_31 AC 110 ms
13,056 KB
testcase_32 AC 116 ms
15,488 KB
testcase_33 AC 123 ms
18,048 KB
testcase_34 AC 130 ms
20,352 KB
testcase_35 AC 137 ms
22,784 KB
testcase_36 AC 140 ms
25,344 KB
testcase_37 AC 147 ms
27,904 KB
testcase_38 AC 149 ms
30,208 KB
testcase_39 AC 162 ms
32,768 KB
testcase_40 AC 160 ms
35,200 KB
testcase_41 AC 168 ms
37,632 KB
testcase_42 AC 172 ms
40,192 KB
testcase_43 AC 177 ms
42,496 KB
testcase_44 AC 185 ms
45,056 KB
testcase_45 AC 189 ms
47,488 KB
testcase_46 AC 195 ms
50,048 KB
testcase_47 AC 197 ms
52,608 KB
testcase_48 AC 167 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
using mint = modint998244353;
const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
struct unionfind {
	int n;
	vector<int> par_or_size;
	// leaderからのxor距離
	vector<int>weight;
	// leaderの時にのみ機能する
	// 同じグループに属するすべての頂点のxor距離をbit単位でみて
	// bitが立ってない/立っているの個数
	vector<array<array<mint, 2>, 30>> cnt;
	// ans
	vector<mint>ans;
	unionfind(int n_) :n(n_), cnt(n), weight(n), par_or_size(n, -1), ans(n) {
		rep(i, n)rep(j, 30)cnt[i][j][0]++;
	}
	int leader(int v) {
		if (par_or_size[v] < 0)return v;
		int root = leader(par_or_size[v]);
		weight[v] ^= weight[par_or_size[v]];
		return par_or_size[v] = root;
	}
	void merge(int u, int v, int w) {
		int ul = leader(u);
		int vl = leader(v);
		w ^= weight[u] ^ weight[v];
		if (-par_or_size[ul] < -par_or_size[vl])swap(ul, vl);
		par_or_size[ul] += par_or_size[vl];
		par_or_size[vl] = ul;
		weight[vl] = w;
		ans[ul] = 0;
		rep(i, 30) {
			rep(j, 2) {
				cnt[ul][i][j ^ ((w >> i) & 1)] += cnt[vl][i][j];
			}
			ans[ul] += cnt[ul][i][0] * cnt[ul][i][1] * (1 << i);
		}
	}
	int dist(int u, int v) {
		if (leader(u) != leader(v))return -1;
		return weight[u] ^ weight[v];
	}
};
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n, x, q; cin >> n >> x >> q;
	unionfind uf(n);
	while (q--) {
		int t; cin >> t;
		if (1 == t) {
			int v, w; cin >> v >> w;
			uf.merge(v, x, w);
		}
		else if (2 == t) {
			int u, v; cin >> u >> v;
			int d = uf.dist(u, v);
			cout << d << endl;
			if (-1 != d) {
				x = (x + d) % n;
			}
		}
		else if (3 == t) {
			int v; cin >> v;
			cout << uf.ans[uf.leader(v)].val() << endl;
		}
		else {
			int v; cin >> v;
			x = (x + v) % n;
		}
	}
	return 0;
}
0