博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CF 118E Bertown roads 桥
阅读量:4965 次
发布时间:2019-06-12

本文共 1676 字,大约阅读时间需要 5 分钟。

 

题目:把无向图指定边的方向,使得原图变成有向图,问能否任意两点之间互达

分析:显然如果没有桥的话,存在满足题意的方案。输出答案时任意从一个点出发遍历一遍即可。

求桥的话,利用tarjan算法的low和dfn值判断一下即可。

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long ll;typedef unsigned long long ull;#define debug puts("here")#define rep(i,n) for(int i=0;i
#define PQ priority_queue#define cmax(x,y) x = max(x,y)#define cmin(x,y) x = min(x,y)#define Clear(x) memset(x,0,sizeof(x))/*#pragma comment(linker, "/STACK:1024000000,1024000000")int size = 256 << 20; // 256MBchar *p = (char*)malloc(size) + size;__asm__("movl %0, %%esp\n" :: "r"(p) );*//******** program ********************/const int MAXN = 1e6+5;int dfn[MAXN],low[MAXN],dep;int po[MAXN],tol;int n,m;struct node{ int x,y,id,next;}edge[MAXN*2];bool dfs(int x,int fa){ low[x] = dfn[x] = ++ dep; for(int i=po[x];i;i=edge[i].next){ int y = edge[i].y; if(y==fa)continue; if(!dfn[y]){ if(!dfs(y,x)) return false; cmin( low[x],low[y] ); if(low[y]>dfn[x]) return false; }else cmin( low[x],dfn[y] ); } return true;}void out(int x,int fa){ low[x] = 1; for(int i=po[x];i;i=edge[i].next){ int y = edge[i].y; if(y==fa)continue; //cout<<"dsa "<
<<" "<
<
>n>>m){ Clear(po); tol = 1; int x,y; rep1(i,m){ RD2(x,y); add(x,y,1); add(y,x,-1); } Clear(dfn); dep = 0; bool ok = true; rep1(x,n) if(!dfn[x]){ if(!dfs(x,0)){ ok = false; break; } } if(ok){ Clear(low); out(1,0); for(int i=2;i<=tol;i++) if(edge[i].id>0) printf("%d %d\n",edge[i].x,edge[i].y); } else puts("0"); } return 0;}

  

 

 

转载于:https://www.cnblogs.com/yejinru/p/3310015.html

你可能感兴趣的文章
[转]SQL Collation冲突解决 临时表
查看>>
[转]Gitlab-CI持续集成之Runner配置和CI脚本
查看>>
Spark&Hive结合起来
查看>>
使用Flex和java servlet上传文件
查看>>
软件工程的实践项目课程的自我目标
查看>>
POJ 1321 棋盘问题 (深搜)
查看>>
自定义TabBar
查看>>
最近戴着眼镜坐电脑前总是不自觉的眼痛就搜了下怎么保护眼睛无意中看到了这篇文章希望广大爱好编程的朋友多注意保护自己的眼睛!!...
查看>>
Eclipse快捷键大全
查看>>
Let's Chat ZOJ - 3961
查看>>
该不该主动去联系多年未联系的老同学?看完这篇文章你再回答
查看>>
业务逻辑漏洞个人经验集锦【不定时更新~】
查看>>
[Swift] Storyboard outlet and action
查看>>
[Compose] 10. Capture Side Effects in a Task
查看>>
[Javascript AST] 0. Introduction: Write a simple BabelJS plugin
查看>>
[Core Javascirpt] Basic Metaprogramming: Dynamic Method
查看>>
[Angular2 Router] Use Params from Angular 2 Routes Inside of Components
查看>>
makefile
查看>>
Spring 构造注入和Set注入复习
查看>>
python --第三方登录--微博
查看>>