Probability Random Number Generator

喜你入骨 提交于 2019-11-27 21:19:58
static Random random = new Random();

static int CheatToWin()
{
    if (random.NextDouble() < 0.9)
        return 6;

    return random.Next(1, 6);
}

Another customizable way to cheat:

static int IfYouAintCheatinYouAintTryin()
{
    List<Tuple<double, int>> iAlwaysWin = new List<Tuple<double, int>>();
    iAlwaysWin.Add(new Tuple<double, int>(0.02, 1));
    iAlwaysWin.Add(new Tuple<double, int>(0.04, 2));
    iAlwaysWin.Add(new Tuple<double, int>(0.06, 3));
    iAlwaysWin.Add(new Tuple<double, int>(0.08, 4));
    iAlwaysWin.Add(new Tuple<double, int>(0.10, 5));
    iAlwaysWin.Add(new Tuple<double, int>(1.00, 6));

    double realRoll = random.NextDouble(); // same random object as before
    foreach (var cheater in iAlwaysWin)
    {
        if (cheater.Item1 > realRoll)
            return cheater.Item2;
    }

    return 6;
}

You have a few options, but one way would be to pull a number between 1 and 100, and use your weights to assign that to a dice face number.

So

1,2 = 1
3,4 = 2
5,6 = 3
7,8 = 4
9,10 = 5
11-100 = 6

this would give you the ratios you need, and would also be fairly easy to tune later.

you can define array of distribution (pseudocode) :

//fair distribution

array = {0.1666, 0.1666, 0.1666, 0.1666, 0.1666, 0.1666 };

then roll the dice from 0 to 1, save to x then do

float sum = 0;
for (int i = 0; i < 6;i++)
{
   sum += array[i];
   if (sum > x) break;
}

i is the dice number.

now if you want to cheat change array to:

array = {0.1, 0.1, 0.1, 0.1, 0.1, 0.5 };

and you will have 50% to get 6 (instead of 16%)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!