最短路用的是 #include <bits/stdc++.h> using namespace std; #define id(i,j) (i-1)*m+j const int maxn=2e5+10; const int inf=1e9; int a[109][109],n,ju[109][109],vis[maxn],dis[maxn],m; int x[5]={0,0,1,-1},y[5]={1,-1,0,0},T; double ans; struct edge{ int to,nxt,w; }d[maxn]; int head[maxn],cnt=1; void...