#P6976. [NEERC2015] Distance on Triangulation

[NEERC2015] Distance on Triangulation

题目描述

You have a convex polygon. The vertices of the polygon are successively numbered from 11 to nn . You also have a triangulation of this polygon, given as a list of n3n − 3 diagonals.

You are also given qq queries. Each query consists of two vertex indices. For each query, find the shortest distance between these two vertices, provided that you can move by the sides and by the given diagonals of the polygon, and the distance is measured as the total number of sides and diagonals you have traversed.

输入格式

The first line of the input file contains an integer nn -- the number of vertices of the polygon (4n50000)(4 \le n \le 50 000) .

Each of the following n3n−3 lines contains two integers ai,bia_{i}, b_{i} -- the ends of the i-th diagonal (1ai,bin,aibi).(1 \le a_{i}, b_{i} \le n , a_{i} ≠ b_{i}).

The next line contains an integer qq -- the number of queries (1q100000)(1 \le q \le 100 000) .

Each of the following qq lines contains two integers xi,yix_{i}, y_{i} -- the vertices in the i-th query (1xi,yin)(1 \le x_{i}, y_{i} \le n) .

It is guaranteed that no diagonal coincides with a side of the polygon, and that no two diagonals coincide or intersect.

输出格式

For each query output a line containing the shortest distance.

题目大意

给定一个正 nn 边形及其三角剖分, 共 2n32n−3 条边 (nn 条多边形的边和 n3n−3 条对角线), 每条边的长度为 11

qq 次询问, 每次询问给定两个点, 求它们的最短距离。

Translated by Eason_AC
2020.11.19

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

2
1
1
3
0

提示

Time limit: 2 s, Memory limit: 256 MB.