博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVA 12167 Proving Equivalences 强连通分量
阅读量:7049 次
发布时间:2019-06-28

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

//#pragma comment(linker, "/STACK:1024000000,1024000000")#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long ll;typedef unsigned long long ull;typedef pair
pii;#define pb(a) push(a)#define INF 0x1f1f1f1f#define lson idx<<1,l,mid#define rson idx<<1|1,mid+1,r#define PI 3.1415926535898template
T min(const T& a,const T& b,const T& c) { return min(min(a,b),min(a,c));}template
T max(const T& a,const T& b,const T& c) { return max(max(a,b),max(a,c));}void debug() {#ifdef ONLINE_JUDGE#else freopen("d:\\in1.txt","r",stdin); freopen("d:\\out1.txt","w",stdout);#endif}int getch() { int ch; while((ch=getchar())!=EOF) { if(ch!=' '&&ch!='\n')return ch; } return EOF;}struct Edge{ int u,v;};const int maxn=20005;int pre[maxn],lowlink[maxn],sccno[maxn];int dfs_clock,scc_cnt;vector
g[maxn],scc[maxn];stack
s;void dfs(int u,int fa){ lowlink[u]=pre[u]=++dfs_clock; s.push(u); for(int i=0;i
View Code

 

转载于:https://www.cnblogs.com/BMan/p/3612606.html

你可能感兴趣的文章
centos7 mysql的安装
查看>>
Javascript跨浏览器的事件对象
查看>>
前端代码规范
查看>>
UITableView:下拉刷新和上拉加载更多
查看>>
CFileDialog
查看>>
centOS Python 安装2.7以上版本
查看>>
最近気になる清掃
查看>>
C语言下的简易计算器
查看>>
git 分支
查看>>
一类分治问题
查看>>
[ZJOI2017]树状数组
查看>>
Android SDK无法更新问题解决
查看>>
LeetCode – Refresh – N-Queens II
查看>>
LeetCode 639: DecodeWaysII
查看>>
Linux系统简介--LInix系统随笔(一)
查看>>
TCP接入层的负载均衡、高可用、扩展性架构
查看>>
使用Kieker(AspectJ)监控控制台程序
查看>>
C#多线程之旅(1)——介绍和基本概念
查看>>
Spring常用注解汇总
查看>>
10大最重要的Web安全风险之六--A6-安全误配置
查看>>