A15826 | Approximate Diameter
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Jack has a graph of $n$ vertices and $m$ 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 $u$ and $v$ is denoted as $\rho(u, v)$ and equals the minimum possible number of edges on a path between $u$ and $v$ . The diameter of graph $G$ is defined as the maximum possible distance between some pair of its vertices. We denote it as $d(G)$ . In other words, $$$$d(G) = \max_{1 \le u, v \le n}{\rho(u, v)}. $$ </p><p>Jack plans to consecutively apply $q$ updates to his graph. Each update adds exactly one edge to the graph. Denote as $G\_i$ the graph after exactly $i$ updates are made. Jack wants to calculate $q + 1$ values $d(G\_0), d(G\_1), d(G\_2), \\ldots, d(G\_q)$ .</p><p>However, Jack suspects that finding the exact diameters of $q + 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\_q$ such that $$ \left\lceil \frac{d(G_i)}{2} \right\rceil \le a_i \le 2 \cdot d(G_i) $$ for each $i$$$.
Hacks
You cannot make hacks in this problem.
The distance between vertices $u$ and $v$ is denoted as $\rho(u, v)$ and equals the minimum possible number of edges on a path between $u$ and $v$ . The diameter of graph $G$ is defined as the maximum possible distance between some pair of its vertices. We denote it as $d(G)$ . In other words, $$$$d(G) = \max_{1 \le u, v \le n}{\rho(u, v)}. $$ </p><p>Jack plans to consecutively apply $q$ updates to his graph. Each update adds exactly one edge to the graph. Denote as $G\_i$ the graph after exactly $i$ updates are made. Jack wants to calculate $q + 1$ values $d(G\_0), d(G\_1), d(G\_2), \\ldots, d(G\_q)$ .</p><p>However, Jack suspects that finding the exact diameters of $q + 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\_q$ such that $$ \left\lceil \frac{d(G_i)}{2} \right\rceil \le a_i \le 2 \cdot d(G_i) $$ for each $i$$$.
Hacks
You cannot make hacks in this problem.
输入格式
The first line of the input contains three integers $n$ , $m$ , and $q$ ( $2 \leq n \leq 10^5$ , $n - 1 \leq m \leq 10^5$ , $0 \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 $m$ lines describing the initial edges of the graph. The $i$ -th of these lines contains two integers $u_i$ and $v_i$ ( $1 \leq u_i, v_i \leq n$ ), the indexes of the vertices connected by the $i$ -th edge.
Then follow $q$ lines describing the updates. The $i$ -th of these lines contains two integers $u'_i$ and $v'_i$ ( $1 \leq u'_i, v'_i \leq n$ ), the indexes of the vertices connected by the edge that is added to the graph in the $i$ -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.
Then follow $m$ lines describing the initial edges of the graph. The $i$ -th of these lines contains two integers $u_i$ and $v_i$ ( $1 \leq u_i, v_i \leq n$ ), the indexes of the vertices connected by the $i$ -th edge.
Then follow $q$ lines describing the updates. The $i$ -th of these lines contains two integers $u'_i$ and $v'_i$ ( $1 \leq u'_i, v'_i \leq n$ ), the indexes of the vertices connected by the edge that is added to the graph in the $i$ -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 + 1$ positive integers $a_0, a_1, a_2, \ldots, a_q$ . The $i$ -th of these integers should differ from the diameter of graph $G_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(G_0), d(G_1), d(G_2), \ldots, d(G_q)$ is $6, 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(G_i)$ .
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(G_i)$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted