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

LeetCode 315. Count of Smaller Numbers After Self(线段树,树状数组)

时间:2020-03-13 20:55:32      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:离散   sort   lowbit   vector   ber   pos   cto   numbers   ++   

题目

题意:找到数组里每个元素的右边有多少个元素小于当前元素

题解:单点更新,区间查询。线段树或者树状数组都可以。注意要离散化

class Solution {
public:
    int c[100005];
    int n;
    map<int,int> m;
    vector<int> countSmaller(vector<int>& nums) {
        
        vector<int> a = nums;
        sort(a.begin(),a.end());
        for(int i=0;i<a.size();i++)
        {
            m[a[i]]=i+1;
        }
        n=nums.size();
        vector<int> ans;
        
        for(int i=n-1;i>=0;i--)
        {
            ans.push_back(sum(m[nums[i]]-1));
            update(m[nums[i]]);
        }
        
        reverse(ans.begin(),ans.end());
        return ans;
            
    }
    
    int lowbit(int x)
    {
        return x&(-x);
    }
    
    void update(int pos)
    {
        while(pos<=n)
        {
            c[pos]++;
            pos+=lowbit(pos);
        }
    }
    
    int sum(int pos)
    {
        int ans=0;
        while(pos>0)
        {
            ans+=c[pos];
            pos-=lowbit(pos);
        }
        return ans;
    }
};

LeetCode 315. Count of Smaller Numbers After Self(线段树,树状数组)

标签:离散   sort   lowbit   vector   ber   pos   cto   numbers   ++   

原文地址:https://www.cnblogs.com/dacc123/p/12488667.html

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