CodeforcesGym 101156E Longest Increasing Subsequences LIS+树状数组

Posted ogiso-setsuna

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeforcesGym 101156E Longest Increasing Subsequences LIS+树状数组相关的知识,希望对你有一定的参考价值。

题意

给定$n$个数,求最长上升子序列的方案数


根据数据范围要求是$O(n\log n)$

朴素的dp方程式$f_i=max(f_j+1),a_i>a_j$,所以记方案数为$v_i$,则$v_i=v_i+v_j,(f_i=f_j+1)$,利用lis的$O(n\log n)$树状数组做法同时维护长度和方案数

从通酱博客里还看到更详尽的解释:stackoverflow

时间复杂度$O(n\log n)$

代码

#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> pii;
int n,m,readin;
pii f[100005];
pii query(int x) {
    pii ret=make_pair(0,1);
    while(x) {
        if(f[x].first>ret.first)ret=f[x];
        else if(f[x].first==ret.first)ret.second=(ret.second+f[x].second)%m;
        x-=x&(-x);
    }
    return ret;
}
void add(int x,pii v) {
    while(x<=n) {
        if(f[x].first<v.first)f[x]=v;
        else if(f[x].first==v.first)f[x].second=(f[x].second+v.second)%m;
        x+=x&(-x);
    }
}
int main() {
    scanf("%d%d",&n,&m);
    for(int i=1;i<=n;++i) {
        scanf("%d",&readin);
        pii t=query(readin);
        t.first++;
        add(readin,t);
    }
    printf("%d\n",query(n).second);
    return 0;
}

以上是关于CodeforcesGym 101156E Longest Increasing Subsequences LIS+树状数组的主要内容,如果未能解决你的问题,请参考以下文章

CodeforcesGym 101173B Bipartite Blanket 霍尔定理+状压DP

[acm/icpc2016ChinaFinal][CodeforcesGym101194] Mr. Panda and Fantastic Beasts

Arena

对 lon\lat 点的排序列表,从最近的开始

组 lat/lon ,如果它们出现在边界框内

具有多个参数的 pyspark udf