5
results
for 单调栈
You are given an integer array
nums
. The range of a subarray ofnums
is the difference between the largest and smallest element in the subarray.Return the sum of all subarray ranges of
nums
.A subarray is a contiguous non-empty sequence of elements within an array.
你正在参加一个多角色游戏,每个角色都有两个主要属性:攻击 和 防御 。给你一个二维整数数组
properties
,其中 \(properties[i] = [attack_i, defense_i]\) 表示游戏中第i
个角色的属性。如果存在一个其他角色的攻击和防御等级 都严格高于 该角色的攻击和防御等级,则认为该角色为 弱角色 。更正式地,如果认为角色
i
弱于 存在的另一个角色j
,那么 \(attack_j > attack_i\) 且 \(defense_j > defense_i\) 。返回 弱角色 的数量。