- Share Map with your Location: Send your location to a friend by sending them a map of your position. - I’m OK!: Send your location and a message indicating that “You’re OK” to a recipient of your choosing. - Campus Maps: Navigate around the SCC area. ...
NODE Map[maxn]; int head1[maxn], cnt1; int vis[maxn], dist[maxn]; int sumnum[maxn];//记录每一个缩点能得到的最大舒适度 void initMap(){ cnt1 = 0; memset(head1, -1, sizeof(head1)); } void addMap(int u, int v, int w){ Map[cnt1] = {u, v, w, head1[u]}; ...