博客
关于我
Lougu P2502 & SSL1312 A-B 数对【并查集】
阅读量:339 次
发布时间:2019-03-04

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

在这里插入图片描述

今天复习了并查集!


首先对输入的速度 v v v进行结构体排序

不断地合并路径直到起点与终点相连
算出最大最小速度比并不断更新最小。
最后分三种情况输出。

具体看:

代码

#include
#include
#include
#include
using namespace std;int h[100010],fa[100010];double minn=2147483647;int n,m,s,t,ss,tt;int tot;struct node{ int x,y,v;}a[1000010];bool cmp(const node&a,const node&b){ return a.v
>n>>m; for(int i=1; i<=m; i++) scanf("%d%d%d",&a[i].x,&a[i].y,&a[i].v); cin>>s>>t; sort(a+1,a+1+m,cmp); for(int i=1; i<=m; i++) { for(int j=1; j<=n; j++) fa[j]=j; int k=i,w=0; while(k<=m) { fa[find(a[k].x)]=find(a[k].y); //合并 if(find(s)==find(t)) //判断起终点是否属于同一个集合 { w=1; break; } k++; } if(w==1) { if(a[k].v*1.0/a[i].v*1.0

转载地址:http://wple.baihongyu.com/

你可能感兴趣的文章
Nginx 配置服务器文件上传与下载
查看>>
Nginx 配置清单(一篇够用)
查看>>
Nginx 配置解析:从基础到高级应用指南
查看>>
Nginx 集成Zipkin服务链路追踪
查看>>
nginx 集群配置方式 静态文件处理
查看>>
nginx+php的搭建
查看>>
nginx+tomcat+memcached
查看>>
Nginx+Tomcat实现动静分离
查看>>
nginx+Tomcat性能监控
查看>>
nginx+uwsgi+django
查看>>
nginx+vsftp搭建图片服务器
查看>>
Nginx-http-flv-module流媒体服务器搭建+模拟推流+flv.js在前端html和Vue中播放HTTP-FLV视频流
查看>>
nginx-vts + prometheus 监控nginx
查看>>
nginx: [emerg] getpwnam(“www”) failed 错误处理方法
查看>>
nginx:Error ./configure: error: the HTTP rewrite module requires the PCRE library
查看>>
Nginx、HAProxy、LVS
查看>>
Nginx下配置codeigniter框架方法
查看>>
Nginx中使用expires指令实现配置浏览器缓存
查看>>
Nginx之二:nginx.conf简单配置(参数详解)
查看>>
Nginx代理websocket配置(解决websocket异常断开连接tcp连接不断问题)
查看>>