[LeetCode] Number of Subarrays with Bounded Maximum 有界限最大值的子数组数量

Posted Grandyang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode] Number of Subarrays with Bounded Maximum 有界限最大值的子数组数量相关的知识,希望对你有一定的参考价值。

 

We are given an array A of positive integers, and two positive integers L and R (L <= R).

Return the number of (contiguous, non-empty) subarrays such that the value of the maximum array element in that subarray is at least L and at most R.

Example :
Input: 
A = [2, 1, 4, 3]
L = 2
R = 3
Output: 3
Explanation: There are three subarrays that meet the requirements: [2], [2, 1], [3].

Note:

  • L, R  and A[i] will be an integer in the range [0, 10^9].
  • The length of A will be in the range of [1, 50000].

 

s

 

以上是关于[LeetCode] Number of Subarrays with Bounded Maximum 有界限最大值的子数组数量的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode(191):Number of 1 Bits

[LeetCode]Number of 1 Bits

Leetcode 200. Number of Islands

LeetCode 191. Number of 1 Bits

LeetCode191 Number of 1 Bits. LeetCode231 Power of Two. LeetCode342 Power of Four

python 学习 leetcode ---number of island