public function tt_add(){
$res = $this->arr_avg(,);
echo array_sum($res);
echo '----' . count($res);
dump($res);
exit;
} /***
* @param $amount '总数'
* @param $count '需要拆分数据个数'
* @return array|mixed '把总数amount拆分已标准差最小的标准,平均拆分成count个整数'
*/
public function arr_avg($amount, $count)
{
$avg_num = $amount / $count;
$ceil_num = ceil($amount / $count); if ($avg_num == $ceil_num) {
$avg_res = array_fill(, $count, (int)$ceil_num);
} else {
if ($amount < $count) {
$avg_res_1 = array_fill(, $amount, (int)$ceil_num); // 这里只会填充1
$avg_res_2 = array_fill($amount - , $count - $amount, );
$avg_res = dealed_array_merge($avg_res_1, $avg_res_2);
} else {
$floor_num = floor($amount / $count);
$avg_res = array_fill(, $count, (int)$floor_num); $left_num = $amount - array_sum($avg_res);
if ( <= $left_num) {
$left_avg_res = $this->arr_avg($left_num, $count); foreach ($left_avg_res as $k => $v){
if ($v == ){
unset($left_avg_res[$k]);
}
}
unset($v); $left_avg_res = array_values($left_avg_res);
$avg_res = $this->array_add($avg_res,$left_avg_res);
} }
} return $avg_res;
} /***
* @param $a
* @param $b
* @return mixed '2个一维数组相加,键名相同相加,不同的均保留'
*/
public function array_add($a,$b)
{
//根据键名获取两个数组的交集
$arr = array_intersect_key($a, $b); //遍历第二个数组,如果键名不存在与第一个数组,将数组元素增加到第一个数组
foreach ($b as $key => $value) {
if (!array_key_exists($key, $a)) {
$a[$key] = $value;
}
} //计算键名相同的数组元素的和,并且替换原数组中相同键名所对应的元素值
foreach ($arr as $key => $value) {
$a[$key] = $a[$key] + $b[$key];
} //返回相加后的数组
return $a;
} 例:amount:20 count:14 20----8

<pre>array(8) {
[0] =&gt; int(3)
[1] =&gt; int(3)
[2] =&gt; int(3)
[3] =&gt; int(3)
[4] =&gt; int(2)
[5] =&gt; int(2)
[6] =&gt; int(2)
[7] =&gt; int(2)
}
</pre>

例:amount: 20, count : 20

20----20

<pre>array(20) {
[0] =&gt; int(1)
[1] =&gt; int(1)
[2] =&gt; int(1)
[3] =&gt; int(1)
[4] =&gt; int(1)
[5] =&gt; int(1)
[6] =&gt; int(1)
[7] =&gt; int(1)
[8] =&gt; int(1)
[9] =&gt; int(1)
[10] =&gt; int(1)
[11] =&gt; int(1)
[12] =&gt; int(1)
[13] =&gt; int(1)
[14] =&gt; int(1)
[15] =&gt; int(1)
[16] =&gt; int(1)
[17] =&gt; int(1)
[18] =&gt; int(1)
[19] =&gt; int(1)
}
</pre>

例: amount: 20, count: 22

20----22

<pre>array(22) {
[0] =&gt; int(1)
[1] =&gt; int(1)
[2] =&gt; int(1)
[3] =&gt; int(1)
[4] =&gt; int(1)
[5] =&gt; int(1)
[6] =&gt; int(1)
[7] =&gt; int(1)
[8] =&gt; int(1)
[9] =&gt; int(1)
[10] =&gt; int(1)
[11] =&gt; int(1)
[12] =&gt; int(1)
[13] =&gt; int(1)
[14] =&gt; int(1)
[15] =&gt; int(1)
[16] =&gt; int(1)
[17] =&gt; int(1)
[18] =&gt; int(1)
[19] =&gt; int(1)
[20] =&gt; int(0)
[21] =&gt; int(0)
}
</pre>


