CF231E.Cactus
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
A connected undirected graph is called a vertex cactus, if each vertex of this graph belongs to at most one simple cycle.
A simple cycle in a undirected graph is a sequence of distinct vertices v1,v2,...,vt (t>2) , such that for any i (1<=i<t) exists an edge between vertices vi and vi+1 , and also exists an edge between vertices v1 and vt .
A simple path in a undirected graph is a sequence of not necessarily distinct vertices v1,v2,...,vt (t>0) , such that for any i (1<=i<t) exists an edge between vertices vi and vi+1 and furthermore each edge occurs no more than once. We'll say that a simple path v1,v2,...,vt starts at vertex v1 and ends at vertex vt .
You've got a graph consisting of n vertices and m edges, that is a vertex cactus. Also, you've got a list of k pairs of interesting vertices xi,yi , for which you want to know the following information — the number of distinct simple paths that start at vertex xi and end at vertex yi . We will consider two simple paths distinct if the sets of edges of the paths are distinct.
For each pair of interesting vertices count the number of distinct simple paths between them. As this number can be rather large, you should calculate it modulo 1000000007 ( 109+7 ).
输入格式
The first line contains two space-separated integers n,m (2<=n<=105; 1<=m<=105) — the number of vertices and edges in the graph, correspondingly. Next m lines contain the description of the edges: the i -th line contains two space-separated integers ai,bi (1<=ai,bi<=n) — the indexes of the vertices connected by the i -th edge.
The next line contains a single integer k (1<=k<=105) — the number of pairs of interesting vertices. Next k lines contain the list of pairs of interesting vertices: the i -th line contains two space-separated numbers xi , yi (1<=xi,yi<=n; xi=yi) — the indexes of interesting vertices in the i -th pair.
It is guaranteed that the given graph is a vertex cactus. It is guaranteed that the graph contains no loops or multiple edges. Consider the graph vertices are numbered from 1 to n .
输出格式
Print k lines: in the i -th line print a single integer — the number of distinct simple ways, starting at xi and ending at yi , modulo 1000000007 ( 109+7 ).
输入输出样例
输入#1
10 11 1 2 2 3 3 4 1 4 3 5 5 6 8 6 8 7 7 6 7 9 9 10 6 1 2 3 5 6 9 9 2 9 3 9 10
输出#1
2 2 2 4 4 1