Mobile Phone Network CodeForces - 1023F(并查集lca+修改环)
题意:
就是有几个点,你掌控了几条路,你的商业对手也掌控了几条路,然后你想让游客都把你的所有路都走完,那么你就有钱了,但你又想挣的钱最多,真是的过分。。哈哈
游客肯定要对比一下你的对手的路 看看那个便宜 就走哪个,(你的路的价钱和对手相等时 优先走你的);
思路想到了 但写不出来。。。真的有点巧妙了
用并查集来记录环路 如果两个点不能加入到并查集,那么肯定是加入这两个点后就构成了一个环路 记录下构成环路的u和v两点 其它点加入并查集 并加入到邻接表
dfs走一遍 记录下每个点的父结点 和 每个点的等级 用于找lca
之后 遍历没加入到并查集的u 和 v,找它们的lca 在找lca的路上同时修改 边的权值 使这两个点 到lca的路上的边的权值等于 这两个点之间的权值(没加入到并查集的边)
为什么?画画图。。在u 到 v的这条路上只要你的边有一条比你的对手的贵。。那游客肯定不走你的呀
so就修改一下 并再次用并查集记录 那么当有重复的u 或 v 时 已经修改过的边就不会再修改了(题中保证输入时边的权值从小到大输入)
#include <bits/stdc++.h>
#define mem(a, b) memset(a, b, sizeof(a))
#define rap(i, a, n) for(int i=a; i<=n; i++)
#define rep(i, a, n) for(int i=a; i<n; i++)
#define lap(i, a, n) for(int i=n; i>=a; i--)
#define lep(i, a, n) for(int i=n; i>a; i--)
#define rd(a) scanf("%d", &a)
#define rlld(a) scanf("%lld", &a)
#define rc(a) scanf("%c", &a)
#define rs(a) scanf("%s", a)
#define pd(a) printf("%d\n", a);
#define plld(a) printf("%lld\n", a);
#define pc(a) printf("%c\n", a);
#define ps(a) printf("%s\n", a);
#define MOD 2018
#define LL long long
#define ULL unsigned long long
using namespace std;
const int maxn = , INF = 0x7fffffff;
int n, m, k, cnt;
int head[maxn], ans;
int f[maxn], fa[maxn], pre[maxn], res[maxn], d[maxn]; void init()
{
mem(head, -);
cnt = ans = ;
} int find(int x)
{
return f[x] == x?x:(f[x]=find(f[x]));
} struct node
{
int u, v, ty, next;
}Node[maxn<<]; struct edge
{
int u, v, w;
}Edge[maxn<<]; void add_edge(int u, int v, int w)
{
Edge[ans].u = u;
Edge[ans].v = v;
Edge[ans++].w = w;
} void add_(int u, int v, int ty)
{
Node[cnt].u = u;
Node[cnt].v = v;
Node[cnt].ty = ty;
Node[cnt].next = head[u];
head[u] = cnt++;
} void add(int u, int v, int ty)
{
add_(u, v, ty);
add_(v, u, ty);
} void dfs(int u)
{
for(int i=head[u]; i!=-; i=Node[i].next)
{
node e = Node[i];
if(e.v == pre[u]) continue;
pre[e.v] = u;
d[e.v] = d[u] + ;
// cout<< u << " " << e.v <<endl;
dfs(e.v);
}
} int main()
{
init();
rd(n), rd(m), rd(k);
int u, v, w;
for(int i=; i<=n; i++)
f[i] = i; for(int i=; i<m; i++)
{
rd(u), rd(v);
add(u, v, );
f[find(u)] = find(v);
}
for(int i=; i<k; i++)
{
rd(u), rd(v), rd(w);
int l = find(u);
int r = find(v);
if(l == r) add_edge(u, v, w);
else f[l] = r, add(u, v, );
}
dfs();
// cout<< 111 <<endl;
for(int i=; i<=n; i++) f[i] = i;
for(int i=; i<ans; i++)
{
int r = find(Edge[i].u), l = find(Edge[i].v);
while(r != l)
{
if(d[r] > d[l]) res[r] = Edge[i].w, f[r] = find(pre[r]), r = f[r];
else res[l] = Edge[i].w, f[l] = find(pre[l]), l = f[l];
}
}
LL sum = ;
for(int i=; i<=n; i++)
{
for(int j=head[i]; j!=-; j=Node[j].next)
{
node e = Node[j];
if(e.v == pre[i] && e.ty == )
{
if(f[i] == i)
{
puts("-1");
return ;
}
sum += res[i];
}
}
} printf("%lld\n",sum);
return ;
}
Mobile Phone Network CodeForces - 1023F(并查集lca+修改环)的更多相关文章
- Mobile Phone Network CodeForces - 1023F (最小生成树)
大意: 无向图, 其中k条边是你的, 边权待定, m条边是你对手的, 边权已知. 求如何设置边权能使最小生成树中, 你的边全被选到, 且你的边的边权和最大. 若有多棵最小生成树优先取你的边. 先将$k ...
- HDU 4514 - 湫湫系列故事——设计风景线 - [并查集判无向图环][树形DP求树的直径]
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4514 Time Limit: 6000/3000 MS (Java/Others) Memory Li ...
- hdu 2874 Connections between cities (并查集+LCA)
Connections between cities Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 32768/32768 K (J ...
- hdu6074[并查集+LCA+思维] 2017多校4
看了标答感觉思路清晰了许多,用并查集来维护全联通块的点数和边权和. 用另一个up[]数组(也是并查集)来保证每条边不会被重复附权值,这样我们只要将询问按权值从小到大排序,一定能的到最小的边权和与联通块 ...
- Codeforces.1040E.Network Safety(思路 并查集)
题目链接 \(Description\) 有一张\(n\)个点\(m\)条边的无向图,每个点有点权.图是安全的当且仅当所有边的两个端点权值不同.保证初始时图是安全的. 现在有权值为\(x\)的病毒,若 ...
- UVALive 3027 Corporative Network 带权并查集
Corporative Network A very big corporation is developing its corporative networ ...
- POJ1861 Network (Kruskal算法 +并查集)
Network Description Andrew is working as system administrator and is planning to establish a new net ...
- Vladik and Entertaining Flags CodeForces - 811E (并查集,线段树)
用线段树维护每一块左右两侧的并查集, 同色合并时若不连通则连通块数-1, 否则不变 #include <iostream> #include <algorithm> #incl ...
- CodeForces - 893C-Rumor(并查集变式)
Vova promised himself that he would never play computer games... But recently Firestorm - a well-kno ...
随机推荐
- 启动hbase shell报错:org.apache.hadoop.hbase.ipc.ServerNotRunningYetException: Server is not running yet
查看日志发现:Waiting for dfs to exit safe mode 这说明HDFS目前处于安全模式,需要退出才行,于是进入Namdenode节点,执行命令: hdfs dfsadmin ...
- 十万的License只取决于一个连接
前段时间看到一份代码,小规模.低难度的一个应用,MVC用到极致,业务逻辑却混成一团麻,应该是中了培训班的毒.现在的程序员,大多是没仔细读过<现代操作系统>,没看过编译原理,不知道堆与栈,没 ...
- ASP HUOSHAN VIDEO
<html> <head> <meta http-equiv="Content-Type" content="text/html; char ...
- 20155202张旭 Exp7 网络欺诈技术防范
20155202张旭 Exp7 网络欺诈技术防范 基础问题回答 通常在什么场景下容易受到DNS spoof攻击? 在同一局域网下比较容易受到DNS spoof攻击,攻击者可以冒充域名服务器,来发送伪造 ...
- 20155317王新玮《网络对抗技术》实验9 web安全基础实践
20155317王新玮<网络对抗技术>实验9 web安全基础实践 一.实验准备 1.0 实验目标和内容 Web前端HTML.能正常安装.启停Apache.理解HTML,理解表单,理解GET ...
- nova状态同步
服务初始化阶段 nova-compute服务启动时调用manager中的host初始化函数 self.manager.init_host() 在host初始化函数中完成如下操作: #初始化libvir ...
- 【中间件】Redis 实战之主从复制、高可用、分布式
目录 简介 持久化 主从复制 高可用 Redis-Sentinel .NET Core开发 分布式 Redis-Cluster 配置说明 常见问题 简介 本节内容基于 CentOS 7.4.1708, ...
- resource fork, Finder information, or similar detritus not allowed
1.关闭当前项目和Xcode 2.打开终端或者iterm cd ~/Library/Developer/Xcode/DerivedData/ 3. xattr -rc . 4.重新打开项目 5.如果不 ...
- JNI探秘-----你不知道的FileInputStream的秘密
作者:zuoxiaolong8810(左潇龙),转载请注明出处,特别说明:本博文来自博主原博客,为保证新博客中博文的完整性,特复制到此留存,如需转载请注明新博客地址即可. 设计模式系列结束,迎来了LZ ...
- 用 IIS 搭建 mercurial server
mercurial server 对于代码管理工具,更多的人可能对 Git 更熟悉一些(Git太火了).其实另外一款分布式代码管理工具也被广泛的使用,它就是 mercurial.当多人协作时最好能够通 ...