杭电oj1087最长递增子序列java实现
【摘要】 1087链接 要求最长递增子序列和。代码如下:
import java.util.Scanner;
public class 杭电oj1087 { public static void main(String[] args) { Scanner sc=new Scanner(System.in); while(sc.hasNext()) { int n=sc.nex...
1087链接
要求最长递增子序列和。代码如下:
import java.util.Scanner;
public class 杭电oj1087 { public static void main(String[] args) { Scanner sc=new Scanner(System.in); while(sc.hasNext()) { int n=sc.nextInt(); if(n==0)break; int dp[]=new int[n];//以第i个元素结尾的最大子数列。(最后一个一定是a[i]的) int a[]=new int[n]; int max=0;//最大数列长度 for(int i=0;i<n;i++) { a[i]=sc.nextInt(); } dp[0]=a[0]; max=dp[0]; for(int i=1;i<n;i++) { int m=0; for(int j=0;j<i;j++) { if(a[j]<a[i]&&dp[j]>m) { m=dp[j]; } } dp[i]=m+a[i]; if(dp[i]>max) { max=dp[i]; } } System.out.println(max); } }
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
文章来源: bigsai.blog.csdn.net,作者:Big sai,版权归原作者所有,如需转载,请联系作者。
原文链接:bigsai.blog.csdn.net/article/details/79630766
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)