zoukankan      html  css  js  c++  java
  • bzoj2089&2090: [Poi2010]Monotonicity

      双倍经验一眼题。。。

      f[i][1/2]表示以i结尾,当前符号应该是</>的最长上升子序列, 用BIT优化转移就好

      =的话就不用说了吧= =

    #include<iostream>
    #include<cstring>
    #include<cstdlib>
    #include<cstdio>
    #include<algorithm>
    using namespace std;
    const int maxn=500010, inf=1e9+1;
    int n, m, N, ans, ans1, ans2, ans3;
    int tree[4][maxn], a[maxn], ty[maxn], mx[maxn], b[maxn];
    char s[maxn];
    void read(int &k)
    {
        int f=1; k=0; char c=getchar();
        while(c<'0' || c>'9') c=='-' && (f=-1), c=getchar();
        while(c<='9' && c>='0') k=k*10+c-'0', c=getchar();
        k*=f;
    }
    inline int max(int a, int b){return a>b?a:b;}
    inline void add(int x, int delta, int ty){for(;x<=N;x+=x&-x) tree[ty][x]=max(tree[ty][x], delta);}
    inline int query(int x, int ty){int sum=0; for(;x;x-=x&-x) sum=max(tree[ty][x], sum); return sum;}
    inline void update(int x, int delta)
    {
        if(ty[(delta-1)%m+1]==1) add(N-a[x]+1, delta, 1);
        else if(ty[(delta-1)%m+1]==2) add(a[x], delta, 2);
        else mx[a[x]]=max(mx[a[x]], delta);
    }
    int main()
    {
        read(n); read(m);
        for(int i=1;i<=n;i++) read(a[i]), b[i]=a[i]; N=n;
        sort(b+1, b+1+n); N=unique(b+1, b+1+n)-b-1;
        for(int i=1;i<=n;i++) a[i]=lower_bound(b+1, b+1+N, a[i])-b;
        for(int i=1;i<=m;i++)
        {
            scanf("%s", s+1);
            if(s[1]=='>') ty[(i-1)%m+1]=1;
            else if(s[1]=='<') ty[(i-1)%m+1]=2;
            else ty[(i-1)%m+1]=3;
        }
        for(int i=1;i<=n;i++)
        {
            int ans1=query(N-a[i], 1)+1, ans2=query(a[i]-1, 2)+1, ans3=mx[a[i]]+1;
            ans=max(ans, max(ans1, max(ans2, ans3))); 
            update(i, ans1); update(i, ans2); update(i, ans3);
        }
        printf("%d
    ", ans);
    }
    View Code
  • 相关阅读:
    设计模式-创建型-原型模式
    设计模式-创建型-抽象工厂模式
    设计模式-创建型-工厂模式
    设计模式-创建型-单例模式
    css3技巧属性之text-overflow
    bootstrap如何自定义5等分
    LeetCode-64-最小路径和
    LeetCode-62-不同路径
    LeetCode-5-最长回文子串
    LeetCode-98-验证二叉搜索树
  • 原文地址:https://www.cnblogs.com/Sakits/p/7919754.html
Copyright © 2011-2022 走看看