結果
問題 | No.763 Noelちゃんと木遊び |
ユーザー | AreTrash |
提出日時 | 2019-02-02 05:35:53 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 242 ms / 2,000 ms |
コード長 | 2,842 bytes |
コンパイル時間 | 1,638 ms |
コンパイル使用メモリ | 114,732 KB |
実行使用メモリ | 51,692 KB |
最終ジャッジ日時 | 2024-11-25 00:22:26 |
合計ジャッジ時間 | 6,836 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 165 ms
51,692 KB |
testcase_01 | AC | 91 ms
34,144 KB |
testcase_02 | AC | 196 ms
37,796 KB |
testcase_03 | AC | 130 ms
34,552 KB |
testcase_04 | AC | 95 ms
34,696 KB |
testcase_05 | AC | 132 ms
32,512 KB |
testcase_06 | AC | 234 ms
40,088 KB |
testcase_07 | AC | 230 ms
39,688 KB |
testcase_08 | AC | 134 ms
36,996 KB |
testcase_09 | AC | 90 ms
34,556 KB |
testcase_10 | AC | 51 ms
31,316 KB |
testcase_11 | AC | 242 ms
42,160 KB |
testcase_12 | AC | 213 ms
41,076 KB |
testcase_13 | AC | 209 ms
38,352 KB |
testcase_14 | AC | 183 ms
39,448 KB |
testcase_15 | AC | 130 ms
34,536 KB |
testcase_16 | AC | 42 ms
30,880 KB |
testcase_17 | AC | 135 ms
36,740 KB |
testcase_18 | AC | 237 ms
40,100 KB |
testcase_19 | AC | 220 ms
38,892 KB |
testcase_20 | AC | 215 ms
40,940 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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; } } }