题目:这里

题意:

相当于一开始给一个初始好了的无向完全图给你,然后给让你删除m条边,再给你一个点v,最后问你在剩下的图里从这个点v出发能到达所有边点的最小路径是多少?

一看是所有点的最小路径,一看就觉得是个bfs,记忆化搜一下然后加个优化什么的,由于数据不知道是个什么奇葩而且比赛中还改数据,所以很多人wa的莫名其妙,

过也过的莫名其妙,我虽然过了但觉得有点不靠谱,赛后看了https://async.icpc-camp.org/d/546-2016的题解思路写了一发,总感觉更靠谱一点。

之前自己过的,就是用set记录那删掉的m条边,dis[i]数组记录每个结点的最小路径,当所有的点都搜到过的时候就可以结束了

  1. #include<cstdio>
  2. #include<cstring>
  3. #include<iostream>
  4. #include<algorithm>
  5. #include<set>
  6. #include<queue>
  7. using namespace std;
  8.  
  9. const int M = 2e5 + ;
  10. set<int>s[M];
  11. int n;bool vis[M];
  12. int dis[M],ans;
  13.  
  14. int min(int x,int y){return x<y?x:y;}
  15.  
  16. struct node{
  17. int po,dis;
  18. };
  19.  
  20. void bfs(int pos)
  21. {
  22. memset(vis,false,sizeof(vis));
  23. queue<node>p;
  24. node now,next;
  25. now.po=pos;now.dis=;
  26. p.push(now);
  27. vis[pos]=true;
  28. while (!p.empty()){
  29. now=p.front();
  30. p.pop();
  31. for (int i= ; i<=n ; i++){
  32. next.po=i;next.dis=now.dis+;
  33. if (next.po==now.po) continue;
  34. if (vis[next.po]) continue;
  35. bool flag=false;
  36. if (s[now.po].find(next.po)!=s[now.po].end())
  37. flag=true;
  38. if (flag) continue;
  39. vis[next.po]=true;
  40. dis[next.po]=min(next.dis,dis[next.po]);
  41. p.push(next);ans++;
  42. }
  43. if (ans==n) return ;
  44. }
  45. }
  46.  
  47. int main()
  48. {
  49. int t;
  50. scanf("%d",&t);
  51. while (t--){
  52. int m;
  53. scanf("%d%d",&n,&m);
  54. for (int i= ; i<=n ; i++) s[i].clear(),dis[i]=M;
  55. while (m--){
  56. int u,v;
  57. scanf("%d%d",&u,&v);
  58. s[u].insert(v);
  59. s[v].insert(u);
  60. }
  61. int pos;
  62. scanf("%d",&pos);
  63. ans=;
  64. bfs(pos);
  65. if (n!=pos){
  66. for (int i= ; i<=n ; i++){
  67. if (i==pos) continue;
  68. if (i!=n) printf("%d ",dis[i]);
  69. else printf("%d\n",dis[i]);
  70. }
  71. }
  72. else{
  73. for (int i= ; i<n ; i++){
  74. if (i!=n-) printf("%d ",dis[i]);
  75. else printf("%d\n",dis[i]);
  76. }
  77. }
  78. }
  79. return ;
  80. }

后来看了别人的思路自己写的

  1. #include<cstdio>
  2. #include<cstring>
  3. #include<iostream>
  4. #include<algorithm>
  5. #include<set>
  6. #include<queue>
  7. using namespace std;
  8.  
  9. const int M = 2e5 + ;
  10.  
  11. int n,di[M],head[M],cas;
  12.  
  13. struct Edge{
  14. int to,next;
  15. }edge[M*];
  16.  
  17. void add(int u,int v)
  18. {
  19. edge[++cas].next=head[u];
  20. edge[cas].to=v;
  21. head[u]=cas;
  22. }
  23.  
  24. int min(int x,int y){return x<y?x:y;}
  25.  
  26. struct node{
  27. int po,dis;
  28. };
  29.  
  30. void bfs(int pos)
  31. {
  32. set<int>s,e;
  33. set<int>::iterator it;
  34. for (int i= ; i<=n ; i++) s.insert(i),di[i]=M;
  35. queue<node>p;
  36. s.erase(pos);
  37. node now,next;
  38. now.po=pos;now.dis=;
  39. p.push(now);
  40. while (!p.empty()){
  41. now=p.front();
  42. p.pop();
  43. for (int i=head[now.po] ; i ; i=edge[i].next){
  44. int v=edge[i].to;
  45. if (s.find(v)==s.end()) continue;
  46. s.erase(v);
  47. e.insert(v);
  48. }
  49. for (it=s.begin() ; it!=s.end() ; it++){
  50. next.po=*it;next.dis=now.dis+;
  51. di[next.po]=min(next.dis,di[next.po]);
  52. p.push(next);
  53. }
  54. s.swap(e);e.clear();
  55. }
  56. }
  57.  
  58. int main()
  59. {
  60. int t;
  61. scanf("%d",&t);
  62. while (t--){
  63. int m;cas=;
  64. scanf("%d%d",&n,&m);
  65. memset(head,,sizeof(head));
  66. while (m--){
  67. int u,v;
  68. scanf("%d%d",&u,&v);
  69. add(u,v);add(v,u);
  70. }
  71. int pos;
  72. scanf("%d",&pos);
  73. bfs(pos);
  74. if (n!=pos){
  75. for (int i= ; i<=n ; i++){
  76. if (i==pos) continue;
  77. if (i!=n) printf("%d ",di[i]);
  78. else printf("%d\n",di[i]);
  79. }
  80. }
  81. else{
  82. for (int i= ; i<n ; i++){
  83. if (i!=n-) printf("%d ",di[i]);
  84. else printf("%d\n",di[i]);
  85. }
  86. }
  87. }
  88. return ;
  89. }

