1046: [HAOI2007]上升序列 Time Limit: 10 Sec Memory Limit: 162 MB Submit: 5376 Solved: 1862 [Submit][Status][Discuss] Description 对于一个给定的S={a1,a2,a3,…,an},若有P={ax1,ax2,ax3,…,axm},满足(x1 < x2 < … < xm)且( ax1 < ax 2 < … < axm)。那么就称P为S的一个上升序列。如果有多个P满足条件,那么我们想求字典序最小的那个。任务给 出S序列,给出若干询问。对于第i个询问,求出长度为Li的上升序列,如有多个,求出字典序最小的那个(即首先 x1最小,如果不唯一,再看x2最小……),如果不存在长度为Li的上升序列,则打印Impossible. Input 第一行一个N,表示序列一共有N个元素第二行N个数,为a1,a2,…,an 第三行一个M,表示询问次数。下面接M 行每行一个数L,表示要询问长度为L的上升序列。N<=10000,M<=1000 Output 对于每个询问,如果对应的序列存在,则输出,否则打印Impossible. Sample Input 6 3 4 1 2 3 6 3 6 4 5 Sample Output Impossible 1 2 3 6 Impossible
首先与处理出来f[i]表示以i为开头向后延伸的最长上升序列的长度
题目要求的是下标的字典序最小,贪心即可
从前往后枚举i,如果f[i]>剩余的长度,那么就选i,并让剩余的长度--
注意:不要多输出空格,不然会Presentation_error
1 #include <bits/stdc++.h> 2 using namespace std; 3 inline int read(){ 4 int x=0;int f=1;char ch=getchar(); 5 while(!isdigit(ch)) {if(ch=='-') f=-1;ch=getchar();} 6 while(isdigit(ch)) {x=x*10+ch-'0';ch=getchar();} 7 return x*f; 8 } 9 const int MAXN=1e6+10; 10 int f[MAXN],a[MAXN],n,maxl; 11 void init(){ 12 n=read(); 13 for(int i=1;i<=n;i++){ 14 a[i]=read(); 15 } 16 } 17 void solve(){ 18 for(int i=n;i>=1;i--){ 19 for(int j=n;j>i;j--){ 20 if(a[i]<a[j]) f[i]=max(f[i],f[j]); 21 } 22 f[i]++; 23 maxl=max(f[i],maxl); 24 } 25 int m=read(); 26 for(int i=1;i<=m;i++){ 27 int xx=read(); 28 if(xx>maxl){ 29 printf("Impossible ");continue; 30 } 31 int l=-1000; 32 for(int j=1;j<=n;j++){ 33 if(xx==0) break; 34 if(f[j]>=xx&&a[j]>l){ 35 //cout<<j<<endl; 36 printf("%d",a[j]); 37 l=a[j]; 38 if(xx!=1) printf(" "); 39 xx--; 40 } 41 } 42 cout<<endl; 43 } 44 } 45 int main(){ 46 init(); 47 solve(); 48 return 0; 49 }