首页 > 代码库 > hdu 5087 次长升序串的长度
hdu 5087 次长升序串的长度
http://acm.hdu.edu.cn/showproblem.php?pid=5087
求数列次长升序串的长度
还是dp求最长升序串的长度,再开一个数组记录对于dp值的串的个数
最后看一下最长字符串的个数是一个的话,显然次长的是最长的长度-1,否则就是最长的那个字符串的长度
#include <cstdio> #include <cstdlib> #include <cmath> #include <cstring> #include <string> #include <queue> #include <map> #include <iostream> #include <algorithm> using namespace std; #define RD(x) scanf("%d",&x) #define RD2(x,y) scanf("%d%d",&x,&y) #define RD3(x,y,z) scanf("%d%d%d",&x,&y,&z) #define clr0(x) memset(x,0,sizeof(x)) #define clr1(x) memset(x,-1,sizeof(x)) #define eps 1e-9 const double pi = acos(-1.0); typedef long long LL; typedef unsigned long long ULL; const int modo = 1e9 + 7; const int INF = 0x3f3f3f3f; const int inf = 0x3fffffff; const LL _inf = 1e18; const int maxn = 2005,maxm = 10005; int dp[maxn],s[maxn],cnt[maxn]; int main() { int _;RD(_); int n; while(_--){ RD(n); for(int i = 1;i <= n;++i) RD(s[i]),dp[i] = cnt[i] = 1; int ans = 0,_cnt = 0; for(int i = 2;i <= n;++i){ for(int j = 1;j < i;++j){ if(s[i] > s[j]){ if(dp[i] < dp[j] + 1){ dp[i] = dp[j]+1; cnt[i] = cnt[j]; }else if(dp[i] == dp[j] + 1){ cnt[i] += cnt[j]; } } } ans = max(ans,dp[i]); } for(int i = 1;i <= n;++i) if(ans == dp[i]) _cnt += cnt[i]; printf("%d\n",ans - (_cnt == 1)); } return 0; }
hdu 5087 次长升序串的长度
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。