洛谷 P2505 旅行 题解
解题思路
将速度从小到大排
枚举断点
连接两个点
假如起点可到达终点
更新答案
输出记得化简
代码
#include<algorithm>
#include<iostream>
#include<cstdio>
using namespace std;
int xx,yy,ta,wo,n,m,s,t;
double ans=2147483647;
int f[1000010];
struct hy{
int x,y,p;
}h[10010];
bool cmp(hy t,hy x)
{
return t.p<x.p;
}
int find(int x) //寻找父节点
{
if (f[x]==x) return x;
return f[x]=find(f[x