結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー tentententen
提出日時 2023-03-30 11:05:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 954 ms / 2,000 ms
コード長 2,371 bytes
コンパイル時間 2,757 ms
コンパイル使用メモリ 91,116 KB
実行使用メモリ 112,728 KB
最終ジャッジ日時 2024-09-21 22:06:34
合計ジャッジ時間 26,121 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,096 KB
testcase_01 AC 54 ms
37,240 KB
testcase_02 AC 53 ms
37,340 KB
testcase_03 AC 53 ms
36,568 KB
testcase_04 AC 54 ms
37,244 KB
testcase_05 AC 53 ms
37,340 KB
testcase_06 AC 53 ms
37,096 KB
testcase_07 AC 54 ms
37,340 KB
testcase_08 AC 54 ms
37,336 KB
testcase_09 AC 53 ms
37,236 KB
testcase_10 AC 55 ms
37,316 KB
testcase_11 AC 733 ms
87,004 KB
testcase_12 AC 655 ms
84,516 KB
testcase_13 AC 692 ms
84,248 KB
testcase_14 AC 725 ms
79,236 KB
testcase_15 AC 954 ms
112,728 KB
testcase_16 AC 480 ms
66,320 KB
testcase_17 AC 480 ms
66,572 KB
testcase_18 AC 53 ms
37,468 KB
testcase_19 AC 710 ms
81,940 KB
testcase_20 AC 711 ms
80,140 KB
testcase_21 AC 717 ms
81,500 KB
testcase_22 AC 672 ms
82,176 KB
testcase_23 AC 610 ms
80,760 KB
testcase_24 AC 705 ms
81,508 KB
testcase_25 AC 646 ms
80,916 KB
testcase_26 AC 729 ms
81,288 KB
testcase_27 AC 609 ms
81,556 KB
testcase_28 AC 684 ms
82,376 KB
testcase_29 AC 723 ms
85,588 KB
testcase_30 AC 718 ms
81,348 KB
testcase_31 AC 701 ms
82,728 KB
testcase_32 AC 725 ms
81,648 KB
testcase_33 AC 701 ms
83,928 KB
testcase_34 AC 675 ms
81,380 KB
testcase_35 AC 739 ms
83,808 KB
testcase_36 AC 723 ms
81,468 KB
testcase_37 AC 690 ms
81,572 KB
testcase_38 AC 747 ms
89,220 KB
testcase_39 AC 697 ms
85,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    static ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
    static boolean[] isOn;
    static int ans;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        for (int i = 0; i < n; i++)  {
            graph.add(new ArrayList<>());
        }
        for (int i = 0; i < n - 1; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            graph.get(a).add(b);
            graph.get(b).add(a);
        }
        isOn = new boolean[n];
        for (int i = 0; i < n; i++) {
            isOn[i] = (sc.nextInt() == 1);
        }
        if (getLight(0, 0)) {
            System.out.println(-1);
        } else {
            System.out.println(ans);
        }
    }
    
    static boolean getLight(int idx, int p) {
        for (int x : graph.get(idx)) {
            if (x != p) {
                isOn[idx] ^= getLight(x, idx);
            }
        }
        if (!isOn[idx]) {
            ans++;
        }
        return !isOn[idx];
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0