Drop Voicing

Drop Voicing

题解:多次的Invert和多次的Drop一定是可以把某个数放在指定位置的。那么求出一个序列的最长升序子序列cnt,那么就需要执行n-(多次的Invert和多次的Drop)。因为Invert可以将第一个放在最后,那么就会有n个不同下表的序列,是一个循环。

#include
using namespace std;
typedef long long ll;
typedef pairP;
const int inf = 0x7f7f7f7f;
const int N = 1e6+10;
const ll mod = 1e9+7;
const double PI = 3.14;

int read(){
    char ch=getchar();int x=0,f=1;
    while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    while('0'<=ch&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}
int random(int n){return(ll)rand()*rand()%n;}


int a[N],b[N],c[N];

int solve(int n){
    int len = 0;
    for(int i = 1;i <= n;i++){
        if(len == 0) c[len++] = b[i];
        else if(b[i] > c[len-1]) c[len++] = b[i];
        else {
            int k = lower_bound(c,c+len,b[i])-c;
            c[k] = b[i];
        }
    }
    return len;
}
int main(){
    //srand((unsigned)time(0));
    //freopen("out.txt","w",stdout);
    //freopen("in.txt","r",stdin);
    //cout<<50*(50/2500)<

你可能感兴趣的:(牛客,线性DP)