結果

問題 No.2948 move move rotti
ユーザー kakel-sankakel-san
提出日時 2024-11-19 00:05:02
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 1,933 bytes
コンパイル時間 16,403 ms
コンパイル使用メモリ 167,988 KB
実行使用メモリ 67,456 KB
最終ジャッジ日時 2024-11-19 00:06:23
合計ジャッジ時間 75,199 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
33,792 KB
testcase_01 AC 60 ms
62,208 KB
testcase_02 AC 60 ms
36,096 KB
testcase_03 TLE -
testcase_04 AC 60 ms
35,824 KB
testcase_05 AC 59 ms
62,208 KB
testcase_06 AC 60 ms
33,784 KB
testcase_07 AC 61 ms
35,840 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 76 ms
35,712 KB
testcase_11 AC 60 ms
34,048 KB
testcase_12 TLE -
testcase_13 AC 61 ms
34,048 KB
testcase_14 AC 61 ms
37,280 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 2,456 ms
34,780 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 165 ms
34,032 KB
testcase_23 TLE -
testcase_24 AC 63 ms
30,576 KB
testcase_25 AC 214 ms
30,592 KB
testcase_26 AC 68 ms
30,336 KB
testcase_27 AC 57 ms
30,560 KB
testcase_28 AC 3,406 ms
31,360 KB
testcase_29 AC 59 ms
30,456 KB
testcase_30 AC 62 ms
67,456 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (102 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[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray();
    static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m, k) = (c[0], c[1], c[2]);
        var x = NMi;
        var map = NMap(m);

        var tree = new List<int>[n];
        for (var i = 0; i < n; ++i) tree[i] = new List<int>();
        foreach (var edge in map)
        {
            tree[edge[0]].Add(edge[1]);
            tree[edge[1]].Add(edge[0]);
        }

        var dic = new HashSet<int>[n][];
        for (var i = 0; i < n; ++i)
        {
            dic[i] = new HashSet<int>[n];
            for (var j = 0; j < n; ++j) dic[i][j] = new HashSet<int>();
        }
        for (var i = 0; i < k; ++i)
        {
            var visited = new bool[n];
            DFS(x[i], i, 0, tree, dic, visited);
        }
        for (var d = 0; d < n; ++d)
        {
            for (var i = 0; i < n; ++i)
            {
                if (dic[d][i].Count == k)
                {
                    WriteLine("Yes");
                    return;
                }
            }
        }
        WriteLine("No");
    }
    static void DFS(int cur, int start, int dep, List<int>[] tree, HashSet<int>[][] dic, bool[] visited)
    {
        visited[cur] = true;
        dic[dep][cur].Add(start);
        foreach (var next in tree[cur])
        {
            if (visited[next]) continue;
            DFS(next, start, dep + 1, tree, dic, visited);
        }
        visited[cur] = false;
    }
}
0