博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
BZOJ3732 Network
阅读量:5109 次
发布时间:2019-06-13

本文共 787 字,大约阅读时间需要 2 分钟。

题目链接:

kruskal重构树。
具体可以参考,或者更推荐的

代码如下:

#include
#include
#include
#include
#include
#define MAXN 100010using namespace std;int n,m,k,cnt,t;int fa[MAXN],head[MAXN],top[MAXN],dep[MAXN],val[MAXN],siz[MAXN],son[MAXN];struct Edge{int u,v,dis;}edge[MAXN<<1];struct Edge2{int nxt,to;}e[MAXN<<1];inline bool cmp(struct Edge x,struct Edge y){return x.dis
maxx) maxx=siz[v],son[now]=v; }}inline void dfs2(int x,int topf){ top[x]=topf; if(son[x]) dfs2(son[x],topf); for(int i=head[x];i;i=e[i].nxt) { int v=e[i].to; if(v==son[x]||v==fa[x]) continue; dfs2(v,v); }}inline int lca(int x,int y){ while(top[x]!=top[y]) { if(dep[top[x]]

BZOJ50题纪念

转载于:https://www.cnblogs.com/fengxunling/p/10301685.html

你可能感兴趣的文章
Spring MVC @ResponseBody返回中文字符串乱码问题
查看>>
用户空间与内核空间,进程上下文与中断上下文[总结]
查看>>
JS 中的跨域请求
查看>>
JAVA开发环境搭建
查看>>
mysql基础语句
查看>>
Oracle中的rownum不能使用大于>的问题
查看>>
cassandra vs mongo (1)存储引擎
查看>>
Visual Studio基于CMake配置opencv1.0.0、opencv2.2
查看>>
遍历Map对象
查看>>
MySQL索引背后的数据结构及算法原理
查看>>
#Leetcode# 209. Minimum Size Subarray Sum
查看>>
SDN第四次作业
查看>>
DM8168 DVRRDK软件框架研究
查看>>
django迁移数据库错误
查看>>
yii 跳转页面
查看>>
洛谷 1449——后缀表达式(线性数据结构)
查看>>
Data truncation: Out of range value for column 'Quality' at row 1
查看>>
Dirichlet分布深入理解
查看>>
(转)Android之发送短信的两种方式
查看>>
字符串处理
查看>>