标签:
1 #include<iostream> 2 #include<string.h> 3 using namespace std; 4 5 int main () 6 { 7 //输入数据 8 int stNum; 9 cin>>stNum; 10 const int stLen=stNum; 11 int* stu=new int[stLen]; 12 for(int i=0;i<stLen;i++) 13 cin>>stu[i]; 14 15 //设置左侧最大数目和右侧最大数目数组 16 int* qleft=new int[stLen]; 17 int* qright=new int[stLen]; 18 memset(qleft,0,sizeof(int)*stLen); 19 memset(qright,0,sizeof(int)*stLen); 20 21 //左侧动态规划 22 for(int i=0;i<stLen;i++) 23 { 24 int left=i-1; 25 while(left>=0) 26 { 27 if(stu[left]<stu[i]) 28 { 29 if(qleft[i]<qleft[left]+1) 30 qleft[i]=qleft[left]+1; 31 } 32 --left; 33 } 34 } 35 36 //右侧动态规划 37 for(int i=stLen-1;i>=0;i--) 38 { 39 int right=i+1; 40 while(right<=stLen-1) 41 { 42 if(stu[right]<stu[i]) 43 { 44 if(qright[i]<qright[right]+1) 45 qright[i]=qright[right]+1; 46 } 47 ++right; 48 } 49 } 50 51 //合并判断最大值 52 int max=0; 53 for(int i=0;i<stLen;i++) 54 { 55 if(qright[i]+qleft[i]>max) 56 max=qright[i]+qleft[i]; 57 } 58 59 cout<<stLen-max-1; 60 61 delete[] stu; 62 delete[] qright; 63 delete[] qleft; 64 }
标签:
原文地址:http://www.cnblogs.com/lsr-flying/p/4759097.html