結果

問題 No.574 正多面体サイコロ
ユーザー ococonomy1ococonomy1
提出日時 2024-05-14 06:31:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 1,931 bytes
コンパイル時間 1,184 ms
コンパイル使用メモリ 107,676 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-14 06:31:19
合計ジャッジ時間 2,662 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 9 ms
6,940 KB
testcase_10 AC 9 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 9 ms
6,940 KB
testcase_19 AC 3 ms
6,948 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 30 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#pragma GCC target("avx2")
//#pragma GCC optimize("O3")
//#pragma GCC optimize("unroll-loops")
#include <algorithm>
#include <bitset>
#include <cassert>
#include <cmath>
#include <complex>
#include <deque>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <tuple>
#include <vector>
using namespace std;
using ll = long long;
using pii = pair<int,int>;
using pll = pair<ll,ll>;
using pli = pair<ll,int>;
#define TEST cerr << "TEST" << endl
#define AMARI 998244353
//#define AMARI 1000000007
#define el '\n'
#define El '\n'

long double binom(int n,int k){
    long double ans = 1;
    int bunsi = n,bunbo = 1;
    for(int i = 0; i < k; i++){
        ans *= (long double)bunsi;
        ans /= (long double)bunbo;
        bunsi--; bunbo++;
    }
    return ans;
}



#define MULTI_TEST_CASE false 
void solve(void){
    int f,n,k;
    cin >> f >> n >> k;
    long double ans = 0;
    for(int i = 1; i <= f; i++){
        for(int j = 0; j < k; j++){
            for(int l = k - j; l <= n - j; l++){
                //iより大きい目がj個、iがl個ある確率
                long double p = 1;
                int temp = j;
                while(temp--)p *= (long double)(f - i) / (long double)f;
                temp = l;
                while(temp--)p *= 1 / (long double)f;
                temp = n - j - l;
                while(temp--)p *= (long double)(i - 1) / (long double)f;
                //p *= binom(n,j) * binom(n - j,l)
                p *= binom(n,j);
                p *= binom(n - j,l);
                ans += p * i;
            }
        }
    }
    cout << fixed << setprecision(15);
    cout << ans << el;
    return;
}

void calc(void){
    return;
}

signed main(void){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    calc();
    int t = 1;
    if(MULTI_TEST_CASE)cin >> t;
    while(t--){
        solve();
    }
    return 0;
}
0