美文网首页
248. 统计比给定整数小的数的个数

248. 统计比给定整数小的数的个数

作者: 6默默Welsh | 来源:发表于2018-02-02 16:38 被阅读34次

描述

给定一个整数数组 (下标由 0 到 n-1,其中 n 表示数组的规模,数值范围由 0 到 10000),以及一个 查询列表。对于每一个查询,将会给你一个整数,请你返回该数组中小于给定整数的元素的数量。

注意事项

在做此题前,最好先完成 线段树的构造 and 线段树查询 II 这两道题目。

样例

对于数组 [1,2,7,8,5] ,查询 [1,8,5],返回 [0,4,2]

挑战

可否用一下三种方法完成以上题目。

  1. 仅用循环方法
  2. 分类搜索 和 二进制搜索
  3. 构建 线段树 和 搜索

思路

整体思路和 249. 统计前面比自己小的数的个数 相似,区别在于本题是数组中的所有小于给定数的数的个数,而另一题是求数组中在给定数前面所有小于给定数的数的个数,上一题要一边 modify 一边 query,本题可以先把所有数 modify,再 query

注意

构造线段树的时间复杂度为 O(N),查询时间复杂度为 O(logN),更新的时间复杂度为 O(logN)

代码

  1. 线段树的无需手动拆分区间写法
public class Solution {
    /*
     * @param A: An integer array
     * @param queries: The query list
     * @return: The number of element in the array that are smaller that the given integer
     */
    class SegmentTreeNode {
        public int start;
        public int end;
        public int count;
        SegmentTreeNode left;
        SegmentTreeNode right;
        public SegmentTreeNode(int start, int end, int count) {
            this.start = start;
            this.end = end;
            this.count = count;
            this.left = null;
            this.right = null;
        }
    } 
    
    public SegmentTreeNode build(int start, int end, int[] A) {
        if (start > end) {
            return null;
        }
        
        if (start == end) {
            return new SegmentTreeNode(start, end, 0);
        }
        
        SegmentTreeNode root = new SegmentTreeNode(start, end, 0);
        int mid = start + (end - start) / 2;
        root.left = build(start, mid, A);
        root.right = build(mid + 1, end, A);
        if (root.left != null) {
            root.count += root.left.count;
        }
        if (root.right != null) {
            root.count += root.right.count;
        }
        return root;
    }
    
    public int query(SegmentTreeNode root, int start, int end) {
        if (start <= root.start && root.end <= end) {
            return root.count;
        }
        
        int mid = root.start + (root.end - root.start) / 2;
        int ans = 0;
        if (start <= mid) {
            ans += query(root.left, start, end);
        }
        if (end > mid) {
            ans += query(root.right, start, end);
        }
        
        return ans;
    }
    
    public void modify(SegmentTreeNode root, int index, int value) {
        if (root.start == root.end && root.start == index) {
            root.count += value;
            // 没有 return 就会抛出空指针异常
            return;
        }
        
        int mid = root.start + (root.end - root.start) / 2;
        if (index <= mid) {
            modify(root.left, index, value);
        }
        if (index > mid) {
            modify(root.right, index, value);
        }
        root.count = root.left.count + root.right.count;
    }
    
    SegmentTreeNode root;
    public List<Integer> countOfSmallerNumber(int[] A, int[] queries) {
        root = build(0, 10000, A);
        for (int i = 0; i < A.length; i++) {
            modify(root, A[i], 1);
        }
        
        List<Integer> array = new ArrayList<>();
        int res;
        for (int i = 0; i < queries.length; i++) {
            res = 0;
            if (queries[i] > 0) {
                res = query(root, 0, queries[i] - 1);
            }
            array.add(res);
        }
        
        return array;
    }
}
  1. 线段树的手动拆分区间写法
