LeetCode #528 - Random Pick with Weight

本文介绍了一种基于权重比例的随机抽取算法实现。通过累计前缀和的方式,将权重转换为概率分布,再利用二分搜索快速定位到指定权重的元素。此方法适用于长度不超过10000的数组,每个元素的权重范围在1到10^5之间,且能高效处理最多10000次的随机抽取请求。

题目描述:

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 w. pickIndex has no arguments. Arguments are always wrapped with a list, even if there aren't any.

对w数组累积前缀和,然后随机生成一个数,利用二分搜索确定下标。

class Solution {
public:
    Solution(vector<int> w) {
        sum=vector<int>(w.size(),0);
        sum[0]=w[0];
        for(int i=0;i<w.size();i++) sum[i]=sum[i-1]+w[i];
    }
    
    int pickIndex() {
        int x=rand()%sum.back();
        int pos=upper_bound(sum.begin(),sum.end(),x)-sum.begin();
        return pos;
    }

private:
    vector<int> sum;
};

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

 

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值