結果

問題 No.1488 Max Score of the Tree
ユーザー kakel-sankakel-san
提出日時 2024-06-27 23:01:45
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 1,781 bytes
コンパイル時間 15,113 ms
コンパイル使用メモリ 170,272 KB
実行使用メモリ 193,680 KB
最終ジャッジ日時 2024-06-27 23:02:04
合計ジャッジ時間 19,378 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
35,840 KB
testcase_01 AC 102 ms
36,080 KB
testcase_02 AC 107 ms
35,960 KB
testcase_03 AC 106 ms
35,976 KB
testcase_04 AC 105 ms
36,104 KB
testcase_05 AC 64 ms
31,104 KB
testcase_06 AC 81 ms
35,460 KB
testcase_07 AC 91 ms
35,548 KB
testcase_08 AC 85 ms
35,668 KB
testcase_09 AC 80 ms
35,328 KB
testcase_10 AC 97 ms
46,720 KB
testcase_11 AC 107 ms
35,980 KB
testcase_12 AC 68 ms
31,872 KB
testcase_13 AC 74 ms
35,200 KB
testcase_14 AC 86 ms
35,668 KB
testcase_15 AC 80 ms
36,124 KB
testcase_16 AC 71 ms
35,452 KB
testcase_17 AC 77 ms
35,848 KB
testcase_18 AC 98 ms
47,104 KB
testcase_19 AC 88 ms
35,280 KB
testcase_20 AC 72 ms
35,712 KB
testcase_21 AC 73 ms
35,808 KB
testcase_22 AC 79 ms
35,584 KB
testcase_23 AC 63 ms
30,832 KB
testcase_24 AC 64 ms
30,848 KB
testcase_25 AC 65 ms
31,100 KB
testcase_26 AC 82 ms
40,448 KB
testcase_27 AC 70 ms
34,304 KB
testcase_28 AC 73 ms
35,072 KB
testcase_29 AC 74 ms
35,328 KB
testcase_30 AC 106 ms
49,136 KB
testcase_31 AC 109 ms
193,680 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 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();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var p = NList;
        var (n, k) = (p[0], p[1]);
        var map = NArr(n - 1);
        var tree = new List<(int id, int to)>[n];
        for (var i = 0; i < tree.Length; ++i) tree[i] = new List<(int id, int to)>();
        for (var i = 0; i < map.Length; ++i)
        {
            tree[map[i][0] - 1].Add((i, map[i][1] - 1));
            tree[map[i][1] - 1].Add((i, map[i][0] - 1));
        }
        var mul = new int[n - 1];
        DFS(0, -1, tree, mul);
        var dp = new long[k + 1];
        var ans = 0L;
        for (var i = 0; i < map.Length; ++i)
        {
            ans += map[i][2] * mul[i];
            var ndp = (long[]) dp.Clone();
            for (var j = 0; j < dp.Length && j + map[i][2] <= k; ++j)
            {
                ndp[j + map[i][2]] = Math.Max(ndp[j + map[i][2]], dp[j] + map[i][2] * mul[i]);
            }
            dp = ndp;
        }
        WriteLine(ans + dp.Max());
    }
    static int DFS(int cur, int prev, List<(int id, int to)>[] tree, int[] mul)
    {
        var count = 0;
        foreach (var next in tree[cur])
        {
            if (next.to == prev) continue;
            var sub = DFS(next.to, cur, tree, mul);
            mul[next.id] = sub;
            count += sub;
        }
        if (count == 0) ++count;
        return count;
    }
}
0