結果
問題 | No.2205 Lights Out on Christmas Tree |
ユーザー | tenten |
提出日時 | 2023-02-13 18:29:47 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 806 ms / 2,000 ms |
コード長 | 2,479 bytes |
コンパイル時間 | 2,796 ms |
コンパイル使用メモリ | 84,692 KB |
実行使用メモリ | 117,756 KB |
最終ジャッジ日時 | 2024-07-16 11:50:43 |
合計ジャッジ時間 | 25,909 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
37,096 KB |
testcase_01 | AC | 52 ms
36,808 KB |
testcase_02 | AC | 53 ms
36,796 KB |
testcase_03 | AC | 52 ms
36,804 KB |
testcase_04 | AC | 51 ms
37,104 KB |
testcase_05 | AC | 52 ms
37,100 KB |
testcase_06 | AC | 51 ms
37,280 KB |
testcase_07 | AC | 51 ms
37,232 KB |
testcase_08 | AC | 52 ms
37,228 KB |
testcase_09 | AC | 52 ms
37,108 KB |
testcase_10 | AC | 52 ms
37,240 KB |
testcase_11 | AC | 706 ms
87,136 KB |
testcase_12 | AC | 726 ms
84,612 KB |
testcase_13 | AC | 637 ms
83,912 KB |
testcase_14 | AC | 700 ms
88,416 KB |
testcase_15 | AC | 802 ms
117,756 KB |
testcase_16 | AC | 490 ms
66,572 KB |
testcase_17 | AC | 478 ms
65,796 KB |
testcase_18 | AC | 52 ms
37,236 KB |
testcase_19 | AC | 709 ms
82,508 KB |
testcase_20 | AC | 765 ms
83,840 KB |
testcase_21 | AC | 644 ms
81,360 KB |
testcase_22 | AC | 666 ms
85,452 KB |
testcase_23 | AC | 683 ms
81,532 KB |
testcase_24 | AC | 617 ms
90,204 KB |
testcase_25 | AC | 704 ms
80,176 KB |
testcase_26 | AC | 659 ms
80,096 KB |
testcase_27 | AC | 626 ms
82,044 KB |
testcase_28 | AC | 705 ms
84,384 KB |
testcase_29 | AC | 615 ms
83,324 KB |
testcase_30 | AC | 651 ms
79,992 KB |
testcase_31 | AC | 617 ms
82,744 KB |
testcase_32 | AC | 615 ms
83,972 KB |
testcase_33 | AC | 709 ms
80,328 KB |
testcase_34 | AC | 609 ms
81,256 KB |
testcase_35 | AC | 648 ms
81,740 KB |
testcase_36 | AC | 806 ms
85,356 KB |
testcase_37 | AC | 731 ms
84,084 KB |
testcase_38 | AC | 700 ms
85,500 KB |
testcase_39 | AC | 690 ms
80,628 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static ArrayList<ArrayList<Integer>> graph = new ArrayList<>(); static boolean[] isBlack; 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); } int ans = getCount(0, 0); if (isBlack[0]) { System.out.println(ans); } else { System.out.println(-1); } } static int getCount(int idx, int p) { int count = 0; for (int x : graph.get(idx)) { if (x == p) { continue; } count += getCount(x, idx); if (!isBlack[x]) { count++; isBlack[idx] ^= true; } } return count; } } 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(); } }