题解 | #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);
            }
        }
}
全部评论

相关推荐

人力小鱼姐:实习经历没有什么含金量,咖啡店员迎宾这种就别写了,其他两段包装一下 想找人力相关的话,总结一下个人优势,结合校园经历里有相关性的部分,加一段自我评价
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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