CF1763F.Edge Queries

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given an undirected, connected graph of nn nodes and mm edges. All nodes uu of the graph satisfy the following:

  • Let SuS_u be the set of vertices in the longest simple cycle starting and ending at uu .
  • Let CuC_u be the union of the sets of vertices in any simple cycle starting and ending at uu .
  • Su=CuS_u = C_u .

You need to answer qq queries.

For each query, you will be given node aa and node bb . Out of all the edges that belong to any simple path from aa to bb , count the number of edges such that if you remove that edge, aa and bb are reachable from each other.

输入格式

The first line contains two integers nn and mm ( 2n21052 \le n \le 2 \cdot 10^5 , 1mmin1 \le m \le \min ( 21052 \cdot 10^5 , (n(n1))/2(n \cdot (n-1))/2 )) — the total number of nodes and edges in the graph, respectively.

The next mm lines contain two integers uu and vv ( 11 \le uu , vv n\le n , uvu \neq v ) — describing an edge, implying that nodes uu and vv are connected to each other.

It is guaranteed that there is at most one edge between any pair of vertices in the graph and the given graph is connected.

The next line contains a single integer qq ( 1q21051 \le q \le 2 \cdot 10^5 ) — the number of queries.

Then qq lines follow, each representing a query. Each query contains two integers aa and bb ( 11 \le aa , bb n\le n ).

输出格式

For each query, output a single integer — answer to the query.

输入输出样例

  • 输入#1

    10 11
    1 2
    2 3
    3 4
    4 5
    5 3
    2 7
    7 9
    9 10
    10 6
    6 7
    1 8
    5
    1 4
    5 10
    3 5
    2 8
    7 10

    输出#1

    3
    7
    3
    0
    4
  • 输入#2

    13 15
    1 2
    2 3
    3 4
    4 1
    2 4
    3 5
    5 6
    6 7
    6 8
    7 9
    9 10
    8 7
    10 11
    10 12
    10 13
    6
    9 11
    1 5
    1 8
    5 2
    5 12
    12 13

    输出#2

    0
    5
    8
    5
    3
    0

说明/提示

The graph in the first sample is :

The first query is (1,4)(1, 4) . There are 55 total edges that belong to any simple path from 11 to 44 . Edges (3,4),(4,5),(5,3)(3, 4), (4, 5), (5, 3) will be counted in the answer to the query.

The fourth query is (2,8)(2, 8) . There is only one simple path from 22 to 88 , thus none of the edges will be counted in the answer to the query.

The fifth query is (7,10)(7, 10) . There are 44 total edges that belong to any simple path from 77 to 1010 , all of them will be counted in the answer to the query.

首页