LeetCode 1966. Binary Searchable Numbers in an Unsorted Array

文章目录

    • 1. 题目
    • 2. 解题

1. 题目

Consider a function that implements an algorithm similar to Binary Search.
The function has two input parameters: sequence is a sequence of integers, and target is an integer value.
The purpose of the function is to find if the target exists in the sequence.

The pseudocode of the function is as follows:

func(sequence, target)while sequence is not emptyrandomly choose an element from sequence as the pivotif pivot = target, return trueelse if pivot < target, remove pivot and all elements to its left from the sequenceelse, remove pivot and all elements to its right from the sequenceend whilereturn false

When the sequence is sorted, the function works correctly for all values.
When the sequence is not sorted, the function does not work for all values, but may still work for some values.

Given an integer array nums, representing the sequence, that contains unique numbers and may or may not be sorted, return the number of values that are guaranteed to be found using the function, for every possible pivot selection.

Example 1:
Input: nums = [7]
Output: 1
Explanation: 
Searching for value 7 is guaranteed to be found.
Since the sequence has only one element, 
7 will be chosen as the pivot. 
Because the pivot equals the target, the function will return true.Example 2:
Input: nums = [-1,5,2]
Output: 1
Explanation: 
Searching for value -1 is guaranteed to be found.
If -1 was chosen as the pivot, the function would return true.
If 5 was chosen as the pivot, 5 and 2 would be removed. 
In the next loop, the sequence would have only -1 and the function would return true.
If 2 was chosen as the pivot, 2 would be removed. In the next loop, 
the sequence would have -1 and 5. 
No matter which number was chosen as the next pivot, 
the function would find -1 and return true.Searching for value 5 is NOT guaranteed to be found.
If 2 was chosen as the pivot, -1, 5 and 2 would be removed. 
The sequence would be empty and the function would return false.Searching for value 2 is NOT guaranteed to be found.
If 5 was chosen as the pivot, 5 and 2 would be removed. 
In the next loop, the sequence would have only -1 and the function would return false.Because only -1 is guaranteed to be found, you should return 1.Constraints:
1 <= nums.length <= 10^5
-10^5 <= nums[i] <= 10^5
All the values of nums are unique.

Follow-up: If nums has duplicates, would you modify your algorithm? If so, how?

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/binary-searchable-numbers-in-an-unsorted-array
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

2. 解题

  • 如果一个数,比他所有左边的数都大,比他所有右边的数都小,那么肯定能被二分查找找到
class Solution {
public:int binarySearchableNumbers(vector<int>& nums) {int n = nums.size(), ans = 0;vector<int> lmax(n, INT_MIN), rmin(n, INT_MAX);int MAX = INT_MIN, MIN = INT_MAX;for(int i = 0; i < n; ++i){MAX = max(MAX, nums[i]);lmax[i] = MAX;}for(int i = n-1; i >= 0; --i){MIN = min(MIN, nums[i]);rmin[i] = MIN;}bool a, b;for(int i = 0; i < n; ++i){a=b=false;if((i>0 && nums[i]>lmax[i-1]) || (i==0))a = true;if((i<n-1 && nums[i]<rmin[i+1]) || (i==n-1))b = true;if(a && b)ans++;}return ans;}
};

80 ms 48 MB C++


我的CSDN博客地址 https://michael.blog.csdn.net/

长按或扫码关注我的公众号(Michael阿明),一起加油、一起学习进步!
Michael阿明

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/471832.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

12 哈希表相关类——Live555源码阅读(一)基本组件类

12 哈希表相关类——Live555源码阅读(一)基本组件类 这是Live555源码阅读的第一部分&#xff0c;包括了时间类&#xff0c;延时队列类&#xff0c;处理程序描述类&#xff0c;哈希表类这四个大类。 本文由乌合之众 lym瞎编&#xff0c;欢迎转载 http://www.cnblogs.com/oloroso…

编辑器eslint格式_vscode保存代码,自动按照eslint规范格式化代码设置

vscode保存代码&#xff0c;自动按照eslint规范格式化代码设置编辑器代码风格一致&#xff0c;是前端代码规范的一部分。同一个项目&#xff0c;或者同一个小组&#xff0c;保持代码风格一致很必要。就拿vue项目来说&#xff0c;之前做的几个项目&#xff0c;很多小伙伴代码格式…

linux测试网络带宽极限,iperf 测试极限带宽

iperf 版本建议采用linux&#xff0c;事实上&#xff0c;windows版也很好用。带宽测试通常采用UDP模式&#xff0c;因为能测出极限带宽、时延抖动、丢包率。在进行测试时&#xff0c;首先以链路理论带宽作为数据发送速率进行测试&#xff0c;例如&#xff0c;从客户端到服务器之…

LeetCode MySQL 1571. 仓库经理

1. 题目 表: Warehouse ----------------------- | Column Name | Type | ----------------------- | name | varchar | | product_id | int | | units | int | -----------------------(name, product_id) 是该表主键. 该表的行包含了每个仓库…

将方法作为方法的参数 —— 理解委托

《.NET开发之美》上对于委托写到&#xff1a;“它们就像是一道槛儿&#xff0c;过了这个槛的人&#xff0c;觉得真是太容易了&#xff0c;而没有过去的人每次见到委托和事件就觉得心里别得慌&#xff0c;混身不自在。”我觉得这句话就像是在说我自己一样。于是我决定好好看看关…

c# 定位内存快速增长_改善C#程序,提高程序运行效率的50种方法

