結果

問題 No.2532 Want Play More
ユーザー kakel-sankakel-san
提出日時 2023-11-04 19:16:06
言語 C#
(.NET 8.0.404)
結果
AC  
実行時間 373 ms / 2,000 ms
コード長 1,796 bytes
コンパイル時間 15,662 ms
コンパイル使用メモリ 167,944 KB
実行使用メモリ 229,596 KB
最終ジャッジ日時 2024-09-25 22:15:52
合計ジャッジ時間 20,545 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
30,208 KB
testcase_01 AC 373 ms
66,108 KB
testcase_02 AC 351 ms
66,112 KB
testcase_03 AC 370 ms
64,992 KB
testcase_04 AC 354 ms
65,068 KB
testcase_05 AC 365 ms
65,876 KB
testcase_06 AC 306 ms
97,444 KB
testcase_07 AC 62 ms
31,360 KB
testcase_08 AC 67 ms
33,152 KB
testcase_09 AC 65 ms
32,512 KB
testcase_10 AC 197 ms
61,400 KB
testcase_11 AC 195 ms
61,296 KB
testcase_12 AC 254 ms
62,472 KB
testcase_13 AC 214 ms
61,696 KB
testcase_14 AC 109 ms
44,032 KB
testcase_15 AC 357 ms
65,976 KB
testcase_16 AC 353 ms
66,352 KB
testcase_17 AC 62 ms
32,128 KB
testcase_18 AC 232 ms
62,080 KB
testcase_19 AC 351 ms
66,540 KB
testcase_20 AC 59 ms
30,336 KB
testcase_21 AC 58 ms
30,320 KB
testcase_22 AC 55 ms
30,080 KB
testcase_23 AC 59 ms
30,336 KB
testcase_24 AC 60 ms
30,592 KB
testcase_25 AC 57 ms
30,208 KB
testcase_26 AC 58 ms
30,448 KB
testcase_27 AC 59 ms
30,336 KB
testcase_28 AC 277 ms
229,596 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (103 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[] 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 n = NN;
        var map = NMap(n - 1);
        var tree = new List<int>[n];
        for (var i = 0; i < tree.Length; ++i) tree[i] = new List<int>();
        foreach (var edge in map)
        {
            tree[edge[0]].Add(edge[1]);
            tree[edge[1]].Add(edge[0]);
        }
        var len1 = new int[n];
        var len2 = new int[n];
        DFS(-1, 0, 0, tree, len1, len2);
        WriteLine($"{len1[0]}\n{len2[0]}");
    }
    static void DFS(int prev, int cur, int dep, List<int>[] tree, int[] len1, int[] len2)
    {
        var max = 0;
        var min = int.MaxValue / 2;
        foreach (var next in tree[cur])
        {
            if (prev == next) continue;
            DFS(cur, next, dep + 1, tree, len1, len2);
            if (dep % 2 == 0)
            {
                max = Math.Max(max, len1[next] + 1);
                min = Math.Min(min, len2[next] + 1);
            }
            else
            {
                max = Math.Max(max, len2[next] + 1);
                min = Math.Min(min, len1[next] + 1);
            }
        }
        if (min == int.MaxValue / 2) min = 0;
        if (dep % 2 == 0)
        {
            len1[cur] = max;
            len2[cur] = min;
        }
        else
        {
            len1[cur] = min;
            len2[cur] = max;
        }
    }
}
0