用树状数组写的最长上升子序列(友好城市),nlogn。

Posted cc123321

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用树状数组写的最长上升子序列(友好城市),nlogn。相关的知识,希望对你有一定的参考价值。

#include<iostream>
#include<algorithm>
#define maxn 100000
#define lb(x) x&-x
using namespace std;
int f[maxn],n,m,k,tot;
struct st{
    int a,b;
}s[maxn];
void update(int x,int val)
{
    while(x<maxn)
    {
        f[x]=max(f[x],val);
        x+=lb(x);
    }
}
int sum(int x)
{
    int ans=0;
    while(x)
    {
        ans=max(ans,f[x]);
        x-=lb(x);
    }
    return ans;
}
bool com(st x,st y)
{
    return x.a<y.a;
}
main(){
    cin>>n;
    for(int i=1;i<=n;i++)
        cin>>s[i].a>>s[i].b;
    sort(s+1,s+1+n,com);
    for(int i=1;i<=n;i++)
    {
        k=sum(s[i].b);
        update(s[i].b,k+1);
        tot=max(tot,k+1);
    }
    cout<<tot;
}

 

以上是关于用树状数组写的最长上升子序列(友好城市),nlogn。的主要内容,如果未能解决你的问题,请参考以下文章

bzoj3173 最长上升子序列 树状数组

树状数组求LIS(最长上升子序列)

BZOJ3173: [Tjoi2013]最长上升子序列(树状数组)

bzoj5157: [Tjoi2014]上升子序列(树状数组LIS)

18.10.9 不好做的最长上升子序列(nlogn树状数组解LIS)

LIS最长上升子序列