uva 1456

这题说的是 给了 n 个 点 然后每个点 都有 相应的概率,你要将这n个点划分成w个集合使得 下面定义的这种算法 得到的 值最小 n1 是集合一的 个数  是 集合一内的每个点的概率和, 下面是分成两个集合的 样例 前面的系数 是前wi个集合的 总个数

 = n1 + (n1 + n2) = 3(0.3 + 0.05 + 0.1) + (3 + 2)(0.3 + 0.25) = 3 x 0.45 + 5 x 0.55 = 4.1

我们知道肯定不让大概率碰上 大系数 于是我们先对他们进行排序,排完后就得到了我们想要的

然后dp[j][i] 表示 前j个数分成i个集合的 最小值

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <string.h>
using namespace std;
const int maxn=105;
double d[maxn];
double dp[maxn][maxn];
double sum[maxn];
int main()
{
    int cas;
    scanf("%d",&cas);
    while(cas--){
       int n,k;
       scanf("%d%d",&n,&k);
       double val=0;
       for(int i=1; i<=n; ++i){
            scanf("%lf",&d[i]);
            val+=d[i];
        }
       for(int i=1; i <= n; ++i)
           d[i]/=val;
       sort(d+1,d+n+1);
       for(int i=1; i<= ( n+1 ) / 2 ; ++i){
          double t =d[ i ];
          d[ i ]=d[ n - i + 1 ];
          d[ n - i + 1 ] = t;
       }
       sum[0]=0;
       for( int i=1; i<=n; ++i)
           sum[i]=sum[i-1]+d[i];
       for(int i=1;i<=n; ++i){
           dp[i][1]=sum[i]*i;
       }
       for(int i=2; i<=k; ++i)
           for(int j=i; j<=n; ++j){
                dp[j][i]=105;
                for(int e=j; e>=i; e--)
                dp[j][i]=min( dp[j][i] , (sum[j]-sum[e-1])*j+dp[e-1][i-1] );
             }
       printf("%.4lf\n",dp[n][k]);
    }
    return 0;
}

时间: 2024-10-13 13:32:26

uva 1456的相关文章

UVA 1456 六 Cellular Network

Cellular Network Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu Submit Status Practice UVA 1456 A cellular network is a radio network made up of a number of cells each served by a base station located in the cell. The base sta

uva 1456(dp)

题意:有n个数字u1,u2,u3-un,每个数字出现的概率pi = ui/(u1 + u2 + - + un),分成w组,计算期望值. 第一组样例的五个数字如下 30 5 10 30 25 分成2组 如果分成{u1, u2, u3}和{u4,u5} 期望值 = 3 * (p1 + p2 + p3) + (3 + 2) * (p4 + p5) 如果分成{u1,u4}和{u2,u3,u5} 期望值 = 2 * (p1 + p4) + (2 + 3) * (p2 + p3 + p5) 求最小的期望值.

UVA - 1456 Cellular Network

题目大意: 手机在蜂窝网络中的定位是一个基本问题.假设蜂窝网络已经得知手机处于c1, c2,-,cn这些区域中的一个,最简单的方法是同时在这些区域中寻找手机.但这样做很浪费带宽.由于蜂窝网络中可以得知手机在这不同区域中的概率,因此一个折中的方法就是把这些区域分成w组,然后依次访问.比如,已知手机可能位于5个区域中,概率分别为0.3.0.05.0.1.0.3和0.25,w=2,则一种方法是先同时访问{c1,c2,c3},再同时访问{c4,c5},访问区域数的数学期望为3*(0.3+0.05+0.1

dp题目列表

10271 - Chopsticks 10739 - String to Palindrome 10453 - Make Palindrome 10401 - Injured Queen Problem 825 - Walking on the Safe Side 10617 - Again Palindrome 10201 - Adventures in Moving - Part IV 11258 - String Partition 10564 - Paths through the Ho

UVA 562 Dividing coins --01背包的变形

01背包的变形. 先算出硬币面值的总和,然后此题变成求背包容量为V=sum/2时,能装的最多的硬币,然后将剩余的面值和它相减取一个绝对值就是最小的差值. 代码: #include <iostream> #include <cstdio> #include <cstring> #include <cmath> #include <algorithm> using namespace std; #define N 50007 int c[102],d

UVA 10341 Solve It

Problem F Solve It Input: standard input Output: standard output Time Limit: 1 second Memory Limit: 32 MB Solve the equation: p*e-x + q*sin(x) + r*cos(x) + s*tan(x) + t*x2 + u = 0 where 0 <= x <= 1. Input Input consists of multiple test cases and te

UVA 11014 - Make a Crystal(容斥原理)

UVA 11014 - Make a Crystal 题目链接 题意:给定一个NxNxN的正方体,求出最多能选几个整数点.使得随意两点PQ不会使PQO共线. 思路:利用容斥原理,设f(k)为点(x, y, z)三点都为k的倍数的点的个数(要扣掉一个原点O).那么全部点就是f(1),之后要去除掉共线的,就是扣掉f(2), f(3), f(5)..f(n).n为素数.由于这些素数中包括了合数的情况,而且这些点必定与f(1)除去这些点以外的点共线,所以扣掉.可是扣掉后会扣掉一些反复的.比方f(6)在f

[UVa] Palindromes(401)

UVA - 401 Palindromes Time Limit: 3000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu Submit Status Description A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDED

uva 401.Palindromes

题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=342 题目意思:给出一段字符串(大写字母+数字组成).判断是否为回文串 or 镜像串 or 回文镜像串 or 什么都不是.每个字母的镜像表格如下 Character Reverse Character Reverse Character Reverse A A M M Y Y B