[ CodeVS衝杯之路 ] P3955

  不充錢,你怎麼AC?html

  題目:http://codevs.cn/problem/3955/
ios

 

  最長上升子序列的增強版,n 有1000000,n 方的 DP 確定會 TLE,那麼用二分棧維護spa

  二分棧我講很差啊,交給他吧code

  http://www.cnblogs.com/Booble/archive/2010/11/27/1889482.htmlhtm

 1 #include<cstdio>
 2 #include<cstdlib>
 3 #include<cstring>
 4 #include<cmath>
 5 #include<iostream>
 6 #include<algorithm>
 7 using namespace std;
 8 
 9 const int N=1000001;
10 int a[N];
11 inline int find(int x,int l,int r)
12 {
13     if (l>=r) return l;
14     int mid=(l+r)>>1;
15     return a[mid]>=x?find(x,l,mid):find(x,mid+1,r);
16 }
17 int main()
18 {
19     int n,m=0,x;
20     scanf("%d",&n);
21     while (n--)
22     {
23         scanf("%d",&x);
24         a[x>a[m]?++m:find(x,1,m)]=x;
25     }
26     printf("%d\n",m);
27     return 0;
28 }
相關文章
相關標籤/搜索