結果

問題 No.301 サイコロで確率問題 (1)
ユーザー nebukuro09nebukuro09
提出日時 2017-06-15 14:36:45
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 731 ms / 1,000 ms
コード長 1,679 bytes
コンパイル時間 2,846 ms
コンパイル使用メモリ 158,432 KB
実行使用メモリ 9,980 KB
最終ジャッジ日時 2023-09-03 14:25:25
合計ジャッジ時間 5,217 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 731 ms
9,980 KB
testcase_01 AC 11 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;

int gaussianElimination(ref real[][] org_mat, ref real[] ret) {
    int N = org_mat.length.to!int;

    auto mat = new real[][](N, N+1);
    foreach (i; 0..N)
        foreach (j; 0..N+1)
            mat[i][j] = org_mat[i][j];

    foreach (i; 0..N) {
        real maxval = 0;
        int maxrow = -1;
        foreach (j; i..N)
            if (abs(mat[j][i]) > maxval)
                maxval = abs(mat[j][i]), maxrow = j;
        if (maxval == 0)
            return -1;
        swap(mat[i], mat[maxrow]);

        foreach (j; i+1..N+1)
            mat[i][j] /= mat[i][i];
        mat[i][i] = 1;

        foreach (j; 0..N) {
            if (j == i) continue;
            real mul = mat[j][i];
            foreach (k; i..N+1)
                mat[j][k] -= mul*mat[i][k];
        }
    }

    foreach (i; 0..N)
        ret[i] = mat[i][N];

    return 0;
}


void solve(int K) {
    auto mat = new real[][](K, K+1);
    foreach (i; 0..K) foreach(j; 0..K+1) mat[i][j] = 0;
    foreach (i; 0..K) {
        foreach (j; 1..7) {
            auto next = (i+j > K) ? 0 : i+j;
            mat[i][K] -= 1.0L / 6;
            if (i + j != K)
                mat[i][next] += 1.0L/6;
        }
        mat[i][i] -= 1;
    }

    auto E = new real[](K);
    gaussianElimination(mat, E);

    writefln("%.15f", E[0]);
}

void main() {
    auto T = readln.chomp.to!int;
    while (T--) {
        auto N = readln.chomp.to!long;
        if (N <= 190) solve(N.to!int);
        else writefln("%.15f", N + 5.0L / 3);
    }
}
0