hdu 5876 (补图BFS) Sparse Graph的更多相关文章

  1. HDU 5876 补图 单源 最短路

    ---恢复内容开始--- Sparse Graph Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 262144/262144 K (J ...

  2. HDU 5876 补图最短路

    开两个集合,一个存储当前顶点可以到达的点,另一个存储当前顶点不能到达的点.如果可以到达,那肯定由该顶点到达是最短的,如果不能,那就留着下一次再判. #include<bits/stdc++.h& ...

  3. HDU 5876 Sparse Graph 【补图最短路 BFS】(2016 ACM/ICPC Asia Regional Dalian Online)

    Sparse Graph Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)To ...

  4. HDU 5876:Sparse Graph(BFS)

    http://acm.hdu.edu.cn/showproblem.php?pid=5876 Sparse Graph Problem Description   In graph theory, t ...

  5. HDU 5876 Sparse Graph BFS 最短路

    Sparse Graph Problem Description   In graph theory, the complement of a graph G is a graph H on the ...

  6. hdu 5876 Sparse Graph 无权图bfs求最短路

    Sparse Graph Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others) P ...

  7. HDU 5876 关于补图的bfs

    1.HDU 5876  Sparse Graph 2.总结:好题,把STL都过了一遍 题意:n个点组成的完全图,删去m条边,求点s到其余n-1个点的最短距离. 思路:把点分为两个集合,A为所有没有到达 ...

  8. HDU 5876 Sparse Graph

    Sparse Graph Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)To ...

  9. HDU 5876 大连网络赛 Sparse Graph

    Sparse Graph Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others) T ...

随机推荐

  1. SetTimer 与 回调函数

    在控制台应用程序中,SetTimer的函数原型为: UINT_PTR SetTimer( HWND hWnd, // handle to window UINT_PTR nIDEvent, // ti ...

  2. Opencv出现错误“0xc000007b”的解决办法

    装了一下午的opencv.之前用VS2010装过opencv,当时使用的是cmake编译源码的办法,这个方法好处就是不用每新建一个工程就重新链接opencv库文件.今天装了个VS2013,再装open ...

  3. unity3d中检测一个物体是否在摄像机视野范围内

    这个脚本最好是把模型对象的锚点设置在最低点.好了直接上脚本.可以直接复制代码,把CS文件拖到一个Camera上,然后把目标拖到targetTran中去就行了. using UnityEngine; u ...

  4. 为 Linux 应用程序编写 DLL[转]

    自:http://www.ibm.com/developerworks/cn/linux/sdk/dll/index.html 在仅仅只会编写插件的时候为什么要编写整个应用程序? 插件和 DLL 通常 ...

  5. MySQL 5.7 Command Line Client输入密码后闪退和windows下mysql忘记root密码的解决办法

    MySQL 5.7 Command Line Client输入密码后闪退的问题: 问题分析: 1.查看mysql command line client默认执行的一些参数.方法:开始->所有程序 ...

  6. linux下dos环境和unix环境转换

    DOS转UNIX::setfileformat=unix UNIX转DOS::setfileformat=dos and :set ff=unix

  7. vim显示行号、语法高亮、自动缩进的设置

    转载自:http://blog.csdn.net/chuanj1985/article/details/6873830   在UBUNTU中vim的配置文件存放在/etc/vim目录中,配置文件名为v ...

  8. Delphi控制Excel输出上标示例

    直接上代码吧,这个示例在Excel中输出一个M2: unit FfrmMain; interface uses Winapi.Windows, Winapi.Messages, System.SysU ...

  9. [原创]多版本Java环境变量的配置

    起因:   偶然突发兴致, 收拾下自己的老T500电脑, 用来做个家庭开发用机. 应为每次装系统都有GHOST备份的习惯, 所以需要提前搭建好开发环境. 而且新装系统的目的之一, 也是想研究下Andr ...

  10. linux+php+apache web调用python脚本权限问题

    lamp : linux + apache + mysql + php 在近期项目中使用 linux + apache + php调用python脚本是出现以下权限问题: build/bdist.li ...