##倍增法
在线算法
时间复杂度:
- 预处理:$O(N)$
- 查询:$O(log_2N)$
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
using namespace std;
int m,n,q,anc[100][32],deep[100];
int head[100],cnt;
struct mine
{
int to,next;
}edge[100];
void swap(int &a,int &b){int t=a;a=b;b=t;}
void add(int x,int y)
{
cnt++;
edge[cnt].to=y;
edge[cnt].next=head[x];
head[x]=cnt;
}
void dfs(int now,int from)
{
for(int tmp=head[now];tmp!=0;tmp=edge[tmp].next)
{
if(edge[tmp].to==from) continue;//遍历无向图时防止死循环
deep[edge[tmp].to]=deep[now]+1;
dfs(edge[tmp].to,now);
anc[edge[tmp].to][0]=now;
}
}
void ready()
{
for(int i=1;(1<<i)<=n;i++)
for(int j=1;j<=n;j++)
anc[j][i]=anc[anc[j][i-1]][i-1];
}
int getlca(int x,int y)
{
if(deep[x]<deep[y]) swap(x,y);
int maxlogn=floor(log(n)/log(2));
for(int i=maxlogn;i>=0;i--)
if(deep[x]-(1<<i)>=deep[y])
x=anc[x][i];
if(x==y) return x;
for(int i=maxlogn;i>=0;i--)
if(anc[x][i]!=anc[y][i])
{
x=anc[x][i];y=anc[y][i];
}
return anc[x][0];
}
int main()
{
freopen("lca.in", "r", stdin);
cin >> n >> m;
for (int i = 1; i <= m; i++)
{
int u, v;
cin >> u >> v;
add(u, v);
add(v, u);
}
dfs(1,1);
ready();
for (int i = 1; i <= n; i++)
for (int j = i; j <= n; j++)
cout << i << " " << j << " " << getlca(i, j) << endl;
return 0;
}
##Tarjan法
离线算法
1 |
|
##RMQ法
1 |
|