Wormhole Sort
洛谷
参考博客
题目分析
由题容易知道答案一定是所给虫洞中的某一个,我们可以先假设最大的最小虫洞大小为wid,之后遍历所有虫洞,将大小大于wid的虫洞连接的两个点并入并查集,最后再检查所有需要交换位置的点能否在这个集合中,若在则证明这两个点可以通过这个集合转移到正确的位置。
那如何找到这个wid呢?最原始的想法就是从最大的虫洞测试到最小的虫洞,但是这个方法会超时,于是就得找一个更高效的寻找wid的方法。已知答案在一个特定范围,于是就想到了二分。
代码
#include<algorithm>
#include<cstring>
#include<queue>
#include<cmath>
#include<iostream>
using namespace std;
int n,m;
int cnt=0;
int a[100002],par[100002],rank[100002];
struct swap
{
int from,to;
}s[100002];//存放需要交换位置的点
struct Hole
{
int a,b,w;
}h[100002];//存放虫洞的数据
bool cmp(Hole a,Hole b)
{
return a.w<b.w