hdu 5876 (补图BFS) Sparse Graph
题目:这里
题意:
相当于一开始给一个初始好了的无向完全图给你,然后给让你删除m条边,再给你一个点v,最后问你在剩下的图里从这个点v出发能到达所有边点的最小路径是多少?
一看是所有点的最小路径,一看就觉得是个bfs,记忆化搜一下然后加个优化什么的,由于数据不知道是个什么奇葩而且比赛中还改数据,所以很多人wa的莫名其妙,
过也过的莫名其妙,我虽然过了但觉得有点不靠谱,赛后看了https://async.icpc-camp.org/d/546-2016的题解思路写了一发,总感觉更靠谱一点。
之前自己过的,就是用set记录那删掉的m条边,dis[i]数组记录每个结点的最小路径,当所有的点都搜到过的时候就可以结束了
- #include<cstdio>
- #include<cstring>
- #include<iostream>
- #include<algorithm>
- #include<set>
- #include<queue>
- using namespace std;
- const int M = 2e5 + ;
- set<int>s[M];
- int n;bool vis[M];
- int dis[M],ans;
- int min(int x,int y){return x<y?x:y;}
- struct node{
- int po,dis;
- };
- void bfs(int pos)
- {
- memset(vis,false,sizeof(vis));
- queue<node>p;
- node now,next;
- now.po=pos;now.dis=;
- p.push(now);
- vis[pos]=true;
- while (!p.empty()){
- now=p.front();
- p.pop();
- for (int i= ; i<=n ; i++){
- next.po=i;next.dis=now.dis+;
- if (next.po==now.po) continue;
- if (vis[next.po]) continue;
- bool flag=false;
- if (s[now.po].find(next.po)!=s[now.po].end())
- flag=true;
- if (flag) continue;
- vis[next.po]=true;
- dis[next.po]=min(next.dis,dis[next.po]);
- p.push(next);ans++;
- }
- if (ans==n) return ;
- }
- }
- int main()
- {
- int t;
- scanf("%d",&t);
- while (t--){
- int m;
- scanf("%d%d",&n,&m);
- for (int i= ; i<=n ; i++) s[i].clear(),dis[i]=M;
- while (m--){
- int u,v;
- scanf("%d%d",&u,&v);
- s[u].insert(v);
- s[v].insert(u);
- }
- int pos;
- scanf("%d",&pos);
- ans=;
- bfs(pos);
- if (n!=pos){
- for (int i= ; i<=n ; i++){
- if (i==pos) continue;
- if (i!=n) printf("%d ",dis[i]);
- else printf("%d\n",dis[i]);
- }
- }
- else{
- for (int i= ; i<n ; i++){
- if (i!=n-) printf("%d ",dis[i]);
- else printf("%d\n",dis[i]);
- }
- }
- }
- return ;
- }
后来看了别人的思路自己写的
- #include<cstdio>
- #include<cstring>
- #include<iostream>
- #include<algorithm>
- #include<set>
- #include<queue>
- using namespace std;
- const int M = 2e5 + ;
- int n,di[M],head[M],cas;
- struct Edge{
- int to,next;
- }edge[M*];
- void add(int u,int v)
- {
- edge[++cas].next=head[u];
- edge[cas].to=v;
- head[u]=cas;
- }
- int min(int x,int y){return x<y?x:y;}
- struct node{
- int po,dis;
- };
- void bfs(int pos)
- {
- set<int>s,e;
- set<int>::iterator it;
- for (int i= ; i<=n ; i++) s.insert(i),di[i]=M;
- queue<node>p;
- s.erase(pos);
- node now,next;
- now.po=pos;now.dis=;
- p.push(now);
- while (!p.empty()){
- now=p.front();
- p.pop();
- for (int i=head[now.po] ; i ; i=edge[i].next){
- int v=edge[i].to;
- if (s.find(v)==s.end()) continue;
- s.erase(v);
- e.insert(v);
- }
- for (it=s.begin() ; it!=s.end() ; it++){
- next.po=*it;next.dis=now.dis+;
- di[next.po]=min(next.dis,di[next.po]);
- p.push(next);
- }
- s.swap(e);e.clear();
- }
- }
- int main()
- {
- int t;
- scanf("%d",&t);
- while (t--){
- int m;cas=;
- scanf("%d%d",&n,&m);
- memset(head,,sizeof(head));
- while (m--){
- int u,v;
- scanf("%d%d",&u,&v);
- add(u,v);add(v,u);
- }
- int pos;
- scanf("%d",&pos);
- bfs(pos);
- if (n!=pos){
- for (int i= ; i<=n ; i++){
- if (i==pos) continue;
- if (i!=n) printf("%d ",di[i]);
- else printf("%d\n",di[i]);
- }
- }
- else{
- for (int i= ; i<n ; i++){
- if (i!=n-) printf("%d ",di[i]);
- else printf("%d\n",di[i]);
- }
- }
- }
- return ;
- }
hdu 5876 (补图BFS) Sparse Graph的更多相关文章
- HDU 5876 补图 单源 最短路
---恢复内容开始--- Sparse Graph Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 262144/262144 K (J ...
- HDU 5876 补图最短路
开两个集合,一个存储当前顶点可以到达的点,另一个存储当前顶点不能到达的点.如果可以到达,那肯定由该顶点到达是最短的,如果不能,那就留着下一次再判. #include<bits/stdc++.h& ...
- 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 ...
- HDU 5876:Sparse Graph(BFS)
http://acm.hdu.edu.cn/showproblem.php?pid=5876 Sparse Graph Problem Description In graph theory, t ...
- HDU 5876 Sparse Graph BFS 最短路
Sparse Graph Problem Description In graph theory, the complement of a graph G is a graph H on the ...
- hdu 5876 Sparse Graph 无权图bfs求最短路
Sparse Graph Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others) P ...
- HDU 5876 关于补图的bfs
1.HDU 5876 Sparse Graph 2.总结:好题,把STL都过了一遍 题意:n个点组成的完全图,删去m条边,求点s到其余n-1个点的最短距离. 思路:把点分为两个集合,A为所有没有到达 ...
- HDU 5876 Sparse Graph
Sparse Graph Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)To ...
- HDU 5876 大连网络赛 Sparse Graph
Sparse Graph Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others) T ...
随机推荐
- SetTimer 与 回调函数
在控制台应用程序中,SetTimer的函数原型为: UINT_PTR SetTimer( HWND hWnd, // handle to window UINT_PTR nIDEvent, // ti ...
- Opencv出现错误“0xc000007b”的解决办法
装了一下午的opencv.之前用VS2010装过opencv,当时使用的是cmake编译源码的办法,这个方法好处就是不用每新建一个工程就重新链接opencv库文件.今天装了个VS2013,再装open ...
- unity3d中检测一个物体是否在摄像机视野范围内
这个脚本最好是把模型对象的锚点设置在最低点.好了直接上脚本.可以直接复制代码,把CS文件拖到一个Camera上,然后把目标拖到targetTran中去就行了. using UnityEngine; u ...
- 为 Linux 应用程序编写 DLL[转]
自:http://www.ibm.com/developerworks/cn/linux/sdk/dll/index.html 在仅仅只会编写插件的时候为什么要编写整个应用程序? 插件和 DLL 通常 ...
- MySQL 5.7 Command Line Client输入密码后闪退和windows下mysql忘记root密码的解决办法
MySQL 5.7 Command Line Client输入密码后闪退的问题: 问题分析: 1.查看mysql command line client默认执行的一些参数.方法:开始->所有程序 ...
- linux下dos环境和unix环境转换
DOS转UNIX::setfileformat=unix UNIX转DOS::setfileformat=dos and :set ff=unix
- vim显示行号、语法高亮、自动缩进的设置
转载自:http://blog.csdn.net/chuanj1985/article/details/6873830 在UBUNTU中vim的配置文件存放在/etc/vim目录中,配置文件名为v ...
- Delphi控制Excel输出上标示例
直接上代码吧,这个示例在Excel中输出一个M2: unit FfrmMain; interface uses Winapi.Windows, Winapi.Messages, System.SysU ...
- [原创]多版本Java环境变量的配置
起因: 偶然突发兴致, 收拾下自己的老T500电脑, 用来做个家庭开发用机. 应为每次装系统都有GHOST备份的习惯, 所以需要提前搭建好开发环境. 而且新装系统的目的之一, 也是想研究下Andr ...
- linux+php+apache web调用python脚本权限问题
lamp : linux + apache + mysql + php 在近期项目中使用 linux + apache + php调用python脚本是出现以下权限问题: build/bdist.li ...