AtCoder keyence2019 E Connecting Cities
keyence2019_e
$N$ 个节点的无向图 $G$,节点 $i,j$ 之间的边权值为 $|i - j| \times D + A_i + A_j$ 。
求最小生成树(Minimum Spanning Tree, MST)的权值。
数据范围
- $1 \leq N \leq 2 \times 10^5$
- $1 \leq D \leq 10^9$
- $1 \le A_i \le 10^9$
- $A_i$ and $D$ are integers.
From the editorial:
We want to compute the MST of the graph, but a straightforward algorithm doesn't work because there are $\mathcal{O}(N^2)$ edges. We first enumerate candidates of MST edges and then compute the MST of the graph with only those edges.
考虑连通的有向图 $G=(V,E)$ 。设 $T=(V, E_T)$ 是 $G$ 生成树。显然边集 $E_T$ 完全描述了 $T$,我们径用 $E_T$ 来表示 $T$ 。
From CLRS3 pp 625
Becuase a tree is a type of graph, in order to be precise we must define a tree in terms of not just its edges, but its vertices as well. Although this chapter focuses on trees in terms of their edges, we shall operate with the understanding that vertices of a tree $T$ are those that some edge of $T$ is incident on.
从 Kruskal 算法的过程出发,很容易得到下述结论:
边 $(u,v)\in E$ 不可能出现在任一 MST 中的充要条件是
$E$ 中存在路径 $u=v_0, v_1, \dots, v_{k-1}, v_{k} = v$ 满足此路径上每条边的权值都小于边 $(u,v)$ 的权值。
设从 $E$ 中去掉边 $(u,v)$ 后图仍连通。从 $E$ 中去掉边 $(u,v)$ 后 MST 的权值不变的充要条件是
$E\setminus (u, v)$ 中存在路径 $u=v_0, v_1, \dots, v_{k-1}, v_{k} = v$ 满足此路径上每条边的权值都不大于边 $(u,v)$ 的权值。
From the editorial:
... There are two ways to find candidates:
Divide and conquer.
Let's divide the array into two halves. Only consider edges between the two halves. When are interested in the edge between $i$ and $j$ such that $1 \le i \le N/2$ and $N/2 < i \le N$.
The cost of the edges can be written as $f(i) + g(i)$, where $f(i) = A_i - D_i$ and $g(j) = A_j + D_j$. Let $i_0, j_0$ be the indices that minimize the values of $f(i), g(j)$. We claim that the edge between $i$ and $j$ can be a candidate only when $i = i_0$ or $j = j_0$. Otherwise, the three edges $(i, j_0), (i_0, j), (i_0, j_0)$ are cheaper than the edge $(i, j)$, so this edge can't be included in the MST. Thus we limit the number of edges between the two halves to $\mathcal{O}(N)$.
If we apply divide-and-conquer with the observation above, the total number of candidate edges will be $\mathcal{O}(N\log N)$, and this solution works in $\mathcal{O}(N \log^2 N)$. ...
题解中的上述论述实际上假设了所有 $f(i)$ 都不相同,所有 $g(j)$ 都不相同;虽有瑕疵但无伤大雅。根据上述第二个结论,对于边 $(i,j)$,若 $i \ne i_0$ 且 $j \ne j_0$ 则路径 $i \to j_0 \to i_0 \to j$ 上的每条边的权值都不大于(not more expensive than)边 $(i,j)$ 的权值。因此若选了 $(i,j_0), (j_0, i_0), (i_0, j)$,就不必选 $(i,j)$ 了。
关于两种常见的 MST 算法,Kruskal 和 Prim,的复杂度,CLRS3 pp 624:
... We can easily make each of them run in time $\mathcal{O}(E \log V)$...
题解上又提供另一种「to find candidates」的方法
Sort by $A_i$.
For simplicity, assume that the values of $A_i$ are pairwise distinct.
Consider a particular city (call it $x$). We can prove the following about the edges that connect this city and smaller cities (cities that satisfy $A_i < A_x$):
- Among edges that connects $x$ and all smaller cities to the left of $x$, we should only consider the cheapest edge.
- Among edges that connects $x$ and all smaller cities to the right of $x$, we should only consider the cheapest edge.
Let's prove the first claim. Suppose that among edges that connects $x$ and all smaller cities to the left of $x$, the cheapest one is $(x, y)$. Then, for each other $z$ that satisfies $z < x$ and $A_z < A_x$, both edges $(x, y)$ and $(y, z)$ are cheaper than $(x,y)$. Thus, $(x, z)$ never becomes the MST edge. The second claim is similar.
This way, the candidates will be $\mathcal{O}(N)$, and this solution works in $\mathcal{O}(N\log N)$.
此段论述中仍有瑕疵,下面做一点解释和补充。
「cities to the left of $x$」意谓编号小于 $x$ 的城市(即节点)。
「the values of $A_i$ are pairwise distinct」这个 assumption 是不必要的。
把 smaller cities 理解为把所有城市按 $A_i$ 从小到大排序后,排在 $x$ 左边的城市,不要与此“左”与 “to the left to $x$” 之左相混淆。
为了便于描述,借用 CLRS3 pp 626 中 light edge 这个术语
... More generally, we say that an edge is a light edge satisfying a given property if its weight is the minimum of any edge satisfying the property.
令 $L_x$ 表示 smaller cities to the left of $x$ 之集合,$R_x$ 表示 smaller cities to the right of $x$ 之集合。
以 $w(u,v)$ 表示边 $(u,v)$ 的权值。
设 $(y,x)$ 是连接 $x$ 与 $L_x$ 之间的 light edge。则对于任意 $z \ne y$ 且 $z \in L_x$,有 $w(x,y) \le w(x, z)$ 且 $w(y,z) \le w(x,z)$。
证明:$w(x,y) \le w(x, z)$ 由定义自明。
若 $y > z$ 则 $w(x, z) > w(y, z)$ 是显然的。
$w (x, y) \le w(x, z) \implies A_y - Dy \le A_z - Dz \implies D(y - z) \ge A_y - A_z$ 。
若 $y < z$ 则有
\begin{aligned}
w(x, z) - w(y, z) &= A_x - A_y + D(x - z) + D(y - z) \\
&\ge A_x - A_y + D(x - z) + A_y - A_ z \\
&= A_x - A_z + D(x - z) \\
&> 0
\end{aligned}
至此可得出结论:对于 $x$ 与 $L_x$ 之间的边,只保留 $(x,y)$(即只保留一条 light edge),最小生成树的权值不变。
按右到左的顺序删边,即可安全地(safely)将此类冗余的边全部删掉。
注意:按右到左的顺序删边,蕴含着一个 loop invariant 。
依对称性顷见 $x$ 与 $R_x$ 之间亦有类似结论。
AtCoder keyence2019 E Connecting Cities的更多相关文章
- atcoder.keyence2019.contest E-Connecting Cities
真是道好题啊,当时怎么想都没想出来... 传送门 简述题意: 有n个点,每个点有一个权值Ai,连接i,j两个点的代价是 |i−j|×D+Ai+Aj 其中D是给定的常数,问把n个点联通的最小代价 1≤ ...
- LeetCode 1135. Connecting Cities With Minimum Cost
原题链接在这里:https://leetcode.com/problems/connecting-cities-with-minimum-cost/ 题目: There are N cities nu ...
- 【LeetCode】1135. Connecting Cities With Minimum Cost 解题报告 (C++)
作者: 负雪明烛 id: fuxuemingzhu 个人博客:http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 Kruskal算法 日期 题目地址:https://l ...
- 【AtCoder】KEYENCE Programming Contest 2019
A - Beginning 这个年份恐怕需要+2 #include <bits/stdc++.h> #define fi first #define se second #define p ...
- csuoj 1116: Kingdoms
http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1116 1116: Kingdoms Time Limit: 3 Sec Memory Limit ...
- CodeForces Round 192 Div2
This is the first time I took part in Codeforces Competition.The only felt is that my IQ was contemp ...
- CF 191C Fools and Roads lca 或者 树链剖分
They say that Berland has exactly two problems, fools and roads. Besides, Berland has n cities, popu ...
- Bumped! 2017 ICPC North American Qualifier Contest (分层建图+dijstra)
题目描述 Peter returned from the recently held ACM ICPC World finals only to find that his return flight ...
- Bumped!【最短路】(神坑
问题 B: Bumped! 时间限制: 1 Sec 内存限制: 128 MB 提交: 351 解决: 44 [提交] [状态] [命题人:admin] 题目描述 Peter returned fr ...
随机推荐
- 模拟ie9的placeholder
ie9 的input框没有placeholder属性 啧啧啧~~~ 所以就用span标签来模拟一下 先判断浏览器类型 if(navigator.useAgent.indexOf("MSIE ...
- 【图论 思维】cf715B. Complete The Graph加强
zzq讲的杂题 题目大意 有一张$n$个点$m$条边的简单正权无向图,$S$到$T$的最短路为$L$,现在有一些边的边权未知,请输出任意一种满足题意的方案. $n,m\le 500000$ ...
- turtle画玫瑰花
import turtle turtle.screensize(400, 300, "pink") turtle.setup(1000, 600) turtle.write('作者 ...
- MySQL巧用FIND_IN_SET和GROUP_CONCAT函数减少Java代码量
数据库表简介:物品表 `id` int(11) '物品id,唯一标识', `name` varchar(255) '物品名称', `level` int(11) '物品类别等级,礼品包为最高级1,类 ...
- jquery横向手风琴效果
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- 关于 PHP 程序员技术职业生涯规划
原文地址:http://rango.swoole.com/archives/570 看到很多 PHP 程序员职业规划的文章,都是直接上来就提 Linux.PHP.MySQL.Nginx.Redis.M ...
- html常用的实体符号
HTML中有用的字符实体 字符实体的书写方式如:&entity_name(实体名称法) 或 &#entity_number(实体数字法) 例如用字符实体的形式表示小于号:< 或 ...
- Python学习之函数参数
上一节,我们学习了Python中是如何定义和调用函数且如何得到返回值的.在调用函数时,有的函数需要参数来启动函数,有的则无需参数.这一节我们来介绍Python中有哪些参数类型. 位置参数 在调用函数时 ...
- impala presto SparkSql性能测试对比
目标是为测试impala presto SparkSql谁的性能更佳,以下结果底层查询的都是普通textfile snappy压缩后数据,规模为15台机器,若以orcfile.parquet速度能 ...
- 从Wireshark看TCP连接的建立与关闭
TCP是一种面向连接.可靠的协议.TCP连接的建立与断开,都是需要经过通信双方的协商.用一句话概括就是:三次握手say hello(建立连接):四次握手say goodbye(断开连接).要了解TCP ...