码迷,mamicode.com
首页 > 其他好文 > 详细

1365. 有多少小于当前数字的数字

时间:2020-08-01 21:23:02      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:for   数组   著作权   int   problems   current   new   存在   授权   

给你一个数组 nums,对于其中每个元素 nums[i],请你统计数组中比它小的所有数字的数目。

换而言之,对于每个 nums[i] 你必须计算出有效的 j 的数量,其中 j 满足 j != i 且 nums[j] < nums[i] 。

以数组形式返回答案。

 

示例 1:

输入:nums = [8,1,2,2,3]
输出:[4,0,1,1,3]
解释:
对于 nums[0]=8 存在四个比它小的数字:(1,2,2 和 3)。
对于 nums[1]=1 不存在比它小的数字。
对于 nums[2]=2 存在一个比它小的数字:(1)。
对于 nums[3]=2 存在一个比它小的数字:(1)。
对于 nums[4]=3 存在三个比它小的数字:(1,2 和 2)。

示例 2:

输入:nums = [6,5,4,8]
输出:[2,1,0,3]

示例 3:

输入:nums = [7,7,7,7]
输出:[0,0,0,0]

// 桶排序
class Solution {
    public int[] smallerNumbersThanCurrent(int[] nums) {
        int[] arrays = new int[101];
        for(int num : nums) {
            arrays[num] += 1;
        }
        for(int i = 1; i < arrays.length; i++) {
            // 统计比当前数字小的有多少
            arrays[i] += arrays[i - 1];
        }
        for(int i = 0; i < nums.length; i++) {
            nums[i] = nums[i] != 0? arrays[nums[i] - 1] : 0;
        }
       
        return nums;

    }
}


// 暴力
class Solution {
    public int[] smallerNumbersThanCurrent(int[] nums) {
        int[] res = new int[nums.length];
        for(int i = 0; i < nums.length; i++) {
            for(int j = 0; j < nums.length; j++) {
                if(nums[i] > nums[j]) {
                    res[i]++;
                }
            }
        }
        return res;

    }
}

  

 

提示:

2 <= nums.length <= 500
0 <= nums[i] <= 100

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/how-many-numbers-are-smaller-than-the-current-number
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

1365. 有多少小于当前数字的数字

标签:for   数组   著作权   int   problems   current   new   存在   授权   

原文地址:https://www.cnblogs.com/PHUN19/p/13415313.html

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