結果

問題 No.1688 Veterinarian
ユーザー kakel-sankakel-san
提出日時 2024-01-01 23:11:51
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 112 ms / 3,000 ms
コード長 2,177 bytes
コンパイル時間 11,163 ms
コンパイル使用メモリ 164,920 KB
実行使用メモリ 189,824 KB
最終ジャッジ日時 2024-09-27 17:36:29
合計ジャッジ時間 9,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
30,976 KB
testcase_01 AC 99 ms
42,240 KB
testcase_02 AC 76 ms
34,800 KB
testcase_03 AC 67 ms
31,104 KB
testcase_04 AC 67 ms
31,104 KB
testcase_05 AC 67 ms
31,104 KB
testcase_06 AC 100 ms
42,240 KB
testcase_07 AC 65 ms
31,232 KB
testcase_08 AC 112 ms
41,876 KB
testcase_09 AC 111 ms
42,264 KB
testcase_10 AC 92 ms
40,832 KB
testcase_11 AC 84 ms
38,400 KB
testcase_12 AC 66 ms
31,228 KB
testcase_13 AC 85 ms
38,272 KB
testcase_14 AC 72 ms
33,520 KB
testcase_15 AC 100 ms
41,328 KB
testcase_16 AC 72 ms
189,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (123 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var p = NList;
        var (a, b, c, n) = (p[0], p[1], p[2], p[3]);
        var dp = new double[132652];
        dp[Key(a, b, c)] = 1;
        for (var i = 0; i < n; ++i)
        {
            var ndp = new double[132652];
            for (var j = 0; j < dp.Length; ++j)
            {
                if (dp[j] == 0) continue;
                var (x, y, z) = FromKey(j);
                var all = (x + y + z) * (x + y + z - 1) / 2;
                var prob = dp[j];
                if (x > 1)
                {
                    var px = dp[j] * x * (x - 1) / 2 / all;
                    prob -= px;
                    ndp[Key(x - 1, y, z)] += px;
                }
                if (y > 1)
                {
                    var py = dp[j] * y * (y - 1) / 2 / all;
                    prob -= py;
                    ndp[Key(x, y - 1, z)] += py;
                }
                if (z > 1)
                {
                    var pz = dp[j] * z * (z - 1) / 2 / all;
                    prob -= pz;
                    ndp[Key(x, y, z - 1)] += pz;
                }
                ndp[j] += prob;
            }
            dp = ndp;
        }
        var ax = 0.0;
        var ay = 0.0;
        var az = 0.0;
        for (var i = 0; i < dp.Length; ++i)
        {
            var (x, y, z) = FromKey(i);
            ax += (a - x) * dp[i];
            ay += (b - y) * dp[i];
            az += (c - z) * dp[i];
        }
        WriteLine($"{ax} {ay} {az}");
    }
    static int Key(int a, int b, int c)
    {
        return a * 2601 + b * 51 + c;
    }
    static (int a, int b, int c) FromKey(int key)
    {
        return (key / 2601, key / 51 % 51, key % 51);
    }
}
0