結果

問題 No.2948 move move rotti
ユーザー tobisatistobisatis
提出日時 2024-10-25 21:35:15
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 2,960 bytes
コンパイル時間 19,943 ms
コンパイル使用メモリ 167,044 KB
実行使用メモリ 195,836 KB
最終ジャッジ日時 2024-10-25 21:35:48
合計ジャッジ時間 24,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
30,196 KB
testcase_01 AC 59 ms
30,592 KB
testcase_02 AC 59 ms
30,336 KB
testcase_03 AC 712 ms
34,304 KB
testcase_04 AC 62 ms
34,032 KB
testcase_05 AC 63 ms
30,208 KB
testcase_06 AC 58 ms
30,196 KB
testcase_07 AC 61 ms
33,664 KB
testcase_08 AC 702 ms
34,304 KB
testcase_09 AC 737 ms
34,816 KB
testcase_10 AC 57 ms
30,196 KB
testcase_11 WA -
testcase_12 AC 78 ms
30,848 KB
testcase_13 AC 61 ms
33,664 KB
testcase_14 AC 60 ms
33,920 KB
testcase_15 AC 220 ms
34,432 KB
testcase_16 WA -
testcase_17 AC 158 ms
34,556 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 64 ms
34,048 KB
testcase_21 AC 471 ms
34,432 KB
testcase_22 AC 62 ms
33,408 KB
testcase_23 AC 94 ms
34,048 KB
testcase_24 AC 61 ms
33,400 KB
testcase_25 AC 63 ms
33,400 KB
testcase_26 AC 59 ms
30,580 KB
testcase_27 AC 59 ms
30,208 KB
testcase_28 AC 72 ms
30,464 KB
testcase_29 AC 59 ms
30,580 KB
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (109 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 #

namespace AtCoder;

#nullable enable

using System.Numerics;

static class Extensions
{
    public static T[] Repeat<T>(this int time, Func<T> F) => Enumerable.Range(0, time).Select(_ => F()).ToArray();

    public static int ToFlag(this int i)
    {
        if (i < 0 || 31 <= i) throw new IndexOutOfRangeException();
        return 1 << i;
    }
    public static bool OfFlag(this int value, int i) => (value & ToFlag(i)) > 0;
    public static int WithFlag(this int value, int i, bool f) => f ? (value | ToFlag(i)) : (value & ~ToFlag(i));

}

class AtCoder
{
    object? Solve()
    {
        var n = Int();
        var m = Int();
        var k = Int();
        var xz = k.Repeat(() => Int() - 1);
        var edges = m.Repeat(() => (Int() - 1, Int() - 1));
        var adjz = new bool[n, n];
        foreach (var (u, v) in edges) adjz[u, v] = adjz[v, u] = true;

        var dz = new bool[n, n, n];
        for (var i = 0; i < n; i++) dz[i, i, 0] = true;
        for (var s = 0; s < n; s++)
        {
            var sf = s.ToFlag();
            var memo = new bool[n.ToFlag(), n];
            memo[sf, s] = true;
            void S(int v, int visited, int l)
            {
                for (var i = 0; i < n; i++)
                {
                    if (visited.OfFlag(i) || !adjz[s, i]) continue;
                    var nv = visited.WithFlag(i, true);
                    if (memo[nv, i]) continue;
                    memo[nv, i] = true;
                    dz[s, i, l + 1] = true;
                    S(i, nv, l + 1);
                }
            }
            S(s, sf, 0);
        }
        for (var i = 0; i < n; i++) for (var d = 0; d < n; d++)
        {
            var f = true;
            foreach (var x in xz) f &= dz[i, x, d];
            if (f) return true;
        }
        return false;
    }

    public static void Main() => new AtCoder().Run();
    public void Run()
    {
        var res = Solve();
        if (res != null)
        {
            if (res is bool yes) res = yes ? "Yes" : "No";
            sw.WriteLine(res);
        }
        sw.Flush();
    }

    string[] input = Array.Empty<string>();
    int iter = 0;
    readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false };

    string String()
    {
        while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Split(' '), 0);
        return input[iter++];
    }
    T Input<T>() where T : IParsable<T> => T.Parse(String(), null);
    int Int() => Input<int>();
    void Out(object? x, string? separator = null)
    {
        separator ??= Environment.NewLine;
        if (x is System.Collections.IEnumerable obj and not string)
        {
            var firstLine = true;
            foreach (var item in obj)
            {
                if (!firstLine) sw.Write(separator);
                firstLine = false;
                sw.Write(item);
            }
        }
        else sw.Write(x);
        sw.WriteLine();
    }
}
0