码迷,mamicode.com
首页 > 其他好文 > 详细

Dice (III)(掷骰子&每面至少出现1次的期望)

时间:2021-06-09 15:28:58      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:splay   src   size   none   algorithm   hid   close   str   display   

题目:https://vjudge.z180.cn/problem/LightOJ-1248#author=0

题意:掷骰子,每个面至少出现一次的投掷期望

题解:几何分布

技术图片

 

技术图片
#include <algorithm>
#include <bitset>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <deque>
#include <functional>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>
//#include <unordered_map>
//#include <unordered_set>
//#include <bits/stdc++.h>
//#define int long long
#define pb push_back
#define PII pair<int, int>
#define mpr make_pair
#define ms(a, b) memset((a), (b), sizeof(a))
#define x first
#define y second
typedef long long ll;
const int inf = 0x3f3f3f3f;
const ll INF = 0x3f3f3f3f3f3f3f3f;
const int N = 1e6 + 7;
using namespace std;

int main(int argc, char const *argv[]) {
    int T;
    int Case = 0;
    scanf("%d", &T);
    while (T--) {
        int n;
        scanf("%d", &n);
        double s=0;
        for(int i=1;i<=n;i++){
            s+=n*1.0/i;
        }
        printf("Case %d: ",++Case);
        printf("%.10lf\n",s);
    }
    return 0;
}
View Code

 

Dice (III)(掷骰子&每面至少出现1次的期望)

标签:splay   src   size   none   algorithm   hid   close   str   display   

原文地址:https://www.cnblogs.com/Are-you-ready/p/14866213.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!