528. Random Pick with Weight

195 篇文章 0 订阅
Description

Given an array w of positive integers, where w[i] describes the weight of index i, write a function pickIndex which randomly picks an index in proportion to its weight.

Note:

1 <= w.length <= 10000
1 <= w[i] <= 10^5
pickIndex will be called at most 10000 times.
Example 1:

Input:
[“Solution”,“pickIndex”]
[[[1]],[]]
Output: [null,0]
Example 2:

Input:
[“Solution”,“pickIndex”,“pickIndex”,“pickIndex”,“pickIndex”,“pickIndex”]
[[[1,3]],[],[],[],[],[]]
Output: [null,0,1,1,1,0]
Explanation of Input Syntax:

The input is two lists: the subroutines called and their arguments. Solution’s constructor has one argument, the array w. pickIndex has no arguments. Arguments are always wrapped with a list, even if there aren’t any.

Problem URL


Solution

设计一个储存数据结构,传入一个表明了index群众的数组w,要求能够根据权重随机返回对应的index。

We create a new int array which stores the sum of before weights. So get a index randomly according to weight is converted to binary search a sum value in a sorted array. Random could generate a value between 1 to sum. Find the random value in sum[] find the index would be fine.

Code
class Solution {
    int[] sum;
    Random rand;
    public Solution(int[] w) {
        this.rand = new Random();
        for (int i = 1; i < w.length; i++){
            w[i] += w[i - 1];
        }
        this.sum = w;
    }
    
    public int pickIndex() {
        int value = rand.nextInt(sum[sum.length - 1]) + 1;
        int left = 0, right = sum.length - 1;
        while (left < right){
            int mid = (left + right) / 2;
            if (sum[mid] == value){
                return mid;
            }
            else if (sum[mid] > value){
                right = mid;
            }
            else{
                left = mid + 1;
            }
        }
        return left;
    }
}

/**
 * Your Solution object will be instantiated and called as such:
 * Solution obj = new Solution(w);
 * int param_1 = obj.pickIndex();
 */

Time Complexity: O(nlogw)
Space Complexity: O(w)


Review
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值