题解 | #Redraiment的走法#

Redraiment的走法

http://www.nowcoder.com/practice/24e6243b9f0446b081b1d6d32f2aa3aa

最长上升子序列

import java.util.*;
public class Main {
        public static void main(String[] args) {
            Scanner sc = new Scanner(System.in);
            while (sc.hasNextInt()) {
                int n = sc.nextInt();
                int[] a = new int[n];
                for (int i = 0; i <n ; i++) {
                    a[i] = sc.nextInt();
                }
                int step = 0;
                int[] dp = new int[n];
                for (int i = 0; i < n; i++) {
                    dp[i] = 1;
                    for (int j = 0; j <i; j++) {
                        if (a[j] < a[i]) {
                            dp[i] = Math.max(dp[i], dp[j] + 1);
                        }
                    }
                    step = Math.max(step, dp[i]);
                }
                System.out.println(step);
            }
        }
}
全部评论

相关推荐

酷酷我灵儿帅:这去不去和线不线下面说实话没啥关系
点赞 评论 收藏
分享
身边有人上海、深圳&nbsp;6、7k&nbsp;都去了,真就带薪上班了。
程序员小白条:木的办法, 以后越来越差,还是家附近宅着吧,毕业的人越来越多,岗位都提供不出来,经济又过了人口红利期
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务