- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
这只是我昨晚 sleep 时想到的一个问题:)。
如何将一个数字(我们称之为 N)分成 M 个随机部分,以便每个部分都有相同的概率是从 0 到 N 的数字。
例如:N=5,M=3
该算法应返回如下数组之一:
[0,2,3] //0 + 2 +3 =5
[1,1,3]
[0,0,5]
[3,2,0]
[2,2,1]
...etc
编程语言并不重要。
最佳答案
我刚刚订阅分享关于这个特定问题的结果。我找到了一个令我满意的解决方案,即使显然不是 100% 随机数拆分。但它符合我的需要,而且它非常占用资源。
我会为您提供方法的代码(这是一种递归方法)以及对特定部分的注释(我认为其他部分非常直截了当)。代码是用 AS3 编写的,但是语言很容易阅读:
/**
* This function splits a unique number into many numbers whose total equals to the one given as a parameter.
* The function only works for size equals to a power of 2, but I think it can be easily done for any size,
* by making as many "power of 2" calls as necessary to get a good final result.
* @param total The expected value of the sum of the resulting numbers
* @param minValue The minimum value each number can take
* @param maxValue The maximum value each number can take
* @param size The number of numbers we want to split the total into
* @param stepNum The step number of the recursive calls. Used to enhance the results of the algorithm.
* @return
*/
private function splitTotalInTwo(total:int, minValue:int, maxValue:int, size:int, stepNum:int):Vector.<int>
{
var result:Vector.<int> = new Vector.<int>();
// we determine the min and max values allowed for the random generated number so that it doesn't
// make the second group impossible to process with success
var minRand:int = Math.max(size * minValue, total - (size * maxValue));
var maxRand:int = Math.min(size * maxValue, total - (size * minValue));
// the balanceFactor is used to make the split tighter in the early stages of the recursive algorithm,
// therefore ensuring a best number distribution in the end.
// You can comment the next three lines to see the number distribution of th inital algorithm.
// You can alsocchange the balancefactor to get which results you like most.
// This var good also be passed as parameter to fine tune the algorithm a little bit more.
var balanceFactor:Number = 0.4;
var delta:int = Math.floor((maxRand - minRand) * (0.4 / stepNum));
minRand += delta;
maxRand -= delta;
var random:int = Math.floor(Math.random() * (maxRand - minRand)) + minRand;
if (size > 1)
{
result = result.concat(splitTotalInTwo(random, minValue, maxValue, size / 2, stepNum+1), splitTotalInTwo(total - random, minValue, maxValue, size / 2, stepNum+1));
}
else
{
result.push(random);
result.push(total - random);
}
return result;
}
希望这有助于...
关于algorithm - 随机部分拆分数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14583566/
直接从 Python 代码运行 pylint 时,我似乎无法获得任何返回值。从命令行运行它会生成一个漂亮的报告,在底部有一个总结分数。 我已经尝试将“Run”的返回值放入一个变量中,并获取它的“rep
我是 Python 新手,正在尝试学习单词检测。我有一个带有单词的数据框 sharina['transcript'] Out[25]: 0 thank you for calling my
http://jsfiddle.net/q8P7Y/ 我在最后显示最终分数时遇到问题,有很多方法可以做到这一点,但我不确定什么是最好的。 正如你所看到的,下一个按钮只是 div 的显示/隐藏,而不是页
我使用滑动 slider 并有计数器分数。它计数很好,但我需要计数 =(所有幻灯片 - 1)。例如,如果我有 20 张幻灯片,我想显示总数 19。有什么办法可以做到这一点吗?我使用他们网站上的常规 j
我使用滑动 slider 并有计数器分数。它计数很好,但我需要计数 =(所有幻灯片 - 1)。例如,如果我有 20 张幻灯片,我想显示总数 19。有什么办法可以做到这一点吗?我使用他们网站上的常规 j
我试图在按下按钮时添加分数,分数显示在 JTextField 中,但是当按下按钮时,分数会添加,它显示为 0。我有一个存储分数的整数字段 private int score=0; yesButton
我可以在选项(单选按钮)随机播放之前计算分数/分数,如下面的代码所示。在Collection.shuffle()之前,选项是固定的,因为 CorrectChoice将始终分配给c2单选按钮。那么我可以
我在这里的代码只能得到87%的代码,因为“带有非正参数的加法参数什么也没做。我该如何解决呢?我尝试了更多的方法,但是我什至无法解决此错误在同学的帮助下 说明是: 对于此分配,您将创建一个存储分数的类。
昨天,我尝试以一种方式执行此操作...今天我尝试另一种方式,但仍然卡住了。我必须找到一种使用整数除法和取模来做到这一点的方法。这是我的代码,后面是错误消息。 public int evaluateFr
我这里有一些特殊字符: http://209.141.56.244/test/char.php 但是当我在这里通过 ajax 抓取这个文件时,它们显示为 back ?标记: http://209.14
我得到了一张图表 G与 n顶点,标记自 1至 n (2 a_1 -> a_2 -> ... a_k -> n A然后将占据 1 的所有“子节点”节点, a_1 , ... a_x (其中 x = ce
我有一个看起来像这样的 mongodb 集合: db.scores.insert({"name": "Bob", value: 96.3, timeStamp:'2010-9-27 9:32:00'}
我试图更好地了解 lucene 如何对我的搜索进行评分,以便我可以对我的搜索配置或文档内容进行必要的调整。 以下是分数明细的一部分。 产品: 0.34472802 = queryWeight,
在我网站上用户生成的帖子下,我有一个类似亚马逊的评级系统: Was this review helpful to you: Yes | No 如果有投票,我会在该行上方显示结果,如下所示:
对于我的项目,我需要找出哪些搜索结果被视为“良好”匹配。目前,分数因查询而异,因此需要以某种方式对它们进行标准化。标准化分数将允许选择高于给定阈值的结果。 我为 Lucene 找到了几个解决方案: h
我有一个由 57 个变量组成的数据文件。由于测量水平不均匀,我想将其中的大约 12 个转换为 z 分数。我查找了互联网资源和帮助文件。一个互联网资源建议我需要 Rbasic 包(不存在)。我使用了 s
我对 SOLR 核心运行查询并使用过滤器限制结果例如 fq: {!frange l=0.7 }query($q)。我知道 SOLR 分数不有绝对意义,但是0.7(只是一个例子)是计算出来的基于用户输入
我想找到不同的方法来解决我遇到的现实生活问题:想象一下进行一场比赛或一场游戏,在此期间用户收集积分。您必须构建一个查询来显示具有最佳“n”分数的用户列表。 我举一个例子来澄清。假设这是用户表,其中包含
我有很多 wiki 页面,我想训练一个分类器,看看是否可以通过一些特征(包括段落的位置和段落的 lucene 分数)来确定重点搜索的位置。我尝试将每个段落视为一个文档,这使我能够获得每个段落的 luc
我是 R 编程新手,在使用一些基本代码时遇到问题。 我有一个包含以下列的数据框:条件(因子)、用户(因子)和灵敏度(int)。对于每个用户有 20 个敏感项。我需要为每个用户创建一个具有标准化敏感度分
我是一名优秀的程序员,十分优秀!