hdu 4460(STL+BFS)
Problem analysis:
For this problem,first give you some people's name and then give you the relations of them.
Now,you task is calculate the maximum steps between the every two guys.
To solve the problem,you just need to calculate all the steps between the every two guys.
And of course,the BFS is good to use.
Here is the detailed code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | #include<iostream> #include<string> #include<vector> #include<queue> #include<map> using namespace std; const int M=1020; const int INF=0x3f3f3f3f3f; int dis[M][M]; //记录每两个人之间的距离 int mark[M]; int n,m; map<string, int >match; vector< int >vec[M]; queue< int >q; void BFS( int x) //实现标号为x的人的朋友关系搜索 { memset (mark,0, sizeof (mark)); dis[x][x]=0; mark[x]=1; q.push(x); while (!q.empty()) { int t=q.front(); q.pop(); int y=vec[t].size(); //统计标号为t的人的直接朋友人数 for ( int j=0;j<y;j++) //对他的每一个朋友进行操作 { int v=vec[t][j]; //v记录t的直接朋友 if (mark[v]) continue ; dis[x][v]=dis[x][t]+1; //x到v的朋友距离为x到t的朋友距离加1 q.push(v); mark[v]=1; } } } int main() { string name,name1,name2; while (cin>>n) { if (n==0) break ; int i,j; for (i=0;i<n;i++) { cin>>name; match[name]=i; } for (i=0;i<n;i++) { dis[i][i]=0; for (j=i+1;j<n;j++) dis[i][j]=dis[j][i]=INF; } cin>>m; for (i=0;i<n;i++) //对容器的初始化 vec[i].clear(); while (m--) //建立每个人的直接朋友关系 { cin>>name1>>name2; int t1=match[name1]; int t2=match[name2]; vec[t1].push_back(t2); vec[t2].push_back(t1); } for (i=0;i<n;i++) //对每个人进行搜索 BFS(i); int ans=0; for (i=0;i<n;i++) //选择最大的朋友距离 { for (j=i+1;j<n;j++) { if (dis[i][j]>ans) ans=dis[i][j]; } } if (ans==INF) ans=-1; cout<<ans<<endl; } return 0; } |
分类:
ACM
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?