結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー kakel-sankakel-san
提出日時 2024-07-14 23:24:53
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 1,440 bytes
コンパイル時間 8,429 ms
コンパイル使用メモリ 167,976 KB
実行使用メモリ 184,628 KB
最終ジャッジ日時 2024-07-14 23:25:10
合計ジャッジ時間 16,465 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
30,464 KB
testcase_01 AC 59 ms
30,336 KB
testcase_02 AC 60 ms
30,208 KB
testcase_03 AC 227 ms
59,984 KB
testcase_04 AC 215 ms
60,104 KB
testcase_05 AC 220 ms
60,104 KB
testcase_06 AC 224 ms
59,984 KB
testcase_07 AC 220 ms
60,112 KB
testcase_08 AC 190 ms
60,656 KB
testcase_09 AC 115 ms
44,152 KB
testcase_10 AC 114 ms
45,184 KB
testcase_11 AC 94 ms
39,168 KB
testcase_12 AC 145 ms
52,352 KB
testcase_13 AC 185 ms
60,972 KB
testcase_14 AC 188 ms
60,640 KB
testcase_15 AC 133 ms
50,688 KB
testcase_16 AC 68 ms
32,640 KB
testcase_17 AC 67 ms
32,768 KB
testcase_18 AC 213 ms
61,012 KB
testcase_19 AC 93 ms
38,144 KB
testcase_20 AC 63 ms
31,360 KB
testcase_21 AC 129 ms
50,048 KB
testcase_22 AC 121 ms
47,616 KB
testcase_23 AC 64 ms
31,484 KB
testcase_24 AC 63 ms
31,744 KB
testcase_25 AC 62 ms
31,104 KB
testcase_26 AC 64 ms
31,616 KB
testcase_27 AC 61 ms
30,580 KB
testcase_28 AC 60 ms
30,720 KB
testcase_29 AC 65 ms
32,128 KB
testcase_30 AC 66 ms
32,256 KB
testcase_31 AC 61 ms
31,104 KB
testcase_32 AC 63 ms
31,872 KB
testcase_33 AC 103 ms
43,648 KB
testcase_34 AC 229 ms
75,520 KB
testcase_35 AC 126 ms
53,888 KB
testcase_36 AC 92 ms
36,608 KB
testcase_37 AC 211 ms
61,972 KB
testcase_38 AC 202 ms
61,756 KB
testcase_39 AC 59 ms
30,336 KB
testcase_40 AC 59 ms
30,336 KB
testcase_41 AC 60 ms
30,200 KB
testcase_42 AC 58 ms
30,080 KB
testcase_43 AC 59 ms
184,628 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();
    static int[] LList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => int.Parse(ReadLine())).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var map = NArr(n - 1);
        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] - 1].Add(edge[1] - 1);
            tree[edge[1] - 1].Add(edge[0] - 1);
        }
        DFS(0, -1, tree);
        WriteLine(ans);
    }
    static long ans = 0;
    static int DFS(int cur, int prev, List<int>[] tree)
    {
        var sum = 1;
        var list = new List<int>();
        foreach (var next in tree[cur])
        {
            if (prev == next) continue;
            list.Add(DFS(next, cur, tree));
            sum += list[^1];
        }
        list.Add(tree.Length - sum);
        foreach (var li in list)
        {
            ans += (long)li * (tree.Length - li);
        }
        ans += tree.Length;
        return sum;
    }
}
0