码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2018-06-28 14:02:13      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:note   val   nts   require   out   return   element   数组   most   

 

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 有界限最大值的子数组数量

标签:note   val   nts   require   out   return   element   数组   most   

原文地址:https://www.cnblogs.com/grandyang/p/9237967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!