結果
問題 | No.763 Noelちゃんと木遊び |
ユーザー |
![]() |
提出日時 | 2022-04-21 15:52:19 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 543 ms / 2,000 ms |
コード長 | 2,122 bytes |
コンパイル時間 | 3,032 ms |
コンパイル使用メモリ | 78,500 KB |
実行使用メモリ | 102,676 KB |
最終ジャッジ日時 | 2024-06-22 19:30:03 |
合計ジャッジ時間 | 13,578 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
ソースコード
import java.io.*;import java.util.*;public class Main {static ArrayList<ArrayList<Integer>> graph = new ArrayList<>();static int[][] dp;public static void main(String[] args) throws Exception {Scanner sc = new Scanner();int n = sc.nextInt();dp = new int[n][2];for (int i = 0; i < n; i++) {graph.add(new ArrayList<>());Arrays.fill(dp[i], -1);}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);}System.out.println(Math.max(dfw(0, 0, 0), dfw(0, 0, 1)));}static int dfw(int idx, int p, int type) {if (dp[idx][type] < 0) {if (type == 0) {dp[idx][type] = 0;for (int x : graph.get(idx)) {if (x == p) {continue;}dp[idx][type] += Math.max(dfw(x, idx, 0), dfw(x, idx, 1));}} else {dp[idx][type] = 1;for (int x : graph.get(idx)) {if (x == p) {continue;}dp[idx][type] += Math.max(dfw(x, idx, 0), dfw(x, idx, 1) - 1);}}}return dp[idx][type];}}class Scanner {BufferedReader br = new BufferedReader(new InputStreamReader(System.in));StringTokenizer st = new StringTokenizer("");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 String next() throws Exception {if (!st.hasMoreTokens()) {st = new StringTokenizer(br.readLine());}return st.nextToken();}}