博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 2227(树状数组+dp)
阅读量:5030 次
发布时间:2019-06-12

本文共 1899 字,大约阅读时间需要 6 分钟。

Find the nondecreasing subsequences

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 1844    Accepted Submission(s): 677

Problem Description
How many nondecreasing subsequences can you find in the sequence S = {s1, s2, s3, ...., sn} ? For example, we assume that S = {1, 2, 3}, and you can find seven nondecreasing subsequences, {1}, {2}, {3}, {1, 2}, {1, 3}, {2, 3}, {1, 2, 3}.
 

 

Input
The input consists of multiple test cases. Each case begins with a line containing a positive integer n that is the length of the sequence S, the next line contains n integers {s1, s2, s3, ...., sn}, 1 <= n <= 100000, 0 <= si <= 2^31.
 

 

Output
For each test case, output one line containing the number of nondecreasing subsequences you can find from the sequence S, the answer should % 1000000007.
 

 

Sample Input
3 1 2 3
 

 

Sample Output
7
 
题意:找到一个字符串里面所有的不下降子序列的数量之和。
题解:设dp[i] 以a[i]结尾的非递减子串的个数,可以知道 dp[i] = sum(dp[j])+1 (1<=j<i,a[j]<a[i]),这里a[j]<a[i]我们可以直接利用求解逆序数的原理得到,利用树状数组维护整个递推式。
#include 
#include
#include
#include
#include
#include
using namespace std;typedef long long LL;const int N = 100005;const int mod = 1000000007;int n;int a[N],b[N],c[N];int lowbit(int x){ return x&(-x);}void update(int idx,int v){ for(int i=idx;i<=n;i+=lowbit(i)){ c[i]=(c[i]+v)%mod; }}int getsum(int idx){ int sum = 0; for(int i=idx;i>=1;i-=lowbit(i)){ sum = (sum+c[i])%mod; } return sum;}int main(){ while(scanf("%d",&n)!=EOF){ memset(c,0,sizeof(c)); for(int i=1;i<=n;i++){ scanf("%d",&a[i]); b[i] = a[i]; } sort(b+1,b+1+n); int ans = 0; for(int i=1;i<=n;i++){ int idx = lower_bound(b+1,b+1+n,a[i])-b; ans=getsum(idx); update(idx,ans+1); } printf("%d\n",getsum(n)); } return 0;}

 

转载于:https://www.cnblogs.com/liyinggang/p/5656485.html

你可能感兴趣的文章
hdu 1010 dfs搜索
查看>>
搭建wamp环境,数据库基础知识
查看>>
android中DatePicker和TimePicker的使用
查看>>
SpringMVC源码剖析(四)- DispatcherServlet请求转发的实现
查看>>
Android中获取应用程序(包)的大小-----PackageManager的使用(二)
查看>>
Codeforces Gym 100513M M. Variable Shadowing 暴力
查看>>
浅谈 Mybatis中的 ${ } 和 #{ }的区别
查看>>
CNN 笔记
查看>>
版本更新
查看>>
SQL 单引号转义
查看>>
start
查看>>
实现手机扫描二维码页面登录,类似web微信-第三篇,手机客户端
查看>>
PHP socket客户端长连接
查看>>
7、shell函数
查看>>
【转】Apache Jmeter发送post请求
查看>>
【凸优化】保留凸性的几个方式(交集、仿射变换、投影、线性分式变换)
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
TFS --- GrantBackup Plan Permissions Error
查看>>
傅里叶级数与积分方程
查看>>
软工作业3:用户体验分析——以“南通大学教务管理系统微信公众号”为例
查看>>