結果

問題 No.806 木を道に
ユーザー to_to_0121to_to_0121
提出日時 2019-03-22 22:19:08
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 2,610 bytes
コンパイル時間 3,856 ms
コンパイル使用メモリ 113,292 KB
実行使用メモリ 48,544 KB
最終ジャッジ日時 2024-09-19 05:49:28
合計ジャッジ時間 3,816 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,008 KB
testcase_01 AC 25 ms
24,020 KB
testcase_02 AC 24 ms
24,076 KB
testcase_03 AC 24 ms
26,116 KB
testcase_04 AC 24 ms
23,824 KB
testcase_05 AC 24 ms
24,084 KB
testcase_06 AC 23 ms
23,704 KB
testcase_07 AC 23 ms
24,208 KB
testcase_08 AC 23 ms
23,892 KB
testcase_09 AC 24 ms
23,668 KB
testcase_10 AC 49 ms
32,608 KB
testcase_11 AC 49 ms
32,480 KB
testcase_12 AC 136 ms
40,980 KB
testcase_13 AC 106 ms
39,712 KB
testcase_14 AC 131 ms
42,652 KB
testcase_15 AC 150 ms
43,804 KB
testcase_16 AC 64 ms
32,352 KB
testcase_17 AC 130 ms
37,932 KB
testcase_18 AC 33 ms
27,908 KB
testcase_19 AC 54 ms
32,608 KB
testcase_20 AC 137 ms
39,964 KB
testcase_21 AC 81 ms
34,592 KB
testcase_22 AC 168 ms
45,848 KB
testcase_23 AC 176 ms
45,600 KB
testcase_24 AC 80 ms
34,072 KB
testcase_25 AC 105 ms
40,620 KB
testcase_26 AC 56 ms
32,940 KB
testcase_27 AC 147 ms
48,544 KB
testcase_28 AC 27 ms
23,920 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.Collections.Generic;
class Program
    {
        public class Node
        {
            public int id;
            public List<Node> link = new List<Node>();

            public Node(int i)
            {
                id = i;
                link = new List<Node>();
            }
        }

        static void connect (Node a, Node b)
        {
            a.link.Add(b);
            b.link.Add(a);
            return;
        }
    	static void Main(string[] args)
    	{
            int n = int.Parse(Console.ReadLine());
            List<Node> nodes = new List<Node>();
            for (int i=0; i<n; i++) nodes.Add(new Node(i));
            for (int i=0; i<n-1; i++)
            {
                string[] s = Console.ReadLine().Split(' ');
                connect(nodes[int.Parse(s[0]) - 1], nodes[int.Parse(s[1]) - 1]);
            }
            int[] searchList = new int[n];
            for(int i=0; i<n; i++) searchList[i] = -1;
            List<int> queue = new List<int>();
            queue.Add(0);
            searchList[0] = 0;
            int lastId = 0;
            /*
            while(queue.Count > 0)
            {
                int id = queue[0];
                foreach(Node node in nodes[id].link)
                {
                    if (searchList[node.id] < 0){
                        searchList[node.id] = searchList[id] + 1;
                        queue.Add(node.id);
                    }
                }
                lastId = id;
                queue.Remove(id);
            }
            //Console.Error.WriteLine(lastId);
            int start = lastId;

            queue.Add(lastId);
            for(int i=0; i<n; i++) searchList[i] = -1;
            searchList[lastId] = 0;
            while(queue.Count > 0)
            {
                int id = queue[0];
                foreach(Node node in nodes[id].link)
                {
                    if (searchList[node.id] < 0){
                        searchList[node.id] = searchList[id] + 1;
                        queue.Add(node.id);
                    }
                }
                lastId = id;
                queue.Remove(id);
            }
            //Console.Error.WriteLine(start +  " " + lastId + " " + searchList[lastId]);
            Console.WriteLine(n - 1 - searchList[lastId]);
            */
            int ans = 0;
            foreach(Node node in nodes)
            {
                if (node.link.Count > 2) ans += node.link.Count - 2;
            }
            Console.WriteLine(ans);
            
        }
    }
    //mcs Main.cs
    //mono Main.exe
0