Leetcode 528. Random Pick with Weight LowerBound

本文介绍了一种基于数组权重的随机采样算法实现,通过累积权重和二分查找的方法,实现了在权重比例下随机选取数组索引的功能。讨论了算法的设计思路及边界条件的处理,提供了Python代码示例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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. 1 <= w.length <= 10000
  2. 1 <= w[i] <= 10^5
  3. 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 wpickIndex has no arguments. Arguments are always wrapped with a list, even if there aren't any.

---------------------------------------------------------------------------

两个问题:

1. 很容易想到二分,但是不知道有没有O(1)的解法,去Discussion看了别人都二分,才确定

2. 二分时候想了半天,才明确边界是lower_bound,第一个插入位置,思路得加速啊

import random

class Solution:

    def __init__(self, w):
        self.wl = len(w)
        cur = 0
        self.accu = [0 for i in range(self.wl)]
        for idx, v in enumerate(w):
            cur += v
            self.accu[idx] = cur
        
    def pickIndex(self):
        l,r = 0, self.wl-1
        rdint = random.randint(1, self.accu[-1])
        while (l <= r):
            mid = l + ((r-l)>>1)
            if (rdint > self.accu[mid]):
                l = mid+1
            else:
                r = mid-1
        return l

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值