java_ day9
2021/7/13 22:06:14
本文主要是介绍java_ day9,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
目标:Java web开发
问题:最长上升子序列
import java.util.*; public class Main{ static Scanner sc=new Scanner(System.in); static int N=100010; //写法一: static int a[]=new int[N],q[]=new int[N]; //写法二: // static int[] a=new int[N],q=new int[N]; public static void main(String args[]){ int n=sc.nextInt(); for(int i=0;i<n;i++) a[i]=sc.nextInt(); int len=0; for(int i=0;i<n;i++){ int l=0,r=len; while(l<r){//排队,最适合的在最前,实时更新 int mid=l+r+1>>1; if(q[mid]<a[i]) l=mid; else r=mid-1; } len=Math.max(len,r+1); q[r+1]=a[i]; } System.out.println(len); } }
这篇关于java_ day9的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-11cursor试用出现:Too many free trial accounts used on this machine 的解决方法
- 2025-01-11百万架构师第十四课:源码分析:Spring 源码分析:深入分析IOC那些鲜为人知的细节|JavaGuide
- 2025-01-11不得不了解的高效AI办公工具API
- 2025-01-102025 蛇年,J 人直播带货内容审核团队必备的办公软件有哪 6 款?
- 2025-01-10高效运营背后的支柱:文档管理优化指南
- 2025-01-10年末压力山大?试试优化你的文档管理
- 2025-01-10跨部门协作中的进度追踪重要性解析
- 2025-01-10总结 JavaScript 中的变体函数调用方式
- 2025-01-10HR团队如何通过数据驱动提升管理效率?6个策略
- 2025-01-10WBS实战指南:如何一步步构建高效项目管理框架?