解题关键:最短路模板一直没整理过,这里整理了一下spfa+链式前向星建图的最短路模板,以后网络赛省的打了. spfa算法的关键就是松弛操作,只有进行松弛操作,其后的点距离才可能被更新. #include<bits/stdc++.h> using namespace std; const int inf=0x3f3f3f3f; ; ; int head[maxn],tot,n,m; struct edge{ int to; int w; int nxt; }e[maxm]; void add_e…