-
Notifications
You must be signed in to change notification settings - Fork 0
/
162.寻找峰值.py
76 lines (73 loc) · 1.77 KB
/
162.寻找峰值.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#
# @lc app=leetcode.cn id=162 lang=python3
#
# [162] 寻找峰值
#
# https://leetcode.cn/problems/find-peak-element/description/
#
# algorithms
# Medium (49.47%)
# Likes: 922
# Dislikes: 0
# Total Accepted: 269.2K
# Total Submissions: 544.2K
# Testcase Example: '[1,2,3,1]'
#
# 峰值元素是指其值严格大于左右相邻值的元素。
#
# 给你一个整数数组 nums,找到峰值元素并返回其索引。数组可能包含多个峰值,在这种情况下,返回 任何一个峰值 所在位置即可。
#
# 你可以假设 nums[-1] = nums[n] = -∞ 。
#
# 你必须实现时间复杂度为 O(log n) 的算法来解决此问题。
#
#
#
# 示例 1:
#
#
# 输入:nums = [1,2,3,1]
# 输出:2
# 解释:3 是峰值元素,你的函数应该返回其索引 2。
#
# 示例 2:
#
#
# 输入:nums = [1,2,1,3,5,6,4]
# 输出:1 或 5
# 解释:你的函数可以返回索引 1,其峰值元素为 2;
# 或者返回索引 5, 其峰值元素为 6。
#
#
#
#
# 提示:
#
#
# 1 <= nums.length <= 1000
# -2^31 <= nums[i] <= 2^31 - 1
# 对于所有有效的 i 都有 nums[i] != nums[i + 1]
#
#
#
# @lc code=start
class Solution:
def findPeakElement(self, nums: List[int]) -> int:
# 爬坡+二分查找 O(logN) O(1)
def get_val(i):
if i == -1 or i == len(nums):
return float('-inf')
return nums[i]
left, right = 0, len(nums) - 1
res = -1
while left <= right:
mid = (left + right) // 2
if get_val(mid-1) < get_val(mid) > get_val(mid+1):
res = mid
break
if get_val(mid) < get_val(mid+1):
left = mid + 1
else:
right = mid - 1
return res
# @lc code=end