結果

問題 No.763 Noelちゃんと木遊び
ユーザー AreTrashAreTrash
提出日時 2019-02-02 05:35:53
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 2,842 bytes
コンパイル時間 3,437 ms
コンパイル使用メモリ 108,032 KB
実行使用メモリ 45,304 KB
最終ジャッジ日時 2024-05-03 20:22:33
合計ジャッジ時間 7,837 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
45,304 KB
testcase_01 AC 79 ms
25,984 KB
testcase_02 AC 164 ms
31,608 KB
testcase_03 AC 108 ms
28,408 KB
testcase_04 AC 81 ms
26,368 KB
testcase_05 AC 111 ms
28,408 KB
testcase_06 AC 199 ms
34,040 KB
testcase_07 AC 203 ms
33,280 KB
testcase_08 AC 123 ms
28,916 KB
testcase_09 AC 82 ms
26,240 KB
testcase_10 AC 48 ms
22,912 KB
testcase_11 AC 198 ms
34,164 KB
testcase_12 AC 171 ms
32,884 KB
testcase_13 AC 163 ms
32,384 KB
testcase_14 AC 145 ms
31,104 KB
testcase_15 AC 108 ms
28,280 KB
testcase_16 AC 39 ms
22,656 KB
testcase_17 AC 118 ms
28,412 KB
testcase_18 AC 208 ms
34,172 KB
testcase_19 AC 183 ms
33,016 KB
testcase_20 AC 181 ms
33,020 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.IO;
using System.Collections.Generic;

namespace No763
{
    public class Program
    {
        class Node
        {
            public List<int> Children = new List<int>();
            public int MaxDel = 0;
            public int MaxLev = 1;
        }

        void Solve(StreamScanner ss, StreamWriter sw)
        {
            //---------------------------------
            var N = ss.Next(int.Parse);
            var nodes = new Node[N + 1];

            for (var i = 1; i <= N; i++)
            {
                nodes[i] = new Node();
            }

            for (var i = 0; i < N - 1; i++)
            {
                var u = ss.Next(int.Parse);
                var v = ss.Next(int.Parse);
                nodes[u].Children.Add(v);
                nodes[v].Children.Add(u);
            }

            void DFS(int i)
            {
                var p = nodes[i];
                foreach (var ci in p.Children)
                {
                    var c = nodes[ci];
                    c.Children.Remove(i);
                    DFS(ci);
                    p.MaxDel += Math.Max(c.MaxDel, c.MaxLev);
                    p.MaxLev += Math.Max(c.MaxDel, c.MaxLev - 1);
                }
            }

            DFS(1);
            var root = nodes[1];
            sw.WriteLine(Math.Max(root.MaxDel, root.MaxLev));
            //---------------------------------
        }

        static void Main()
        {
            var ss = new StreamScanner(new StreamReader(Console.OpenStandardInput()));
            var sw = new StreamWriter(Console.OpenStandardOutput()) {AutoFlush = false};
            new Program().Solve(ss, sw);
            sw.Flush();
        }

        static readonly Func<string, string> String = s => s;
    }

    public class StreamScanner
    {
        static readonly char[] Sep = {' '};
        readonly Queue<string> buffer = new Queue<string>();
        readonly TextReader textReader;

        public StreamScanner(TextReader textReader)
        {
            this.textReader = textReader;
        }

        public T Next<T>(Func<string, T> parser)
        {
            if (buffer.Count != 0) return parser(buffer.Dequeue());
            var nextStrings = textReader.ReadLine().Split(Sep, StringSplitOptions.RemoveEmptyEntries);
            foreach (var nextString in nextStrings) buffer.Enqueue(nextString);
            return Next(parser);
        }

        public T[] Next<T>(Func<string, T> parser, int x)
        {
            var ret = new T[x];
            for (var i = 0; i < x; ++i) ret[i] = Next(parser);
            return ret;
        }

        public T[][] Next<T>(Func<string, T> parser, int x, int y)
        {
            var ret = new T[y][];
            for (var i = 0; i < y; ++i) ret[i] = Next(parser, x);
            return ret;
        }
    }
}
0