CF901C.Bipartite Segments

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given an undirected graph with nn vertices. There are no edge-simple cycles with the even length in it. In other words, there are no cycles of even length that pass each edge at most once. Let's enumerate vertices from 11 to nn .

You have to answer qq queries. Each query is described by a segment of vertices [l;r][l;r] , and you have to count the number of its subsegments [x;y][x;y] ( l<=x<=y<=rl<=x<=y<=r ), such that if we delete all vertices except the segment of vertices [x;y][x;y] (including xx and yy ) and edges between them, the resulting graph is bipartite.

输入格式

The first line contains two integers nn and mm ( 1<=n<=31051<=n<=3·10^{5} , 1<=m<=31051<=m<=3·10^{5} ) — the number of vertices and the number of edges in the graph.

The next mm lines describe edges in the graph. The ii -th of these lines contains two integers aia_{i} and bib_{i} ( 1<=ai,bi<=n1<=a_{i},b_{i}<=n ; aibia_{i}≠b_{i} ), denoting an edge between vertices aia_{i} and bib_{i} . It is guaranteed that this graph does not contain edge-simple cycles of even length.

The next line contains a single integer qq ( 1<=q<=31051<=q<=3·10^{5} ) — the number of queries.

The next qq lines contain queries. The ii -th of these lines contains two integers lil_{i} and rir_{i} ( 1<=li<=ri<=n1<=l_{i}<=r_{i}<=n ) — the query parameters.

输出格式

Print qq numbers, each in new line: the ii -th of them should be the number of subsegments [x;y][x;y] ( li<=x<=y<=ril_{i}<=x<=y<=r_{i} ), such that the graph that only includes vertices from segment [x;y][x;y] and edges between them is bipartite.

输入输出样例

  • 输入#1

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

    输出#1

    5
    5
    14
    
  • 输入#2

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

    输出#2

    27
    8
    19
    

说明/提示

The first example is shown on the picture below:

For the first query, all subsegments of [1;3][1;3] , except this segment itself, are suitable.

For the first query, all subsegments of [4;6][4;6] , except this segment itself, are suitable.

For the third query, all subsegments of [1;6][1;6] are suitable, except [1;3][1;3] , [1;4][1;4] , [1;5][1;5] , [1;6][1;6] , [2;6][2;6] , [3;6][3;6] , [4;6][4;6] .

The second example is shown on the picture below:

首页