标签:bool sample AC content 成本 str ace 高度 sizeof
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 53723 Accepted Submission(s): 21061
1 #include<cstdio> 2 #include<cstring> 3 using namespace std; 4 const int maxn=30006; 5 bool dp[maxn]; 6 7 int main() 8 { 9 int n; 10 while( ~scanf("%d",&n)){ 11 int top=0,ans=0,num; 12 memset( dp, false, sizeof dp); 13 for(int i=1;i<=n;i++){ 14 scanf("%d",&num); 15 if(num>=top){ 16 ans++; 17 dp[num]=true; 18 top=num; 19 } 20 else{ 21 int j; 22 for(j=num;j<=top;j++){ 23 if(dp[j]) break; 24 } 25 if(j==top){ 26 dp[top]=false; 27 dp[num]=true; 28 top=num; 29 } 30 else{ 31 dp[j]=false; 32 dp[num]=true; 33 } 34 } 35 } 36 printf("%d\n",ans); 37 } 38 return 0; 39 }
因为这道题目的是被某神放在dp里面,本菜鸡实在是没有想到dp的方法,就上网查题解看有没有人用dp去做的。
发现真的可以把导弹的每一个都存下来,然后用LIS。。。
说实话,把每个导弹的高度都存下来我就没有想。然而,确实能存。
下面的代码来自:https://blog.csdn.net/hurmishine/article/details/52926957
1 #include<cstdio> 2 const int maxn=10000; 3 int a[maxn],dp[maxn]; 4 int n; 5 6 int LIS() 7 { 8 dp[1]=1; 9 int ans=1; 10 for(int i=2;i<=n;i++){ 11 int m=0; 12 for(int j=1;j<i;j++){ 13 if(dp[j]>m&&a[j]<a[i]) 14 m=dp[j]; 15 } 16 dp[i]=m+1; 17 if(dp[i]>ans) 18 ans=dp[i]; 19 } 20 return ans; 21 } 22 23 int main() 24 { 25 while( ~scanf("%d",&n)){ 26 for(int i=1;i<=n;i++) 27 scanf("%d",&a[i]); 28 printf("%d\n",LIS()); 29 } 30 return 0; 31 }
标签:bool sample AC content 成本 str ace 高度 sizeof
原文地址:https://www.cnblogs.com/ZQUACM-875180305/p/9090234.html