結果

問題 No.1582 Vertexes vs Edges
ユーザー kakel-sankakel-san
提出日時 2021-07-02 22:40:36
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 1,245 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 116,572 KB
実行使用メモリ 36,600 KB
最終ジャッジ日時 2024-06-29 12:32:42
合計ジャッジ時間 7,393 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
19,072 KB
testcase_01 AC 32 ms
19,072 KB
testcase_02 AC 33 ms
19,200 KB
testcase_03 AC 33 ms
19,072 KB
testcase_04 AC 37 ms
20,736 KB
testcase_05 AC 159 ms
35,828 KB
testcase_06 AC 38 ms
20,992 KB
testcase_07 AC 50 ms
23,040 KB
testcase_08 AC 90 ms
25,344 KB
testcase_09 AC 151 ms
33,408 KB
testcase_10 AC 104 ms
26,624 KB
testcase_11 AC 42 ms
21,756 KB
testcase_12 AC 86 ms
27,904 KB
testcase_13 AC 116 ms
30,080 KB
testcase_14 AC 118 ms
29,952 KB
testcase_15 AC 146 ms
31,872 KB
testcase_16 AC 88 ms
27,776 KB
testcase_17 AC 115 ms
30,464 KB
testcase_18 AC 172 ms
34,304 KB
testcase_19 AC 118 ms
29,184 KB
testcase_20 AC 104 ms
27,776 KB
testcase_21 AC 98 ms
28,928 KB
testcase_22 AC 152 ms
33,664 KB
testcase_23 AC 78 ms
25,856 KB
testcase_24 AC 54 ms
23,428 KB
testcase_25 AC 94 ms
25,344 KB
testcase_26 AC 78 ms
24,320 KB
testcase_27 AC 148 ms
31,872 KB
testcase_28 AC 65 ms
23,936 KB
testcase_29 AC 131 ms
31,736 KB
testcase_30 AC 94 ms
26,880 KB
testcase_31 AC 130 ms
31,360 KB
testcase_32 AC 76 ms
26,112 KB
testcase_33 AC 190 ms
36,600 KB
testcase_34 AC 189 ms
36,476 KB
testcase_35 AC 197 ms
36,348 KB
testcase_36 AC 33 ms
19,200 KB
testcase_37 AC 33 ms
19,072 KB
testcase_38 AC 32 ms
18,816 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;
using static System.Console;
using System.Linq;

class yuki302
{
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NMap(int n) => Enumerable.Repeat<int>(0, n).Select(_ => NList).ToArray();
    static void Main()
    {
        var n = int.Parse(ReadLine());
        var map = NMap(n - 1);

        var tree = new List<int>[n];
        for (var i = 0; i < tree.Length; ++i) tree[i] = new List<int>();
        foreach (var edge in map)
        {
            tree[edge[0] - 1].Add(edge[1] - 1);
            tree[edge[1] - 1].Add(edge[0] - 1);
        }

        var list = Enumerable.Repeat(int.MaxValue, n).ToArray();
        DFS(-1, 0, tree, list);
        WriteLine(list.Count(c => c % 2 == 1));
    }
    static int DFS(int prev, int pos, List<int>[] tree, int[] list)
    {
        var val = int.MaxValue;
        if (tree[pos].Count == 1 && tree[pos][0] == prev)
        {
            val = 1;
        }
        else foreach (var next in tree[pos])
        {
            if (next == prev) continue;
            val = Math.Min(val, DFS(pos, next, tree, list));
        }
        val = (val + 1) % 2;
        list[pos] = val;
        return val;
    }
}
0