2021-06-23
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
const int inf=0x3f3f3f3f;
const int N=11111;
struct node//结构体建边
{
int u;
int v;
int w;
} p[N];
int vis[N];
bool cmp(node x,node y)
{
return x.w<y.w;
}
void ini
原创
2021-06-23 23:14:40 ·
102 阅读 ·
0 评论