把总数amount拆分以标准差最小的标准,平均拆分成count个整数的更多相关文章

  1. 5.数字拆分成4段,怎样使得4段的乘积最小【dp】

    题目是:给出一个数字(10,000-100,000,000),把这个数字拆分成4段,怎样使得4段的乘积最小.比如12345拆分成1*2*3*45=270, 10000=1*00*0*0=0. 解题分析 ...

  2. ch1_5_1统计最大最小元素的平均比较次数

    public class ch1_5_1统计最大最小元素的平均比较次数 { public static void main(String[] args) { // TODO Auto-generate ...

  3. 运筹学之"最大最大决策标准"和"最大最小决策标准"

    一.最大最大决策标准的解题思路就是:先比较出所有行的最大值,在最大值中选出最大值,最后这个最大是那行的就选哪个方案 二.最大最小决策标准的解题思路就是:先比较出所有行的最小值,在最小值中选出最大值,最 ...

  4. hdu4289 最小割最大流 (拆点最大流)

    最小割最大流定理:(参考刘汝佳p369)增广路算法结束时,令已标号结点(a[u]>0的结点)集合为S,其他结点集合为T=V-S,则(S,T)是图的s-t最小割. Problem Descript ...

  5. BZOJ-1877 晨跑 最小费用最大流+拆点

    其实我是不想做这种水题的QWQ,没办法,剧情需要 1877: [SDOI2009]晨跑 Time Limit: 4 Sec Memory Limit: 64 MB Submit: 1704 Solve ...

  6. BZOJ-2324 营救皮卡丘 最小费用可行流+拆下界+Floyd预处理

    准备一周多的期末,各种爆炸,回来后状态下滑巨快...调了一晚上+80%下午 2324: [ZJOI2011]营救皮卡丘 Time Limit: 10 Sec Memory Limit: 256 MB ...

  7. BZOJ-1070 修车 最小费用最大流+拆点+略坑建图

    1070: [SCOI2007]修车 Time Limit: 1 Sec Memory Limit: 162 MB Submit: 3624 Solved: 1452 [Submit][Status] ...

  8. UVa 1658 - Admiral(最小费用最大流 + 拆点)

    链接: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem& ...

  9. hdu 2098 分拆素数和(一个偶数拆分成两个不同素数和 拆法数量)

    传送门: http://acm.hdu.edu.cn/showproblem.php?pid=2098 分拆素数和 Time Limit: 1000/1000 MS (Java/Others)     ...

随机推荐

  1. 有关 Java (jackson包问题 ,MappingJacksonHttpMessageConverter 和 MappingJackson2HttpMessageConverter问题)

    今天这一系列问题吃掉我四个小时,所以现在吸收掉. 一. 整理所有错误信息: 1.错误信息:java.lang.NoClassDefFoundError: Could not initialize cl ...

  2. Longest Repeating Subsequence

    Description Given a string, find length of the longest repeating subsequence such that the two subse ...

  3. linux学习5 Linux开篇入门和基本操作

    一.完整的操作系统 1.GNU系统:表示GNU is Not Unix.表示不做商业化.制定了GPL(General Public License)即任何软件程序只要遵循GPL协议就是自由软件.还制定 ...

  4. loj #6485. LJJ 学二项式定理 单位根反演

    新学的黑科技,感觉好nb ~ #include <bits/stdc++.h> #define ll long long #define setIO(s) freopen(s". ...

  5. learning java ATW ScrollPane

    import java.awt.*; public class ScrollPaneTest { public static void main(String[] args) { var f = ne ...

  6. 【CSS】div

    一.div內容溢出 .remark-div { overflow: auto; height: auto; max-height: 100px; } 1.溢出 overflow :auto时,内容超过 ...

  7. Logstash 安装配置使用

    一.Windows下安装运行 官网下载,下载与elasticSearch同一个版本,zip格式.Logstash占用内存较大,我在使用的时候cpu一般都是冲到90% 1.CMD直接运行 创建一个基本的 ...

  8. ES单机版安装

    1.安装JDK(1.8)2.上传解压Elasticsearch-5.4.33.创建一个普通用户,然后将对于的目录修改为普通用户的所属用户和所属组4.修改配置文件config/elasticsearch ...

  9. 检测 nginx 关闭切换keepalived

    检测nginx 端口启用  关闭 keepalived  检测 nginx 进程:然后关闭 keepalived ,关闭漂移IP : cat nginx_pid.sh #!/bin/bash whil ...

  10. Day16:小前端

    回到顶部 <style type="text/css"> body { height: 8000px; } h1 { color: #000; } img { posi ...