1.图中点的层次
#include <cstring>
#include <iostream>
using namespace std;
const int N=1e5+10;
int h[N], e[N], idx, ne[N];//e[i]存储图中的下标
int d[N]; //存储每个节点离起点的距离 d[1]=0
int n, m; //n个节点m条边
int q[N]; //存储层次遍历序列 0号节点是编号为1的节点
/*
4 5
1 2
2 3
3 4
1 3
1 4
e[0]=5,ne[0]=h[4]=-1,h[4]=0,idx=1;
//e[1]=2,ne[1]=h[1]=-1,h[1]=1,idx=2;
e[2]=3,ne[2]=h[2]=-1,h[2]=2,idx=3;
e[3]=4,ne[3]=h[3]=-1,h[3]=3,idx=4;
//e[4]=3,ne[4]=h[1]=1,h[1]=4,idx=5;
//e[5]=4,ne[5]=h[1]=4,h[1]=5,idx=6;
t=1;
i=h[1]=5;ne[5]=4;ne[4]=1;ne[1]=-1;
e[h[1]]=4;e[4]=3;e[1]=2;
1 // 4 3 2
[] // 5 4 1 -1
t=2;
i=h[2]=2;ne[2]=-1
e[2]=3;
2 // 3
[] // 2
*/
void add(int a, int b)
{
e[idx]=b;
ne[idx]=h[a];
h[a]=idx;
idx++;
}
int bfs()
{
int hh=0,tt=0;
q[0]=1; //0号节点是编号为1的节点
memset(d,-1,sizeof d);
d[1]=0; //存储每个节点离起点的距离
//队列不为空时
while(hh<=tt)
{
//取出队列头元素并且弹出队头
int t=q[hh++];
//遍历t节点的每一个邻边
for(int i=h[t];i!=-1;i=ne[i])
{
int j=e[i];
//如果j没有被扩展过
if(d[j]==-1)
{
d[j]=d[t]+1; //d[j]存储j节点离起点的距离,并标记为访问过
q[++tt] = j; //把j结点加入队列
}
}
}
return d[n];
}
int main()
{
cin>>n>>m;
memset(h,-1,sizeof h);
for(int i=0;i<m;i++)
{
int a,b;
cin>>a>>b;
add(a,b);
}
cout<<bfs()<<endl;
}