Codeforces 490F Treeland Tour

题面在这里

直接枚举LIS的起点就好了,DFS时撤销操作,总复杂度\(O(n^2logn)\)

当然也有\(O(nlogn)\)的做法:

考虑一条路径可以在LCA处被统计

那么用线段树维护子树的LIS和LDS,线段树合并就好了

示例程序:

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
#include<cstdio>
#include<algorithm>
using namespace std;

const int maxn=6005,maxe=12005;
int n,w[maxn],ans;
int tot,son[maxe],nxt[maxe],lnk[maxn];
inline void add(int x,int y){
son[++tot]=y;nxt[tot]=lnk[x];lnk[x]=tot;
}
int que[maxn],til;
void dfs(int x,int fa){
int pos=-1,old;
if (!til||que[til]<w[x]) que[++til]=w[x];else{
pos=lower_bound(que+1,que+1+til,w[x])-que;
old=que[pos]; que[pos]=w[x];
}
ans=max(ans,til);
for (int j=lnk[x];j;j=nxt[j])
if (son[j]!=fa) dfs(son[j],x);
if (pos<0) til--;else que[pos]=old;
}
int main(){
scanf("%d",&n);
for (int i=1;i<=n;i++) scanf("%d",&w[i]);
for (int i=1,x,y;i<n;i++) scanf("%d%d",&x,&y),add(x,y),add(y,x);
for (int i=1;i<=n;i++) til=0,dfs(i,i);
printf("%d",ans);
return 0;
}