結果

問題 No.1582 Vertexes vs Edges
ユーザー tentententen
提出日時 2021-07-08 13:22:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 623 ms / 2,000 ms
コード長 2,122 bytes
コンパイル時間 2,559 ms
コンパイル使用メモリ 78,900 KB
実行使用メモリ 78,032 KB
最終ジャッジ日時 2024-07-01 12:30:15
合計ジャッジ時間 14,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,344 KB
testcase_01 AC 55 ms
50,280 KB
testcase_02 AC 55 ms
50,404 KB
testcase_03 AC 57 ms
50,068 KB
testcase_04 AC 133 ms
52,272 KB
testcase_05 AC 372 ms
72,692 KB
testcase_06 AC 135 ms
51,984 KB
testcase_07 AC 153 ms
55,212 KB
testcase_08 AC 245 ms
60,196 KB
testcase_09 AC 355 ms
68,212 KB
testcase_10 AC 262 ms
62,600 KB
testcase_11 AC 140 ms
54,540 KB
testcase_12 AC 226 ms
57,764 KB
testcase_13 AC 309 ms
63,772 KB
testcase_14 AC 306 ms
63,092 KB
testcase_15 AC 387 ms
65,344 KB
testcase_16 AC 255 ms
58,512 KB
testcase_17 AC 307 ms
63,772 KB
testcase_18 AC 414 ms
73,484 KB
testcase_19 AC 294 ms
62,928 KB
testcase_20 AC 301 ms
63,048 KB
testcase_21 AC 264 ms
60,620 KB
testcase_22 AC 387 ms
70,924 KB
testcase_23 AC 233 ms
57,612 KB
testcase_24 AC 176 ms
55,736 KB
testcase_25 AC 286 ms
60,860 KB
testcase_26 AC 252 ms
60,348 KB
testcase_27 AC 408 ms
66,112 KB
testcase_28 AC 209 ms
57,536 KB
testcase_29 AC 353 ms
62,952 KB
testcase_30 AC 271 ms
60,928 KB
testcase_31 AC 362 ms
63,308 KB
testcase_32 AC 222 ms
57,752 KB
testcase_33 AC 503 ms
77,776 KB
testcase_34 AC 623 ms
78,032 KB
testcase_35 AC 496 ms
77,808 KB
testcase_36 AC 55 ms
50,444 KB
testcase_37 AC 55 ms
50,120 KB
testcase_38 AC 55 ms
50,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
    static int[] dpWhite;
    static int[] dpBlack;
    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);
        }
        dpWhite = new int[n];
        dpBlack = new int[n];
        Arrays.fill(dpWhite, -1);
        Arrays.fill(dpBlack, -1);
        System.out.println(n - Math.max(dfwBlack(0, 0), dfwWhite(0, 0)));
    }
    
    static int dfwBlack(int idx, int parent) {
        if (dpBlack[idx] >= 0) {
            return dpBlack[idx];
        }
        dpBlack[idx] = 0;
        for (int x : graph.get(idx)) {
            if (x == parent) {
                continue;
            }
            dpBlack[idx] += Math.max(dfwBlack(x, idx), dfwWhite(x, idx));
        }
        return dpBlack[idx];
    }
    
    static int dfwWhite(int idx, int parent) {
        if (dpWhite[idx] >= 0) {
            return dpWhite[idx];
        }
        dpWhite[idx] = 1;
        for (int x : graph.get(idx)) {
            if (x == parent) {
                continue;
            }
            dpWhite[idx] += dfwBlack(x, idx);
        }
        return dpWhite[idx];
    }
}


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 String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0