CF1804F.Approximate Diameter

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Jack has a graph of nn vertices and mm edges. All edges are bidirectional and of unit length. The graph is connected, i. e. there exists a path between any two of its vertices. There can be more than one edge connecting the same pair of vertices. The graph can contain self-loops, i. e. edges connecting a node to itself.

The distance between vertices uu and vv is denoted as ρ(u,v)\rho(u, v) and equals the minimum possible number of edges on a path between uu and vv . The diameter of graph GG is defined as the maximum possible distance between some pair of its vertices. We denote it as d(G)d(G) . In other words, $$$$d(G) = \max_{1 \le u, v \le n}{\rho(u, v)}. $$

Jack plans to consecutively apply qq updates to his graph. Each update adds exactly one edge to the graph. Denote as G_iG\_i the graph after exactly ii updates are made. Jack wants to calculate q+1q + 1 values d(G_0),d(G_1),d(G_2),ldots,d(G_q)d(G\_0), d(G\_1), d(G\_2), \\ldots, d(G\_q) .

However, Jack suspects that finding the exact diameters of q+1q + 1 graphs might be a difficult task, so he is fine with approximate answers that differ from the correct answers no more than twice. Formally, Jack wants to find a sequence of positive integers a_0,a_1,a_2,ldots,a_qa\_0, a\_1, a\_2, \\ldots, a\_q such that $$ \left\lceil \frac{d(G_i)}{2} \right\rceil \le a_i \le 2 \cdot d(G_i) $$ for each ii$$.

Hacks

You cannot make hacks in this problem.

输入格式

The first line of the input contains three integers nn , mm , and qq ( 2n1052 \leq n \leq 10^5 , n1m105n - 1 \leq m \leq 10^5 , 0q1050 \leq q \leq 10^5 ), the number of vertices in the given graph, the number of edges and the number of updates, respectively.

Then follow mm lines describing the initial edges of the graph. The ii -th of these lines contains two integers uiu_i and viv_i ( 1ui,vin1 \leq u_i, v_i \leq n ), the indexes of the vertices connected by the ii -th edge.

Then follow qq lines describing the updates. The ii -th of these lines contains two integers uiu'_i and viv'_i ( 1ui,vin1 \leq u'_i, v'_i \leq n ), the indexes of the vertices connected by the edge that is added to the graph in the ii -th update.

Important note. For testing purposes, the input data may contain some extra lines after the mentioned input format. These will be used by the checker to verify your answer. They are not a part of the test data, you should not use them in any way and you can even omit reading them.

输出格式

Print a sequence of q+1q + 1 positive integers a0,a1,a2,,aqa_0, a_1, a_2, \ldots, a_q . The ii -th of these integers should differ from the diameter of graph GiG_i no more than twice.

输入输出样例

  • 输入#1

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

    输出#1

    10 6 5 6 2 4 2 2 1
  • 输入#2

    8 7 9
    1 2
    2 3
    3 4
    4 5
    5 6
    6 7
    7 8
    1 5
    3 7
    2 4
    4 6
    6 8
    8 2
    5 4
    2 4
    3 3
    1 652997 124613 653029 653029 124613 124613 124613 648901 124613 653029

    输出#2

    7 5 4 4 4 3 3 3 3 3

说明/提示

In the first example, the correct sequence of d(G0),d(G1),d(G2),,d(Gq)d(G_0), d(G_1), d(G_2), \ldots, d(G_q) is 6,6,6,3,3,3,2,2,26, 6, 6, 3, 3, 3, 2, 2, 2 .

In the second example, the input contains an extra line that you can omit reading. It is not a part of the test and will be used for verifying your answer. The output of the second example contains the correct values of d(Gi)d(G_i) .

首页