结构体&优先队列 自定义排序
#include<bits/stdc++.h> using namespace std; typedef long long LL; struct node { LL d;//储存距离 int u;//点的标号 bool operator < ( const node& b)const// & 表示的是引用,...