前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LeetCode 0327 - Count of Range Sum

LeetCode 0327 - Count of Range Sum

作者头像
Reck Zhang
发布2021-08-11 11:19:07
2030
发布2021-08-11 11:19:07
举报
文章被收录于专栏:Reck Zhang

Count of Range Sum

Desicription

Given an integer array nums, return the number of range sums that lie in [lower, upper] inclusive. Range sum S(i, j) is defined as the sum of the elements in nums between indices i and j (i ≤ j), inclusive.

Note:

A naive algorithm of O(n2) is trivial. You MUST do better than that.

Example:

代码语言:javascript
复制
Input: nums = [-2,5,-1], lower = -2, upper = 2,
Output: 3 
Explanation: The three ranges are : [0,0], [2,2], [0,2] and their respective sums are: -2, -1, 2.

Solution

代码语言:javascript
复制
class Solution {
public:
    int countRangeSum(std::vector<int>& nums, int lower, int upper) {
        auto sums = std::multiset<long long>();
        int res = 0;
        sums.insert(0);
        long long sum = 0;
        for(auto num : nums) {
            sum += num;
            res += std::distance(sums.lower_bound(sum - upper), sums.upper_bound(sum - lower));
            sums.insert(sum);
        }
        return res;
    }
};
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019-05-23,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Count of Range Sum
    • Desicription
      • Solution
      领券
      问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档