Shortest Path Queries

题意翻译

给出一个连通带权无向图,边有边权,要求支持 $q$ 个操作: $1$ $x$ $y$ $d$ 在原图中加入一条 $x$ 到 $y$ 权值为 $d$ 的边 $2$ $x$ $y$ 把图中 $x$ 到 $y$ 的边删掉 $3$ $x$ $y$ 表示询问 $x$ 到 $y$ 的异或最短路 保证任意操作后当前状态下的图连通无重边自环且操作均合法 $1 \leq n,m,q\le200000$。 感谢 @Kelin 提供的翻译

题目描述

You are given an undirected connected graph with weighted edges. The length of some path between two vertices is the bitwise xor of weights of all edges belonging to this path (if some edge is traversed more than once, then it is included in bitwise xor the same number of times). There are three types of queries you have to process: - $ 1 $ $ x $ $ y $ $ d $ — add an edge connecting vertex $ x $ to vertex $ y $ with weight $ d $ . It is guaranteed that there is no edge connecting $ x $ to $ y $ before this query; - $ 2 $ $ x $ $ y $ — remove an edge connecting vertex $ x $ to vertex $ y $ . It is guaranteed that there was such edge in the graph, and the graph stays connected after this query; - $ 3 $ $ x $ $ y $ — calculate the length of the shortest path (possibly non-simple) from vertex $ x $ to vertex $ y $ . Print the answers for all queries of type $ 3 $ .

输入输出格式

输入格式


The first line contains two numbers $ n $ and $ m $ ( $ 1<=n,m<=200000 $ ) — the number of vertices and the number of edges in the graph, respectively. Then $ m $ lines follow denoting the edges of the graph. Each line contains three integers $ x $ , $ y $ and $ d $ ( $ 1<=x<y<=n $ , $ 0<=d<=2^{30}-1 $ ). Each pair $ (x,y) $ is listed at most once. The initial graph is connected. Then one line follows, containing an integer $ q $ ( $ 1<=q<=200000 $ ) — the number of queries you have to process. Then $ q $ lines follow, denoting queries in the following form: - $ 1 $ $ x $ $ y $ $ d $ ( $ 1<=x<y<=n $ , $ 0<=d<=2^{30}-1 $ ) — add an edge connecting vertex $ x $ to vertex $ y $ with weight $ d $ . It is guaranteed that there is no edge connecting $ x $ to $ y $ before this query; - $ 2 $ $ x $ $ y $ ( $ 1<=x<y<=n $ ) — remove an edge connecting vertex $ x $ to vertex $ y $ . It is guaranteed that there was such edge in the graph, and the graph stays connected after this query; - $ 3 $ $ x $ $ y $ ( $ 1<=x<y<=n $ ) — calculate the length of the shortest path (possibly non-simple) from vertex $ x $ to vertex $ y $ . It is guaranteed that at least one query has type $ 3 $ .

输出格式


Print the answers for all queries of type $ 3 $ in the order they appear in input.

输入输出样例

输入样例 #1

5 5
1 2 3
2 3 4
3 4 5
4 5 6
1 5 1
5
3 1 5
1 1 3 1
3 1 5
2 1 5
3 1 5

输出样例 #1

1
1
2