#P16070. [ICPC 2023 NAC] A Tree and Two Edges
[ICPC 2023 NAC] A Tree and Two Edges
题目描述
Given a connected simple graph (with at most one edge between any pair of nodes) with nodes and edges (that’s a tree with two extra edges), answer a list of queries: for two distinct nodes, how many simple paths are there between them? A simple path is a path that does not repeat nodes.
输入格式
The first line of input contains two integers () and (), where is the number of nodes and is the number of queries. The nodes are numbered from to .
Each of the next lines contains two integers and () indicating that there is an edge in the graph between nodes and . All edges are distinct.
Each of the next lines contains two integers and (). This is a query for the number of simple paths between nodes and .
输出格式
Output lines. On each line output a single integer, which is the number of simple paths between the query nodes. Output the answers to the queries in the order they appear in the input.
4 6
1 2
1 3
1 4
2 3
2 4
1 2
1 3
1 4
2 3
2 4
3 4
3
3
3
3
3
4
6 4
1 2
1 3
1 6
2 3
3 4
3 5
4 5
1 2
1 3
1 4
1 6
2
2
4
1