結果

問題 No.2677 Minmax Independent Set
ユーザー kakel-sankakel-san
提出日時 2024-03-15 23:44:01
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 586 ms / 2,000 ms
コード長 2,446 bytes
コンパイル時間 9,070 ms
コンパイル使用メモリ 167,656 KB
実行使用メモリ 247,028 KB
最終ジャッジ日時 2024-09-30 03:14:01
合計ジャッジ時間 29,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
30,208 KB
testcase_01 AC 56 ms
30,296 KB
testcase_02 AC 57 ms
30,208 KB
testcase_03 AC 58 ms
30,336 KB
testcase_04 AC 59 ms
30,296 KB
testcase_05 AC 489 ms
75,320 KB
testcase_06 AC 487 ms
75,600 KB
testcase_07 AC 491 ms
75,984 KB
testcase_08 AC 503 ms
76,744 KB
testcase_09 AC 495 ms
77,904 KB
testcase_10 AC 483 ms
77,196 KB
testcase_11 AC 471 ms
77,288 KB
testcase_12 AC 572 ms
103,136 KB
testcase_13 AC 565 ms
87,192 KB
testcase_14 AC 534 ms
88,960 KB
testcase_15 AC 577 ms
93,428 KB
testcase_16 AC 586 ms
72,764 KB
testcase_17 AC 575 ms
72,764 KB
testcase_18 AC 361 ms
62,936 KB
testcase_19 AC 452 ms
65,636 KB
testcase_20 AC 163 ms
52,864 KB
testcase_21 AC 469 ms
68,316 KB
testcase_22 AC 94 ms
37,356 KB
testcase_23 AC 60 ms
30,460 KB
testcase_24 AC 58 ms
30,588 KB
testcase_25 AC 58 ms
30,332 KB
testcase_26 AC 59 ms
30,336 KB
testcase_27 AC 60 ms
30,588 KB
testcase_28 AC 463 ms
77,328 KB
testcase_29 AC 523 ms
91,860 KB
testcase_30 AC 59 ms
30,336 KB
testcase_31 AC 58 ms
30,208 KB
testcase_32 AC 58 ms
30,188 KB
testcase_33 AC 59 ms
30,204 KB
testcase_34 AC 57 ms
30,592 KB
testcase_35 AC 58 ms
30,208 KB
testcase_36 AC 58 ms
30,336 KB
testcase_37 AC 58 ms
30,208 KB
testcase_38 AC 60 ms
30,592 KB
testcase_39 AC 61 ms
30,976 KB
testcase_40 AC 63 ms
31,744 KB
testcase_41 AC 80 ms
34,048 KB
testcase_42 AC 90 ms
36,348 KB
testcase_43 AC 111 ms
41,216 KB
testcase_44 AC 152 ms
50,944 KB
testcase_45 AC 289 ms
60,428 KB
testcase_46 AC 543 ms
70,996 KB
testcase_47 AC 551 ms
72,268 KB
testcase_48 AC 542 ms
72,536 KB
testcase_49 AC 535 ms
72,532 KB
testcase_50 AC 206 ms
61,752 KB
testcase_51 AC 78 ms
34,048 KB
testcase_52 AC 397 ms
73,320 KB
testcase_53 AC 365 ms
67,664 KB
testcase_54 AC 77 ms
33,536 KB
testcase_55 AC 523 ms
78,428 KB
testcase_56 AC 498 ms
78,584 KB
testcase_57 AC 497 ms
78,612 KB
testcase_58 AC 501 ms
78,564 KB
testcase_59 AC 503 ms
78,852 KB
testcase_60 AC 371 ms
76,432 KB
testcase_61 AC 365 ms
73,152 KB
testcase_62 AC 374 ms
78,112 KB
testcase_63 AC 387 ms
247,028 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (92 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 n = NN;
        var map = NMap(n - 1);
        var tree = new List<Pair>[n];
        for (var i = 0; i < tree.Length; ++i) tree[i] = new List<Pair>();
        foreach (var edge in map)
        {
            tree[edge[0]].Add(new Pair(edge[1]));
            tree[edge[1]].Add(new Pair(edge[0]));
        }
        DFS1(-1, 0, tree);
        DFS2(-1, 0, 0, 0, tree);
        var ans = int.MaxValue;
        for (var i = 0; i < n; ++i)
        {
            var sub = 1;
            foreach (var next in tree[i]) sub += next.W;
            ans = Math.Min(ans, sub);
        }
        WriteLine(ans);
    }
    static (int b, int w) DFS1(int prev, int cur, List<Pair>[] tree)
    {
        var b = 1;
        var w = 0;
        foreach (var next in tree[cur])
        {
            if (next.To == prev) continue;
            var nr = DFS1(cur, next.To, tree);
            next.B = nr.b;
            next.W = nr.w;
            b += nr.w;
            w += Math.Max(nr.w, nr.b);
        }
        return (b, w);
    }
    static void DFS2(int prev, int cur, int b, int w, List<Pair>[] tree)
    {
        var bsum = 1;
        var wsum = 0;
        foreach (var next in tree[cur])
        {
            if (next.To == prev) 
            {
                next.B = b;
                next.W = w;
            }
            bsum += next.W;
            wsum += Math.Max(next.B, next.W);
        }
        foreach (var next in tree[cur])
        {
            if (next.To == prev) continue;
            DFS2(cur, next.To, bsum - next.W, wsum - Math.Max(next.B, next.W), tree);
        }
    }
    class Pair
    {
        public int To;
        public int B;
        public int W;
        public Pair(int to)
        {
            To = to;
        }
        public override string ToString()
        {
            return $"To: {To}, B: {B}, W: {W}";
        }
    }
}
 
0