結果

問題 No.2376 障害物競プロ
ユーザー kakel-sankakel-san
提出日時 2023-07-13 20:39:25
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 1,203 ms / 4,000 ms
コード長 3,279 bytes
コンパイル時間 15,535 ms
コンパイル使用メモリ 165,428 KB
実行使用メモリ 247,980 KB
最終ジャッジ日時 2024-09-15 06:46:45
合計ジャッジ時間 75,750 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
31,360 KB
testcase_01 AC 66 ms
31,872 KB
testcase_02 AC 67 ms
31,616 KB
testcase_03 AC 67 ms
31,104 KB
testcase_04 AC 308 ms
80,588 KB
testcase_05 AC 472 ms
84,708 KB
testcase_06 AC 240 ms
66,048 KB
testcase_07 AC 606 ms
87,052 KB
testcase_08 AC 598 ms
86,792 KB
testcase_09 AC 595 ms
86,652 KB
testcase_10 AC 588 ms
86,524 KB
testcase_11 AC 583 ms
83,440 KB
testcase_12 AC 558 ms
81,128 KB
testcase_13 AC 576 ms
86,788 KB
testcase_14 AC 630 ms
86,828 KB
testcase_15 AC 571 ms
86,156 KB
testcase_16 AC 602 ms
86,480 KB
testcase_17 AC 577 ms
81,600 KB
testcase_18 AC 558 ms
82,604 KB
testcase_19 AC 1,203 ms
82,556 KB
testcase_20 AC 1,187 ms
84,100 KB
testcase_21 AC 1,187 ms
84,104 KB
testcase_22 AC 496 ms
84,140 KB
testcase_23 AC 401 ms
74,384 KB
testcase_24 AC 288 ms
78,824 KB
testcase_25 AC 181 ms
63,360 KB
testcase_26 AC 312 ms
80,476 KB
testcase_27 AC 286 ms
80,052 KB
testcase_28 AC 268 ms
65,152 KB
testcase_29 AC 181 ms
63,616 KB
testcase_30 AC 304 ms
54,400 KB
testcase_31 AC 229 ms
66,816 KB
testcase_32 AC 102 ms
36,992 KB
testcase_33 AC 169 ms
42,240 KB
testcase_34 AC 178 ms
49,280 KB
testcase_35 AC 114 ms
44,416 KB
testcase_36 AC 432 ms
75,068 KB
testcase_37 AC 430 ms
82,124 KB
testcase_38 AC 194 ms
60,928 KB
testcase_39 AC 505 ms
82,188 KB
testcase_40 AC 275 ms
44,288 KB
testcase_41 AC 182 ms
60,928 KB
testcase_42 AC 918 ms
86,784 KB
testcase_43 AC 1,073 ms
247,980 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 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 c = NList;
        var (n, m) = (c[0], c[1]);
        var map = NArr(n);
        var query = NArr(m);

        var points = new int[n * 2][];
        for (var i = 0; i < n; ++i)
        {
            points[i * 2] = new int[] { map[i][0], map[i][1] };
            points[i * 2 + 1] = new int[] { map[i][2], map[i][3] };
        }
        var INF = double.MaxValue / 2;
        var dp = new double[n * 2][];
        for (var i = 0; i < dp.Length; ++i) dp[i] = Enumerable.Repeat(INF, n * 2).ToArray();
        for (var i = 0; i < n; ++i) for (var j = 0; j < n; ++j)
        {
            void calc(int a, int b)
            {
                var flg = true;
                for (var k = 0; k < n; ++k)
                {
                    if (a / 2 == k || b / 2 == k) continue;
                    if (Cross(points[a], points[b], points[k * 2], points[k * 2 + 1]))
                    {
                        flg = false;
                        break;
                    }
                }
                if (flg)
                {
                    dp[a][b] = Length(points[a], points[b]);
                    dp[b][a] = dp[a][b];
                }
            }
            calc(i * 2, j * 2);
            calc(i * 2, j * 2 + 1);
            calc(i * 2 + 1, j * 2);
            calc(i * 2 + 1, j * 2 + 1);
        }
        for (var k = 0; k < dp.Length; ++k) for (var i = 0; i < dp.Length; ++i) for (var j = 0; j < dp.Length; ++j)
        {
            dp[i][j] = Math.Min(dp[i][j], dp[i][k] + dp[k][j]);
        }
        var ans = new double[m];
        for (var i = 0; i < m; ++i)
        {
            ans[i] = dp[query[i][0] * 2 + query[i][1] - 3][query[i][2] * 2 + query[i][3] - 3];
        }
        WriteLine(string.Join("\n", ans));
    }
    static bool Cross(int[] a, int[] b, int[] c, int[] d)
    {
        var sa = AreaSign(c, d, a);
        var sb = AreaSign(c, d, b);
        var sc = AreaSign(a, b, c);
        var sd = AreaSign(a, b, d);
        if (sa == 0 && sb == 0 && sc == 0 && sd == 0)
        {
            return false;
        }
        return sa != sb && sc != sd;
    }
    static int AreaSign(int[] a, int[] b, int[] c)
    {
        if (a[0] == b[0])
        {
            if (c[0] == a[0]) return 0;
            else if (c[0] > a[0]) return 1;
            else return -1;
        }
        if (a[0] > b[0]) (a, b) = (b, a);
        var res = Area2(a, c) + Area2(c, b) - Area2(a, b);
        if (res == 0) return 0;
        if (res > 0) return 1;
        return -1;
    }
    static long Area2(int[] a, int[] b)
    {
        return (long)(a[1] + b[1]) * (b[0] - a[0]);
    }
    static double Length(int[] a, int[] b)
    {
        return Math.Sqrt(Math.Pow(a[0] - b[0], 2) + Math.Pow(a[1] - b[1], 2));
    }
}
0