CF292D.Connected Components

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

We already know of the large corporation where Polycarpus works as a system administrator. The computer network there consists of nn computers and mm cables that connect some pairs of computers. In other words, the computer network can be represented as some non-directed graph with nn nodes and mm edges. Let's index the computers with integers from 1 to nn , let's index the cables with integers from 1 to mm .

Polycarpus was given an important task — check the reliability of his company's network. For that Polycarpus decided to carry out a series of kk experiments on the computer network, where the ii -th experiment goes as follows:

  1. Temporarily disconnect the cables with indexes from lil_{i} to rir_{i} , inclusive (the other cables remain connected).
  2. Count the number of connected components in the graph that is defining the computer network at that moment.
  3. Re-connect the disconnected cables with indexes from lil_{i} to rir_{i} (that is, restore the initial network).

Help Polycarpus carry out all experiments and for each print the number of connected components in the graph that defines the computer network through the given experiment. Isolated vertex should be counted as single component.

输入格式

The first line contains two space-separated integers nn , mm (2<=n<=500; 1<=m<=104)(2<=n<=500; 1<=m<=10^{4}) — the number of computers and the number of cables, correspondingly.

The following mm lines contain the cables' description. The ii -th line contains space-separated pair of integers xix_{i} , yiy_{i} (1<=xi,yi<=n; xiyi)(1<=x_{i},y_{i}<=n; x_{i}≠y_{i}) — the numbers of the computers that are connected by the ii -th cable. Note that a pair of computers can be connected by multiple cables.

The next line contains integer kk (1<=k<=2104)(1<=k<=2·10^{4}) — the number of experiments. Next kk lines contain the experiments' descriptions. The ii -th line contains space-separated integers lil_{i} , rir_{i} (1<=li<=ri<=m)(1<=l_{i}<=r_{i}<=m) — the numbers of the cables that Polycarpus disconnects during the ii -th experiment.

输出格式

Print kk numbers, the ii -th number represents the number of connected components of the graph that defines the computer network during the ii -th experiment.

输入输出样例

  • 输入#1

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

    输出#1

    4
    5
    6
    3
    4
    2
    
首页