結果

問題 No.2294 Union Path Query (Easy)
ユーザー kwm_tkwm_t
提出日時 2023-05-06 00:31:17
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 218 ms / 4,000 ms
コード長 2,490 bytes
コンパイル時間 4,646 ms
コンパイル使用メモリ 267,584 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2024-11-23 13:25:36
合計ジャッジ時間 17,705 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 213 ms
52,480 KB
testcase_04 AC 174 ms
31,488 KB
testcase_05 AC 148 ms
27,904 KB
testcase_06 AC 214 ms
52,480 KB
testcase_07 AC 218 ms
52,480 KB
testcase_08 AC 191 ms
52,352 KB
testcase_09 AC 195 ms
52,480 KB
testcase_10 AC 208 ms
52,480 KB
testcase_11 AC 212 ms
52,480 KB
testcase_12 AC 214 ms
52,608 KB
testcase_13 AC 188 ms
52,568 KB
testcase_14 AC 156 ms
52,352 KB
testcase_15 AC 177 ms
52,480 KB
testcase_16 AC 153 ms
52,608 KB
testcase_17 AC 183 ms
52,480 KB
testcase_18 AC 176 ms
52,352 KB
testcase_19 AC 173 ms
52,480 KB
testcase_20 AC 165 ms
52,480 KB
testcase_21 AC 172 ms
52,480 KB
testcase_22 AC 155 ms
52,320 KB
testcase_23 AC 164 ms
52,464 KB
testcase_24 AC 161 ms
52,536 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 86 ms
5,760 KB
testcase_29 AC 97 ms
8,228 KB
testcase_30 AC 101 ms
10,680 KB
testcase_31 AC 107 ms
13,072 KB
testcase_32 AC 109 ms
15,484 KB
testcase_33 AC 118 ms
18,160 KB
testcase_34 AC 124 ms
20,468 KB
testcase_35 AC 131 ms
22,912 KB
testcase_36 AC 133 ms
25,344 KB
testcase_37 AC 143 ms
28,008 KB
testcase_38 AC 144 ms
30,264 KB
testcase_39 AC 154 ms
32,744 KB
testcase_40 AC 160 ms
35,200 KB
testcase_41 AC 162 ms
37,720 KB
testcase_42 AC 164 ms
40,144 KB
testcase_43 AC 170 ms
42,624 KB
testcase_44 AC 176 ms
45,052 KB
testcase_45 AC 176 ms
47,488 KB
testcase_46 AC 179 ms
50,048 KB
testcase_47 AC 184 ms
52,480 KB
testcase_48 AC 154 ms
52,568 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