CF500G.New Year Running
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 p1,p2,...,pl (here, p1=a and pl=b holds). Then following happens:
- The runner starts at city a .
- The runner runs from city a to b , following the shortest path from city a to city b .
- 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 .
- 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 .
- Repeat step 3 and step 4 forever.
In short, the course of the runner can be denoted as:
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×105 ) — 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 ai and bi ( 1<=ai,bi<=n,ai=bi ) — the vertices connected by a single road of the tree.
The next line contains an integer t ( 1<=t<=2×105 ) — 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 uj,vj,xj,yj ( 1<=uj,vj,xj,yj<=n,uj=vj,xj=yj ). It means that in this test case, JH has chosen two cities uj and vj , JY has chosen two cities xj and yj . JH starts running at city uj , and JY starts running at city xj .
输出格式
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: