結果

問題 No.2375 watasou and hibit's baseball
ユーザー kakel-sankakel-san
提出日時 2023-07-07 22:39:12
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,133 ms / 2,000 ms
コード長 2,319 bytes
コンパイル時間 4,956 ms
コンパイル使用メモリ 107,392 KB
実行使用メモリ 35,584 KB
最終ジャッジ日時 2024-07-21 18:53:42
合計ジャッジ時間 22,695 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
19,200 KB
testcase_01 AC 31 ms
18,816 KB
testcase_02 AC 31 ms
19,200 KB
testcase_03 AC 381 ms
27,264 KB
testcase_04 AC 33 ms
19,200 KB
testcase_05 AC 31 ms
19,200 KB
testcase_06 AC 668 ms
35,456 KB
testcase_07 AC 32 ms
19,200 KB
testcase_08 AC 198 ms
21,888 KB
testcase_09 AC 32 ms
18,944 KB
testcase_10 AC 33 ms
19,328 KB
testcase_11 AC 56 ms
19,840 KB
testcase_12 AC 1,114 ms
35,456 KB
testcase_13 AC 460 ms
27,520 KB
testcase_14 AC 32 ms
18,944 KB
testcase_15 AC 91 ms
20,352 KB
testcase_16 AC 46 ms
19,584 KB
testcase_17 AC 1,045 ms
35,584 KB
testcase_18 AC 32 ms
19,200 KB
testcase_19 AC 32 ms
19,200 KB
testcase_20 AC 56 ms
19,584 KB
testcase_21 AC 956 ms
35,456 KB
testcase_22 AC 31 ms
19,072 KB
testcase_23 AC 984 ms
35,328 KB
testcase_24 AC 1,052 ms
35,328 KB
testcase_25 AC 32 ms
19,200 KB
testcase_26 AC 876 ms
35,328 KB
testcase_27 AC 924 ms
35,584 KB
testcase_28 AC 796 ms
35,328 KB
testcase_29 AC 753 ms
35,328 KB
testcase_30 AC 1,015 ms
35,456 KB
testcase_31 AC 930 ms
35,456 KB
testcase_32 AC 931 ms
35,584 KB
testcase_33 AC 930 ms
35,456 KB
testcase_34 AC 822 ms
35,584 KB
testcase_35 AC 748 ms
35,456 KB
testcase_36 AC 734 ms
35,456 KB
testcase_37 AC 1,133 ms
35,456 KB
testcase_38 AC 668 ms
35,456 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

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, a, b) = (c[0], c[1], c[2]);
        var map = NArr(n);
        var bitmax = 1 << n;
        var infarr = Enumerable.Repeat(int.MinValue, n * n).ToArray();
        var dp = new int[bitmax][];
        for (var i = 0; i < dp.Length; ++i) dp[i] = (int[]) infarr.Clone();
        dp[0][0] = 0;
        for (var bit = 0; bit < bitmax; ++bit)
        {
            var pc = PopCount(bit);
            for (var i = 0; i < dp[bit].Length; ++i)
            {
                var p1 = i % n;
                var p2 = i / n;
                if ((pc == 1 && (bit & (1 << p1)) == 0)
                    || (pc == 2 && ((bit & (1 << p1)) == 0 || (bit & (1 << p2)) == 0))) continue;
                for (var next = 0; next < n; ++next)
                {
                    if ((bit & (1 << next)) != 0) continue;
                    if (pc == 0
                        || (pc == 1 && a <= Dist(map, p1, next))
                        || (pc >= 1 && b <= Speed(map, p1, next))
                        || (pc >= 2 && a <= Dist(map, p1, next) + Dist(map, p2, next)))
                    {
                        dp[bit | (1 << next)][p1 * n + next] = Math.Max(dp[bit | (1 << next)][p1 * n + next], dp[bit][i] + 1);
                    }
                }
            }
        }
        var ans = 0;
        foreach (var di in dp) ans = Math.Max(ans, di.Max());
        WriteLine(ans);
    }
    static int Dist(int[][] map, int i, int j)
    {
        return Math.Abs(map[i][0] - map[j][0]) + Math.Abs(map[i][1] - map[j][1]);
    }
    static int Speed(int[][] map, int i, int j)
    {
        return Math.Abs(map[i][2] - map[j][2]);
    }
    static int PopCount(int n)
    {
        var ans = 0;
        while (n > 0)
        {
            ans += n % 2;
            n >>= 1;
        }
        return ans;
    }
}
0