bzoj 1669: [Usaco2006 Oct]Hungry Cows饥饿的奶牛dp+树状数组+hash

Posted lokiii

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj 1669: [Usaco2006 Oct]Hungry Cows饥饿的奶牛dp+树状数组+hash相关的知识,希望对你有一定的参考价值。

最长上升子序列。虽然数据可以直接n方但是另写了个nlogn的
转移:f[i]=max(f[j]+1)(a[j]<a[i])
O(n^2)

#include<iostream>
#include<cstdio>
using namespace std;
const int N=5005;
int n,a[N],f[N],ans;
int read()
{
    int r=0,f=1;
    char p=getchar();
    while(p>‘9‘||p<‘0‘)
    {
        if(p==‘-‘)
            f=-1;
        p=getchar();
    }
    while(p>=‘0‘&&p<=‘9‘)
    {
        r=r*10+p-48;
        p=getchar();
    }
    return r*f;
}
int main()
{
    n=read();
    for(int i=1;i<=n;i++)
        a[i]=read();
    for(int i=1;i<=n;i++)
    {
        for(int j=0;j<i;j++)
            if(a[j]<a[i]&&f[j]+1>f[i])
                f[i]=f[j]+1;
        ans=max(ans,f[i]);
    }
    printf("%d\n",ans);
    return 0;
}

O(nlogn)树状数组+hash

#include<iostream>
#include<cstdio>
#include<map>
#include<algorithm>
using namespace std;
const int N=5005;
int n,a[N],f[N],ans,g[N],t[N];
map<int,int>mp;
int read()
{
    int r=0,f=1;
    char p=getchar();
    while(p>‘9‘||p<‘0‘)
    {
        if(p==‘-‘)
            f=-1;
        p=getchar();
    }
    while(p>=‘0‘&&p<=‘9‘)
    {
        r=r*10+p-48;
        p=getchar();
    }
    return r*f;
}
inline int lb(int x)
{
    return x&(-x);
}
void update(int x,int v)
{
    for(int i=x;i<=n;i+=lb(i))
        t[i]=max(t[i],v);
}
int ques(int x)
{
    int re=0;
    for(int i=x;i>=1;i-=lb(i))
        re=max(re,t[i]);
    return re;
}
int main()
{
    n=read();
    for(int i=1;i<=n;i++)
        a[i]=g[i]=read();
    sort(g+1,g+1+n);
    for(int i=1;i<=n;i++)
        mp[g[i]]=i;
    for(int i=1;i<=n;i++)
        a[i]=mp[a[i]];
    for(int i=1;i<=n;i++)
    {
        f[i]=ques(a[i]-1)+1;
        update(a[i],f[i]);
        ans=max(ans,f[i]);
    }
    printf("%d\n",ans);
    return 0;
}

以上是关于bzoj 1669: [Usaco2006 Oct]Hungry Cows饥饿的奶牛dp+树状数组+hash的主要内容,如果未能解决你的问题,请参考以下文章

[BZOJ1668][Usaco2006 Oct]Cow Pie Treasures 馅饼里的财富

[BZOJ1666][Usaco2006 Oct]Another Cow Number Game 奶牛的数字游戏

[bzoj1670][Usaco2006 Oct]Building the Moat

BZOJ1667: [Usaco2006 Oct]Cows on Skates滑旱冰的奶牛

bzoj1670Usaco2006 OctBuilding the Moat 护城河的挖掘

bzoj1601Usaco2008 Oct灌水