由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 一道面试碰到的概率题
相关主题
random(5) generate random(7)[合集] 那个Google random generate 1-7的题怎么做啊?
谁能帮我写写这道题? print all permutations of a string讨论个idea题
两道概率面试题a question about combination
请教个弱题:random generator: from 1~5 to 1~7问一道题
Permutation一问求教Careercup 150 上的一道题目
碰到不置可否的面试官怎么办?MS on-site
请教一到面试概率题,怎么算?谢谢问个关于Epic的题目:Mingo
fb面试software engineer会考到概率题么吾波第三季亏损再破记录
相关话题的讨论汇总
话题: 概率话题: g2话题: 发生器话题: generator
进入JobHunting版参与讨论
1 (共1页)
U*******L
发帖数: 94
1
面试的一道问题
给定一种概率发生器,出1的概率是p,出0的概率是1-p
如果我们需要一个概率都是1/2的概率发生器,该怎么做?
如果是1/n的,怎么做?
1/2的做出来了
1/n的做着做着就乱了
求问
h*********3
发帖数: 111
2
用给定的发生器,连续发生n次,
如果是 100...00, 输出0
如果是 010...00, 001...00, ... , 000...10,000...01, 输出1
其他情况则简单抛弃,不输出结果。
这样 0 的概率是1/n

【在 U*******L 的大作中提到】
: 面试的一道问题
: 给定一种概率发生器,出1的概率是p,出0的概率是1-p
: 如果我们需要一个概率都是1/2的概率发生器,该怎么做?
: 如果是1/n的,怎么做?
: 1/2的做出来了
: 1/n的做着做着就乱了
: 求问

U*******L
发帖数: 94
3
似乎只能用这种概率发生器来做,你这个还要判断加过滤。。。
貌似不大行?

【在 h*********3 的大作中提到】
: 用给定的发生器,连续发生n次,
: 如果是 100...00, 输出0
: 如果是 010...00, 001...00, ... , 000...10,000...01, 输出1
: 其他情况则简单抛弃,不输出结果。
: 这样 0 的概率是1/n

b**********r
发帖数: 91
4
let G2 be the 1/2 generator from the first question, that is, G2 generates
0 and 1 with the equal probability
then let n is between 2^k <= n < 2^(k+1), the new generator will produce
value from {0 to n-1} with equal probability with the following process:
(1) use G2 to generate k 0 and 1 sequence and use it as binary
representation to calculate the decimal value, denote as v,
(2) if v >= n goto (1), otherwise return v, then v is equally distributed
in {0, 1, ..., n-1}

【在 U*******L 的大作中提到】
: 面试的一道问题
: 给定一种概率发生器,出1的概率是p,出0的概率是1-p
: 如果我们需要一个概率都是1/2的概率发生器,该怎么做?
: 如果是1/n的,怎么做?
: 1/2的做出来了
: 1/n的做着做着就乱了
: 求问

U*******L
发帖数: 94
5
这个和2楼的想法一样
但是会比2楼的快一些
我刚才证明了一下,貌似如果不用过滤或者条件判断的话是没办法从一个小数算出另一
个无理数的,纯用布尔逻辑的话。所以估计只能用这种办法了
多谢

【在 b**********r 的大作中提到】
: let G2 be the 1/2 generator from the first question, that is, G2 generates
: 0 and 1 with the equal probability
: then let n is between 2^k <= n < 2^(k+1), the new generator will produce
: value from {0 to n-1} with equal probability with the following process:
: (1) use G2 to generate k 0 and 1 sequence and use it as binary
: representation to calculate the decimal value, denote as v,
: (2) if v >= n goto (1), otherwise return v, then v is equally distributed
: in {0, 1, ..., n-1}

d*******l
发帖数: 338
6
不错的想法,以前就听人说过不限制次数的话,能生成1/2就能生成1/x,哪怕x是无理
数,大概想法就是确定每个二进制位

【在 b**********r 的大作中提到】
: let G2 be the 1/2 generator from the first question, that is, G2 generates
: 0 and 1 with the equal probability
: then let n is between 2^k <= n < 2^(k+1), the new generator will produce
: value from {0 to n-1} with equal probability with the following process:
: (1) use G2 to generate k 0 and 1 sequence and use it as binary
: representation to calculate the decimal value, denote as v,
: (2) if v >= n goto (1), otherwise return v, then v is equally distributed
: in {0, 1, ..., n-1}

l******c
发帖数: 2555
7
for 1/2,
p(1-p) = (1-p)p

【在 U*******L 的大作中提到】
: 面试的一道问题
: 给定一种概率发生器,出1的概率是p,出0的概率是1-p
: 如果我们需要一个概率都是1/2的概率发生器,该怎么做?
: 如果是1/n的,怎么做?
: 1/2的做出来了
: 1/n的做着做着就乱了
: 求问

z****c
发帖数: 602
8
嗯,可以用杨辉三角的系数来提高效率。当n第一次在杨辉三角形出现的地方n*p^x*(1-
p)^y,对于所有的x个0,y个1的permutation输出对应的1~n。另外利用三角形的对称性y
个0,x个1的permutation也可输出。剩下的情况抛弃。
Z**********4
发帖数: 528
9
华工的师兄?
Z**********4
发帖数: 528
10
把两个概率发生器的输出异或 得出的结果作为输出

【在 l******c 的大作中提到】
: for 1/2,
: p(1-p) = (1-p)p

1 (共1页)
进入JobHunting版参与讨论
相关主题
吾波第三季亏损再破记录Permutation一问
一个学数学的同学PhD方向是Pi最后一位是奇数还是偶数碰到不置可否的面试官怎么办?
一道题:Vertical Sticks请教一到面试概率题,怎么算?谢谢
请教大家个问题fb面试software engineer会考到概率题么
random(5) generate random(7)[合集] 那个Google random generate 1-7的题怎么做啊?
谁能帮我写写这道题? print all permutations of a string讨论个idea题
两道概率面试题a question about combination
请教个弱题:random generator: from 1~5 to 1~7问一道题
相关话题的讨论汇总
话题: 概率话题: g2话题: 发生器话题: generator