题解
太巧妙了!!
原题等效于该分层图,然后广搜
本题中我用了另一种方法建边,因为清空太麻烦了
code
#include<bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t;
cin>>t;
while(t--)
{
int n,m;
cin>>n>>m;
map<int,vector<int> > G;
map<int,int> dis;
for(int i=1;i<=m;i++)
{
int x,y,w;
cin>>x>>y>>w;
w+=n;
G[x].emplace_back(w);
G[y].emplace_back(w);
G[w].emplace_back(x);
G[w].emplace_back(y);
}
int st,ed;
cin>>st>>ed;
queue<int> q;
q.emplace(st);
dis[st]=1;
while(q.size())
{
int now=q.front();
q.pop();
//printf("dis[%d]=%d\n",now,dis[now]);
if(now==ed)break;
for(auto next:G[now])
{
if(!dis[next])
{
dis[next]=dis[now]+1;
q.emplace(next);
}
}
}
cout<<dis[ed]/2<<endl;
}
return 0;
}
标签:emplace,int,back,next,Subway,now,Rudolf,dis
From: https://www.cnblogs.com/pure4knowledge/p/18076215