hdu 2227Find the nondecreasing subsequences(树状数组+dp+离散化)

题目链接:点击打开链接

题意描述:给定一个序列,找出其中递增子序列的数量?


解题思路:

1、dp[i]:表示以元素i结尾的子序列的数量,则d[j]=sum(d[i])+1;其中(j>=i且j的下标大于i)

2、此刻我们可以联想到树状数组,按数组下标从小到大的顺序插入元素,那么d[j]就等于sum(j)+1;

3、由于数据范围比较大,我们采用离散化处理即可


代码:

#include 
#include 
#include 
#define MOD 1000000007
using namespace std;
struct node{
    long long v;
    int pos;
    int rv;
}d[100010];
int n,rv;
bool cmp1(node a,node b){
    if(a.v==b.v)
        return a.pos0){
        ret+=C[x];
        ret%=MOD;
        x-=lowbit(x);
    }
    return (int)ret;
}
void add(int x,int v){
    while(x<=rv){
        C[x]=(C[x]+(long long)v)%MOD;
        x+=lowbit(x);
    }
}
int main(){
    while(scanf("%d",&n)==1){
        for(int i=0;i


你可能感兴趣的:(数据结构,动态规划)