题目链接
POJ 1330
方法:LCA最近公共祖先算法
题目分析
题目大意
前n-1行建树,询问第n行的两个点的最近公共祖先
解析
模版题。
代码
LCA->RMQ问题
1 |
|
Tarjan离线算法
1 |
|
倍增算法
1 |
|
Pursue excellence; Strive for perfection.
POJ 1330
方法:LCA最近公共祖先算法
前n-1行建树,询问第n行的两个点的最近公共祖先
模版题。
1 | #include <algorithm> |
1 | #include <algorithm> |
1 | #pragma comment(linker, "/STACK:10240000000,10240000000")///扩栈,要用c++交,用g++交并没有什么卵用。。。 |