hdu 6197 array array array LIS
Posted 不搞事情和咸鱼有什么区别
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 6197 array array array LIS相关的知识,希望对你有一定的参考价值。
正反跑一次LIS,取最大的长度,如果长度大于n-k就满足条件。
ac代码:
#include <cstdio> #include <cstring> #include <iostream> #include <queue> #include <map> #include <stack> #include <algorithm> using namespace std; int dp[1001]; int LIS(int a[],int len) { int ret=0; memset(dp,0,sizeof(dp)); for(int i=1;i<=len;i++) { if(a[i] > dp[ret]) dp[++ret]=a[i]; else { int pos=lower_bound(dp+1,dp+ret,a[i])-dp; dp[pos]=a[i]; } } return ret; } int b[100010],c[100010]; int main() { int t; scanf("%d",&t); while(t--) { int n,k; scanf("%d %d",&n,&k); int pos=n-1; for(int i=1;i<=n;i++) { scanf("%d",&b[i]); c[pos--]=b[i]; } int mx=max(LIS(c,n),LIS(b,n)); if(n-mx<=k) cout<<"A is a magic array."<<endl; else cout<<"A is not a magic array."<<endl; } return 0; }
心情不太好,过来这么久才整理代码。 感情这个东西,比算法难多了
以上是关于hdu 6197 array array array LIS的主要内容,如果未能解决你的问题,请参考以下文章
HDU 6197 array array array 2017沈阳网络赛 LIS
HDU - 6197 array array array (最长上升子序列&最长下降子序列)
解决:Unexpected token (START_OBJECT), expected START_ARRAY: need JSON Array to contain As.WRAPPER_ARRA
解决:Unexpected token (START_OBJECT), expected START_ARRAY: need JSON Array to contain As.WRAPPER_ARRA