转自&#xff1a;http://blog.sina.com.cn/s/blog_6f7a7fb501017p8a.html一、用属性代替可访问的字段1、.NET数据绑定只支持数据绑定&#xff0c;使用属性可以获得数据绑定的好处&#xff1b;2、在属性的get和set访问器重可使用lock添加多线程的支持。二、readonly(运行时常量)…

LeetCode MySQL 1581. 进店却未进行过交易的顾客

1. 题目 表&#xff1a;Visits ---------------------- | Column Name | Type | ---------------------- | visit_id | int | | customer_id | int | ----------------------visit_id 是该表的主键。 该表包含有关光临过购物中心的顾客的信息。 表&#xff1a…

linux中top工具,Linux命令工具 top详解

Linux命令工具 top详解top命令是Linux下常用的性能分析工具&#xff0c;能够实时显示系统中各个进程的资源占用状况&#xff0c;类似于Windows的任务管理器。top是一个动态显示过程,即可以通过用户按键来不断刷新当前状态.如果在前台执行该命令,它将独占前台,直到用户终止该程序…

oracle rds 运维服务_RDS oracle数据库运维方案

{"moduleinfo":{"card_count":[{"count_phone":1,"count":1}],"search_count":[{"count_phone":4,"count":4}]},"card":[{"des":"阿里云数据库专家保驾护航&#xff0c;为用户…

unix架构

UNIX Kernel&#xff08;UNIX内核&#xff09;&#xff1a;指挥机器的运行&#xff0c;控制计算机的资源 UNIX Shell(UNIX外壳&#xff09;&#xff1a;是UNIX内核和用户的接口&#xff0c;是UNXI的命令解释器。目前常用的Shell有3种Bourne Shell(B Shell): 命令sh。最老。Korn…

randn函数加噪声_语义分割中常用的损失函数1(基础篇)

一、L1、L2 loss (分割中不常用&#xff0c;主要用于回归问题)L1 LossL1 Loss 主要用来计算 input x 和 target y 的逐元素间差值的平均绝对值.pytorch表示为&#xff1a;torch.nn.functional.l1_loss(input, target, size_averageTrue)size_average主要是考虑到minibatch的情况…

LeetCode MySQL 1607. 没有卖出的卖家

文章目录1. 题目2. 解题1. 题目 表: Customer ------------------------ | Column Name | Type | ------------------------ | customer_id | int | | customer_name | varchar | ------------------------customer_id 是该表主键. 该表的每行包含网上商城的每一位…

linux串口数据异常,linux串口知识深入--收到数据异常问题处理

对于串口并不陌生&#xff0c;使用了N遍&#xff0c;总以为理解很深刻&#xff0c;实际上还有很多细节未知。近期在处理新的板子发现串口收发很不正常&#xff0c;经常少一些数据、莫名其妙数据被串改了&#xff0c;导致校验通不过&#xff0c;现象很诡异例如存在以下几种现象&…

iOS经典面试题

前言 写这篇文章的目的是因为前两天同学想应聘iOS开发&#xff0c;从网上找了iOS面试题和答案让我帮忙看看。我扫了一眼&#xff0c;倒吸了一口冷气&#xff0c;仔细一看&#xff0c;气的发抖。整篇题目30多个没有一个答案是对的&#xff0c;总结这篇面试题的作者对iOS机制根本…

linux常用命令 打开文件,【Linux】常用命令 lsof查看打开的文件

Linux系统把软硬件都抽象成文件&#xff0c;所以通过文件可以追踪到很多重要信息&#xff0c;如读取的配置文件、打开的端口等。下面是常见的用法&#xff1a;默认测试文件名为text.txt1&#xff0c;显示打开text.txt的进程&#xff1a;lsof text.txt2&#xff0c;显示占用某个…

testflight怎么做版本更新_如何使用TestFlight进行App构建版本测试

在日常的开发当中&#xff0c;当一个项目在开发过程中或者完成准备上线&#xff0c;都需要我们进行真机测试&#xff0c;否则不可能开发完了就直接扔到了App&#xff0c;等上线了再下载看看&#xff0c;这都是不可能的。那么说到真机测试&#xff0c;大家肯定会想到弄一个99美刀…

LeetCode MySQL 1623. 三人国家代表队

文章目录1. 题目2. 解题1. 题目 表: SchoolA ------------------------ | Column Name | Type | ------------------------ | student_id | int | | student_name | varchar | ------------------------student_id 是表的主键 表中的每一行包含了学校A中每一个学…

LeetCode MySQL 1633. 各赛事的用户注册率

文章目录1. 题目2. 解题1. 题目 用户表&#xff1a; Users ---------------------- | Column Name | Type | ---------------------- | user_id | int | | user_name | varchar | ----------------------user_id 是该表的主键。 该表中的每行包括用户 ID 和用户…

linux如何批量导出文件格式,Linux下批量将md文件转换为html文件

要将markdown文件转换成html文件&#xff0c;可以用discount或python-markdown软件包提供的markdown工具。$ sudo apt-get install discount或$ sudo apt-get install python-markdown用discount提供的markdown工具转换&#xff1a;$ markdown -o Release-Notes.html Release-N…

python最好用的助手_推荐5款好用的Python工具

这篇文章的内容是给大家推荐了5款好用的Python工具&#xff0c;有需要的朋友可以看一看摘要&#xff1a;推荐5个酷毙的Python工具工欲善其事必先利其器&#xff0c;一个好的工具能让起到事半功倍的效果&#xff0c;Python社区提供了足够多的优秀工具来帮助开发者更方便的实现某…