一句话题意:两个序列的LIS的长度和方案数
首先这里n方的应该是要比nlog的好的,因为还涉及到一个求方案
主要考虑下第二问, 不同的方案数应该怎么求
实际上 对于一个长为len的子序列,
它的方案数即为所有长为len-1的,且可以转移到它的子序列 (都是满足题意的)的方案数之和
这样就比较好办了,直接在原本的求LIS的转移里搞搞就行了。
那么答案就是所有长度为LIS的方案数之和了。
但是还有一个问题,这样的话根本没考虑方案是否重复。
那么怎么样把相同的去掉呢??
我们把长度相等,当前对应位上的数也相等的,定为相等,删掉前一个。
因为前一个能够满足的,当前这一位都能满足,即 能转移到前一位的 都能转移到当前位。那么把前一位清0就好了。
贴下代码
#include<bits/stdc++.h> using namespace std; inline int gi() { int x=0,w=0;char ch=0; while(!(ch>='0'&&ch<='9')) { if(ch=='-') w=1; ch=getchar(); } while(ch>='0'&&ch<='9') x=(x<<3)+(x<<1)+(ch^48),ch=getchar(); return w?-x:x; } int n,post[5001],tot[5001],maxn,times[5001]; long long ans; int main() { n=gi(); for(int i=1;i<=n;i++) { post[i]=gi(); tot[i]=1; } for(int i=1;i<=n;i++) { for(int j=1;j<i;j++) if(post[i]<post[j]) tot[i]=max(tot[i],tot[j]+1); if(tot[i]>maxn) maxn=tot[i]; for(int j=1;j<i;j++) { if(tot[i]==tot[j]&&post[i]==post[j]) times[j]=0; else if(tot[i]==tot[j]+1&&post[i]<post[j]) times[i]+=times[j]; } if(!times[i]) times[i]=1; } for(int i=1;i<=n;i++) if(tot[i]==maxn) ans+=times[i]; printf("%d %d",maxn,ans); return 0; }