結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー kakel-sankakel-san
提出日時 2023-02-03 22:12:15
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 1,405 bytes
コンパイル時間 3,712 ms
コンパイル使用メモリ 106,240 KB
実行使用メモリ 88,812 KB
最終ジャッジ日時 2024-07-02 20:12:52
合計ジャッジ時間 15,905 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,328 KB
testcase_01 AC 30 ms
19,072 KB
testcase_02 AC 30 ms
19,200 KB
testcase_03 AC 30 ms
19,072 KB
testcase_04 AC 29 ms
19,328 KB
testcase_05 AC 29 ms
19,072 KB
testcase_06 AC 28 ms
18,944 KB
testcase_07 AC 29 ms
19,072 KB
testcase_08 AC 29 ms
19,072 KB
testcase_09 AC 27 ms
19,200 KB
testcase_10 AC 26 ms
19,328 KB
testcase_11 AC 342 ms
65,912 KB
testcase_12 AC 359 ms
66,304 KB
testcase_13 AC 353 ms
66,040 KB
testcase_14 AC 347 ms
65,900 KB
testcase_15 AC 376 ms
88,812 KB
testcase_16 AC 233 ms
49,900 KB
testcase_17 AC 247 ms
49,648 KB
testcase_18 AC 30 ms
19,200 KB
testcase_19 AC 361 ms
67,832 KB
testcase_20 AC 358 ms
66,304 KB
testcase_21 AC 365 ms
66,176 KB
testcase_22 AC 365 ms
67,184 KB
testcase_23 AC 391 ms
66,172 KB
testcase_24 AC 369 ms
66,932 KB
testcase_25 AC 358 ms
66,168 KB
testcase_26 AC 364 ms
66,280 KB
testcase_27 AC 361 ms
67,960 KB
testcase_28 AC 353 ms
67,448 KB
testcase_29 AC 353 ms
67,696 KB
testcase_30 AC 353 ms
66,040 KB
testcase_31 AC 368 ms
67,308 KB
testcase_32 AC 366 ms
66,804 KB
testcase_33 AC 347 ms
66,560 KB
testcase_34 AC 340 ms
66,044 KB
testcase_35 AC 365 ms
66,288 KB
testcase_36 AC 360 ms
66,280 KB
testcase_37 AC 350 ms
66,296 KB
testcase_38 AC 362 ms
66,040 KB
testcase_39 AC 355 ms
67,436 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 static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    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 = int.Parse(ReadLine());
        var map = NMap(n - 1);
        var c = NList;
        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]].Add(edge[1]);
            tree[edge[1]].Add(edge[0]);
        }
        var colors = c.Select(ci => ci == 0).ToArray();
        var ans = 0;
        DFS(-1, 0, tree, colors, ref ans);
        WriteLine(colors[0] ? -1 : ans);
    }
    static void DFS(int prev, int cur, List<int>[] tree, bool[] colors, ref int ans)
    {
        foreach (var next in tree[cur])
        {
            if (prev == next) continue;
            DFS(cur, next, tree, colors, ref ans);
            if (colors[next])
            {
                ++ans;
                colors[next] = false;
                colors[cur] = !colors[cur];
            }
        }
    }
}
0