結果

問題 No.1413 Dynamic Sushi
ユーザー kakel-sankakel-san
提出日時 2024-07-18 22:29:37
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 370 ms / 4,000 ms
コード長 2,195 bytes
コンパイル時間 19,928 ms
コンパイル使用メモリ 167,604 KB
実行使用メモリ 193,908 KB
最終ジャッジ日時 2024-07-18 22:30:14
合計ジャッジ時間 19,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
30,720 KB
testcase_01 AC 183 ms
32,896 KB
testcase_02 AC 66 ms
31,232 KB
testcase_03 AC 66 ms
30,848 KB
testcase_04 AC 316 ms
33,152 KB
testcase_05 AC 269 ms
33,024 KB
testcase_06 AC 279 ms
33,280 KB
testcase_07 AC 298 ms
33,280 KB
testcase_08 AC 294 ms
33,152 KB
testcase_09 AC 285 ms
33,260 KB
testcase_10 AC 272 ms
32,896 KB
testcase_11 AC 291 ms
33,024 KB
testcase_12 AC 322 ms
33,408 KB
testcase_13 AC 370 ms
33,024 KB
testcase_14 AC 313 ms
33,024 KB
testcase_15 AC 321 ms
33,024 KB
testcase_16 AC 287 ms
33,280 KB
testcase_17 AC 321 ms
33,408 KB
testcase_18 AC 344 ms
33,280 KB
testcase_19 AC 285 ms
32,896 KB
testcase_20 AC 172 ms
32,896 KB
testcase_21 AC 67 ms
30,720 KB
testcase_22 AC 314 ms
32,896 KB
testcase_23 AC 357 ms
33,152 KB
testcase_24 AC 309 ms
193,908 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (96 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();
    static int[] LList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => int.Parse(ReadLine())).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, w) = (c[0], c[1]);
        var map = NArr(n);
        var bitmax = 1 << n;
        var INF = double.MaxValue / 2;
        var dp = new double[bitmax][];
        for (var i = 0; i < dp.Length; ++i) dp[i] = Enumerable.Repeat(INF, n).ToArray();
        dp[0][0] = 0;
        for (var j = 0; j < n; ++j)
        {
            dp[1 << j][j] = MoveNext(0, 0, 0, w, map[j]);
        }
        for (var b = 1; b < bitmax; ++b)
        {
            for (var i = 0; i < n; ++i)
            {
                if (((b >> i) & 1) == 0) continue;
                var pos = GetPos(dp[b][i], map[i]);
                for (var j = 0; j < n; ++j)
                {
                    if (((b >> j) & 1) != 0) continue;
                    dp[b | (1 << j)][j] = Math.Min(dp[b | (1 << j)][j], MoveNext(pos.x, pos.y, dp[b][i], w, map[j]));
                }
            }
        }
        WriteLine(dp[^1].Min().ToString("0.00000000"));
    }
    static (double x, double y) GetPos(double t, int[] s)
    {
        return (s[0] + s[2] * Math.Cos((s[3] * t + s[4]) * Math.PI / 180),
            s[1] + s[2] * Math.Sin((s[3] * t + s[4]) * Math.PI / 180));
    }
    static double MoveNext(double x, double y, double t, int w, int[] s)
    {
        var ok = 600.0 / w;
        var ng = 0.0;
        while (ok - ng > 0.0000001)
        {
            var mid = (ok + ng) / 2;
            var npos = GetPos(t + mid, s);
            if (Math.Sqrt((x - npos.x) * (x - npos.x) + (y - npos.y) * (y - npos.y)) <= w * mid) ok = mid;
            else ng = mid;
        }
        return t + ok;
    }
}
0