javascript - Use js to implement red envelope distribution problem
滿天的星座
滿天的星座 2017-07-05 10:37:39
0
3
788

100 yuan is given to 10 people in red envelopes. The size of the red envelope is random and everyone can get a red envelope

滿天的星座
滿天的星座

reply all(3)
学霸
rpAmount = 100
ppCount = 10
rpResult=[]
rpRnds = []
rpRndSum = 0
for(let i=0;i<ppCount;i++){let rnd = Math.random();rpRndSum+=rnd;rpRnds.push(rnd);}
rpRnds.forEach((rnd)=>{rpResult.push(rpAmount*rnd/rpRndSum)})
console.log('rpResult',{rpResult,sum:rpResult.reduce((acc,val)=>{return acc+val})})

Core idea:
The weight is directly determined by the random number, not the amount.

世界只因有你

You can take a look at this
/q/10...

曾经蜡笔没有小新

Idea: Use the random function to randomly allocate each time. The red envelope value obtained each time is greater than 0.01 and less than the remaining amount - the remaining number of people * 0.01. The last person can get all the remaining money

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!