力扣315.计算右侧小于当前元素的个数

力扣315.计算右侧小于当前元素的个数

  • 离散化 + 树状数组

cpp 复制代码
  const int N = 100010;
  int tr[N],n;
  class Solution {
  public:
      vector<int> countSmaller(vector<int>& nums) {
          n = nums.size();
          vector<int> tmp(nums);
          vector<int> res(n);
          memset(tr,0,sizeof tr);
          ranges::sort(tmp);
          int l = unique(tmp.begin(),tmp.end()) - tmp.begin();
          for(int i=0;i<n;i++)
              nums[i] = lower_bound(tmp.begin(),tmp.begin()+l,nums[i]) - tmp.begin() + 1;
          for(int i=n-1;i>=0;i--)
          {
              int val = nums[i];
              cout<<val<<" ";
              res[i] = query(val - 1);
              cout<<tr[1]<<endl;
              add(val,1);
          }
          return res;
      }
      int lowbit(int x)
      {
          return x&-x;
      }
      int query(int x) {
  		int ret = 0;
  		while (x) {
  			ret += tr[x];
  			x -= lowbit(x);
  		}
  		return ret;
  	}
      void add(int x, int k) {
  		while (x < n) {
  			tr[x] += k;
  			x += lowbit(x);
  		}
  	}
  };
相关推荐
破东风2 小时前
leetcode每日一题:替换子串得到平衡字符串
算法·leetcode·滑动窗口
梭七y8 小时前
【力扣hot100题】(032)排序链表
算法·leetcode·链表
SsummerC8 小时前
【leetcode100】数组中的第K个最大元素
python·算法·leetcode
编程绿豆侠8 小时前
力扣HOT100之链表:206. 反转链表
算法·leetcode·链表
记得早睡~10 小时前
leetcode51-N皇后
javascript·算法·leetcode·typescript
luckyme_14 小时前
leetcode-代码随想录-哈希表-有效的字母异位词
算法·leetcode·散列表
luckyme_14 小时前
leetcode 代码随想录 数组-区间和
c++·算法·leetcode
jyyyx的算法博客15 小时前
Leetcode 857 -- 贪心 | 数学
算法·leetcode·贪心·嗜血
luckyme_16 小时前
leetcode-代码随想录-哈希表-哈希理论基础
leetcode·哈希算法·散列表
梭七y18 小时前
【力扣hot100题】(048)二叉树的最近公共祖先
算法·leetcode·职场和发展