public class Solution {
   /**
     * @param A: An integer array
     * @return: The number of element in the array that 
     *          are smaller that the given integer
     */
    class SegmentTreeNode {
        public int start, end;
        public int count;
        public SegmentTreeNode left, right;
        public SegmentTreeNode(int start, int end, int count) {
              this.start = start;
              this.end = end;
              this.count = count;
              this.left = this.right = null;
        }
    }
    SegmentTreeNode root;
    public SegmentTreeNode build(int start, int end) {
        // write your code here
        if(start > end) {  // check core case
            return null;
        }
        
        SegmentTreeNode root = new SegmentTreeNode(start, end, 0);
        
        if(start != end) {
            int mid = (start + end) / 2;
            root.left = build(start, mid);
            root.right = build(mid+1, end);
        } else {
            root.count =  0;
        }
        return root;
    }
    public int querySegmentTree(SegmentTreeNode root, int start, int end) {
        // write your code here
        if(start == root.start && root.end == end) { // 相等 
            return root.count;
        }
        
        
        int mid = (root.start + root.end)/2;
        int leftcount = 0, rightcount = 0;
        // 左子区
        if(start <= mid) {
            if( mid < end) { // 分裂 
                leftcount =  querySegmentTree(root.left, start, mid);
            } else { // 包含 
                leftcount = querySegmentTree(root.left, start, end);
            }
        }
        // 右子区
        if(mid < end) { // 分裂 3
            if(start <= mid) {
                rightcount = querySegmentTree(root.right, mid+1, end);
            } else { //  包含 
                rightcount = querySegmentTree(root.right, start, end);
            } 
        }  
        // else 就是不相交
        return leftcount + rightcount;
    }
    public void modifySegmentTree(SegmentTreeNode root, int index, int value) {
        // write your code here
        if(root.start == index && root.end == index) { // 查找到
            root.count += value;
            return;
        }
        
        // 查询
        int mid = (root.start + root.end) / 2;
        if(root.start <= index && index <=mid) {
            modifySegmentTree(root.left, index, value);
        }
        
        if(mid < index && index <= root.end) {
            modifySegmentTree(root.right, index, value);
        }
        //更新
        root.count = root.left.count + root.right.count;
    }
    public ArrayList<Integer> countOfSmallerNumber(int[] A, int[] queries) {
        // write your code here
        root = build(0, 10000);
        ArrayList<Integer> ans = new ArrayList<Integer>();
        int res;
        for(int i = 0; i < A.length; i++) {
            modifySegmentTree(root, A[i], 1);
        }
        for(int i = 0; i < queries.length; i++) {
            res = 0;
            if(queries[i] > 0)
                res = querySegmentTree(root, 0, queries[i] - 1);
            ans.add(res);
        }
        return ans;
    }
}
  1. 二分法, 时间复杂度: O((N + K)*logN), N == A.length, K == queries.length,NlogN 将数组排序,然后查找 K 个数,每个数查找所需时间 logN
public class Solution {
    public List<Integer> countOfSmallerNumber(int[] A, int[] queries) {
        if (queries == null || queries.length == 0) {
            return new ArrayList<Integer>();
        }

        List<Integer> ans = new ArrayList<>(queries.length);
        int lenA = (A == null) ? 0 : A.length;

        Arrays.sort(A);
        for (int query : queries) {
            if (lenA == 0) {
                ans.add(0);
            } else {
                ans.add(binarySearch(A, query));
            }
        }

        return ans;
    }

    private int binarySearch(int[] A, int target) {
        int start = 0;
        int end = A.length - 1;

        while (start + 1 < end) {
            int mid = start + (end - start) / 2;

            if (A[mid] < target) {
                start = mid;
            } else {
                end = mid;
            }
        }

        if (target <= A[start]) {
            return start;
        }
        if (target <= A[end]) {
            return end;
        }
        return end + 1;
    }
}

相关文章

  • 248. 统计比给定整数小的数的个数

    描述 给定一个整数数组 (下标由 0 到 n-1,其中 n 表示数组的规模,数值范围由 0 到 10000),以及...

  • 从面试题中学习

    给定一个随机整数,求出其二进制数中“1”的个数

  • 【python网易】最小倍众数

    题目:给定5个正整数, 它们的最小的众倍数是指的能够被其中至少三个数整除的最小正整数。 给定5个不同的正整数, 请...

  • 两数之和(python,一重循环,字典)

    给定一组整数,还有一个目标数,在给定这组整数中找到两个数字,使其和为目标数,如找到,解是唯一的。找不到则显示 "n...

  • Two sum

    Question Analysis 给定一个整数数组,在其中找两个数,两数满足其和为一个随机的整数且这两个数不等,...

  • Leetcode.162.Find Peak Element

    题目 给定一个数组, 找到一个数比相邻的数都要大, 假设 nums[-1] = nums[n] = -∞, 输出数...

  • 贪心算法删数问题

    删数问题 给定n位正整数a,去掉其中任意k个数字后,剩下的数字按原次序排列组成一个新的正整数。对于给定的n和k,设...

  • 找出第二小的数

    求n个整数中第二小的数。相同的整数看成一个数。比如,有5个数分别是1,1,3,4,5,那么第二小的数就是3。

  • 常见位运算的面试题

    1. 不用临时变量,交换两个整数? 一个数和另一个数异或两次得到的还是原来的数 例如: 2. 统计一个整数二进制中...

  • 力扣 162 寻找峰值

    题意:给定一个数组,找出一个比相邻两个数大的数 思路:二分搜索数组 如果中间的数比后一个数大,那么e更新为m,因为...

网友评论

      本文标题:248. 统计比给定整数小的数的个数

      本文链接:https://www.haomeiwen.com/subject/wyvszxtx.html