题解 1627: 蓝桥杯算法训练VIP-拦截导弹

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

优质题解

拦截导弹,贪心+二分的nlogn做法

摘要:解题思路:lower_bound( )和upper_bound( )都是利用二分查找的方法在一个排好序的数组中进行查找的。1、在从小到大的排序数组中,lower_bound( begin,end,nu……

菜鸡的题解021——拦截导弹

摘要:最长不上升子序列和最长上升子序列的典型题目!参考代码:#include<iostream> #include<cstdio> #include<algorithm> #include<strin……