标签:des style blog http color os io for
http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=2830
2 1 1 2 2 1 2 1
1 1
这题之前一直没有做,对邻接边表有点恐惧,然后我和tjj来了一场比赛,我故意出了这个题,本来以为很难的题,没想到10几分钟就A了,发现要相信自己,很多题目很简单要敢于去做。
建完表后就是很裸的bfs模板。
#include <iostream> #include <stdio.h> #include <string.h> #include <stdlib.h> #define N 100001 using namespace std; int n,m,tt; struct node { int x,y; int next; }q[1000001]; struct node1 { int x; int ans; }q1[1000001]; int v[1000001]; int head[100010]; void init() { memset(head,-1,sizeof(head)); } void add(int xx,int yy) { q[tt].x=xx; q[tt].y=yy; q[tt].next=head[xx]; head[xx]=tt; tt++; } void bfs() { int e=0; int s=0; memset(v,0,sizeof(v)); struct node1 t,f; t.x=1; t.ans=0; v[t.x]=1; q1[e++]=t; while(s<e) { t=q1[s++]; if(t.x==n) { printf("%d\n",t.ans); return ; } for(int i=head[t.x];i!=-1;i=q[i].next) { if(v[q[i].y]==0) { v[q[i].y]=1; f.ans=t.ans+1; f.x=q[i].y; q1[e++]=f; } } } printf("NO\n"); } int main() { int xx,yy; while(scanf("%d%d",&n,&m)!=EOF) { tt=0; init(); while(m--) { scanf("%d%d",&xx,&yy); add(xx,yy); add(yy,xx); } bfs(); } }
图练习-BFS-从起点到目标点的最短步数(sdut 2830)邻接边表,布布扣,bubuko.com
图练习-BFS-从起点到目标点的最短步数(sdut 2830)邻接边表
标签:des style blog http color os io for
原文地址:http://www.cnblogs.com/zhangmingcheng/p/3924637.html