New Year Running

题意翻译

给出一棵 $n$ 个节点的树,有 $t$ 个询问: 每个询问给出四个节点 $u, v, x, y$。 第一个人在 $u \sim v$ 的树上简单路径上往返走,第二个人在 $x \sim y$ 的树上简单路径上往返走,每个时刻两个人移动一步(从一个节点移动至下一个节点)问两人第一次在结点上相遇需要经过几个时刻,如果无法相遇输出 `-1`。 $n, t \leq 10^5$。

题目描述

New Year is coming in Tree Island! In this island, as the name implies, there are $ n $ cities connected by $ n-1 $ roads, and for any two distinct cities there always exists exactly one path between them. For every person in Tree Island, it takes exactly one minute to pass by exactly one road. There is a weird New Year tradition for runnners in Tree Island, which is called "extreme run". This tradition can be done as follows. A runner chooses two distinct cities $ a $ and $ b $ . For simplicity, let's denote the shortest path from city $ a $ to city $ b $ as $ p_{1},p_{2},...,p_{l} $ (here, $ p_{1}=a $ and $ p_{l}=b $ holds). Then following happens: 1. The runner starts at city $ a $ . 2. The runner runs from city $ a $ to $ b $ , following the shortest path from city $ a $ to city $ b $ . 3. When the runner arrives at city $ b $ , he turns his direction immediately (it takes no time), and runs towards city $ a $ , following the shortest path from city $ b $ to city $ a $ . 4. When the runner arrives at city $ a $ , he turns his direction immediately (it takes no time), and runs towards city $ b $ , following the shortest path from city $ a $ to city $ b $ . 5. Repeat step 3 and step 4 forever. In short, the course of the runner can be denoted as: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF500G/025b6a126e2d5bfb81cc888594d1669dfd47cf55.png)![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF500G/87628e4e1ee0d9f1a3eb8258024da9e81bf4f13b.png) Two runners JH and JY decided to run "extremely" in order to celebrate the New Year. JH has chosen two cities $ u $ and $ v $ , and JY has chosen two cities $ x $ and $ y $ . They decided to start running at the same moment, and run until they meet at the same city for the first time. Meeting on a road doesn't matter for them. Before running, they want to know the amount of time they will run. It is too hard for JH and JY to calculate this, so they ask you for help.

输入输出格式

输入格式


The first line contains a single positive integer $ n $ ( $ 5<=n<=2×10^{5} $ ) — the number of cities in Tree Island. Next $ n-1 $ lines describe the roads of Tree Island. The $ i $ -th line ( $ 1<=i<=n-1 $ ) of them contains two space-separated integers $ a_{i} $ and $ b_{i} $ ( $ 1<=a_{i},b_{i}<=n,a_{i}≠b_{i} $ ) — the vertices connected by a single road of the tree. The next line contains an integer $ t $ ( $ 1<=t<=2×10^{5} $ ) — the number of test cases. Next $ t $ lines describes the test cases. The $ j $ -th line ( $ 1<=j<=t $ ) of them contains four space-separated integers $ u_{j},v_{j},x_{j},y_{j} $ ( $ 1<=u_{j},v_{j},x_{j},y_{j}<=n,u_{j}≠v_{j},x_{j}≠y_{j} $ ). It means that in this test case, JH has chosen two cities $ u_{j} $ and $ v_{j} $ , JY has chosen two cities $ x_{j} $ and $ y_{j} $ . JH starts running at city $ u_{j} $ , and JY starts running at city $ x_{j} $ .

输出格式


For each test case, print an integer describing the amount of time they should run in minutes. If they have to run for an infinitely long time (in other words, if they never meet at the same city), print -1 instead. If they meet at the beginning of their run, print 0.

输入输出样例

输入样例 #1

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

输出样例 #1

2
1
0
-1

说明

The example looks like: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF500G/3a1cfe368327b674dde36bdc8607c860fa47cdf6.png)