結果

問題 No.2205 Lights Out on Christmas Tree
ユーザー tentententen
提出日時 2023-07-26 09:52:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 761 ms / 2,000 ms
コード長 2,430 bytes
コンパイル時間 2,812 ms
コンパイル使用メモリ 91,292 KB
実行使用メモリ 110,520 KB
最終ジャッジ日時 2024-10-02 22:41:04
合計ジャッジ時間 22,556 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,144 KB
testcase_01 AC 47 ms
37,064 KB
testcase_02 AC 46 ms
37,036 KB
testcase_03 AC 45 ms
36,876 KB
testcase_04 AC 45 ms
36,968 KB
testcase_05 AC 45 ms
37,028 KB
testcase_06 AC 43 ms
36,616 KB
testcase_07 AC 43 ms
36,972 KB
testcase_08 AC 49 ms
37,008 KB
testcase_09 AC 44 ms
36,608 KB
testcase_10 AC 44 ms
36,928 KB
testcase_11 AC 610 ms
84,400 KB
testcase_12 AC 677 ms
84,536 KB
testcase_13 AC 723 ms
86,580 KB
testcase_14 AC 492 ms
79,084 KB
testcase_15 AC 720 ms
110,520 KB
testcase_16 AC 389 ms
65,980 KB
testcase_17 AC 377 ms
65,952 KB
testcase_18 AC 45 ms
37,100 KB
testcase_19 AC 743 ms
82,664 KB
testcase_20 AC 601 ms
81,704 KB
testcase_21 AC 602 ms
80,020 KB
testcase_22 AC 567 ms
82,112 KB
testcase_23 AC 598 ms
81,660 KB
testcase_24 AC 581 ms
81,648 KB
testcase_25 AC 601 ms
81,584 KB
testcase_26 AC 761 ms
80,056 KB
testcase_27 AC 582 ms
81,884 KB
testcase_28 AC 504 ms
82,180 KB
testcase_29 AC 510 ms
82,800 KB
testcase_30 AC 559 ms
80,008 KB
testcase_31 AC 625 ms
82,560 KB
testcase_32 AC 527 ms
82,764 KB
testcase_33 AC 656 ms
83,996 KB
testcase_34 AC 509 ms
80,748 KB
testcase_35 AC 697 ms
85,204 KB
testcase_36 AC 700 ms
81,584 KB
testcase_37 AC 530 ms
80,996 KB
testcase_38 AC 623 ms
79,992 KB
testcase_39 AC 529 ms
81,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
    static boolean[] isBlack;
    static long ans = 0;
    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);
        }
        isBlack = new boolean[n];
        for (int i = 0; i < n; i++) {
            isBlack[i] = (sc.nextInt() == 1);
        }
        check(0, 0);
        if (isBlack[0]) {
            System.out.println(ans);
        } else {
            System.out.println(-1);
        }
    }
    
    static void check(int idx, int p) {
        for (int x : graph.get(idx)) {
            if (p == x) {
                continue;
            }
            check(x, idx);
            if (!isBlack[x]) {
                isBlack[idx] ^= true;
                ans++;
            }
        }
    }
    
}
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