【p2888】求路径的最长边可取的最小值-CSDN博客

网站介绍:文章浏览阅读244次。题意:有很多条路径,每条路径有最长的边x,选取x最小的情况作为答案代码:1.Floyd写法:#include<bits/stdc++.h>#define LL long long#define maxn 302#define inf 0x3f3f3f3fusing namespace std;int mp[maxn][maxn];i..._p2888