查詢a,b兩點的LCA=dep[in[a]]到dep[in[b]]中,最小深度的時間戳經過的那個點
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define MAXN 100000 | |
typedef vector<int >::iterator VIT; | |
int dep[MAXN+5],in[MAXN+5]; | |
int vs[2*MAXN+5]; | |
int cnt;/*時間戳*/ | |
vector<int >G[MAXN+5]; | |
void dfs(int x,int pa){ | |
in[x]=++cnt; | |
vs[cnt]=x; | |
for(VIT i=G[x].begin();i!=G[x].end();++i){ | |
if(*i==pa)continue; | |
dep[*i]=dep[x]+1; | |
dfs(*i,x); | |
vs[++cnt]=x; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
inline int find_lca(int a,int b){ | |
if(in[a]>in[b])swap(a,b); | |
return RMQ(in[a],in[b]); | |
} |
沒有留言:
張貼留言