[leetcode] 528. Random Pick with Weight @ python

原题

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.

解法

二分搜索法. 使用itertools.accumulate()构造列表储存w的累加的和, 使用bisect.bisect_left()返回将一个随机数插入数组时的index.
以[1,3]为例, 题意要求返回的index[0, 1]的概率应该是1:3. 我们构造的列表是[1,4], 然后产生随机数[1, 2, 3, 4], 当产生1时, 返回的index为0, 其他情况返回index1. 因此返回1的概率是返回0的概率的3倍.

代码

class Solution:

    def __init__(self, w: List[int]):
        self.data = list(itertools.accumulate(w))
        

    def pickIndex(self) -> int:
        return bisect.bisect_left(self.data, random.randint(1, self.data[-1]))
        


# Your Solution object will be instantiated and called as such:
# obj = Solution(w)
# param_1 = obj.pickIndex()
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值