首页 > 代码库 > ZOJ Problem Set - 3827Information Entropy
ZOJ Problem Set - 3827Information Entropy
ZOJ Problem Set - 3827Information Entropy
题目链接
题目大意:给你一个公式,然后给你n个变量x,求出这些x代入公式所得的值之和。
解题思路:普通的利用数学函数求和,只是要知道x = 0的时候,结果等于0.
代码:
#include <cstdio>
#include <cstring>
#include <cmath>
const double esp = 1e-9;
int main () {
int T, n;
double b, p;
char str[10];
scanf ("%d", &T);
while (T--) {
scanf ("%d%s", &n, str);
if (str[0] == ‘b‘)
b = 2;
else if (str[0] == ‘n‘)
b = exp(1.0);
else
b = 10;
double ans = 0;
for (int i = 0; i < n; i++) {
scanf ("%lf", &p);
if (fabs(p) > esp) {
p /= 100.0;
ans += p * log(p) / log(b);
}
}
printf ("%.12lf\n", -ans);
}
}
ZOJ Problem Set - 3827Information Entropy
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。