結果

問題 No.196 典型DP (1)
ユーザー tentententen
提出日時 2021-05-20 10:20:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 1,994 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 78,532 KB
実行使用メモリ 67,660 KB
最終ジャッジ日時 2024-10-10 07:12:00
合計ジャッジ時間 10,961 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,160 KB
testcase_01 AC 52 ms
50,424 KB
testcase_02 AC 53 ms
50,160 KB
testcase_03 AC 51 ms
50,540 KB
testcase_04 AC 52 ms
50,464 KB
testcase_05 AC 52 ms
50,380 KB
testcase_06 AC 52 ms
50,176 KB
testcase_07 AC 56 ms
50,396 KB
testcase_08 AC 55 ms
50,328 KB
testcase_09 AC 52 ms
50,164 KB
testcase_10 AC 54 ms
50,160 KB
testcase_11 AC 56 ms
50,436 KB
testcase_12 AC 54 ms
50,640 KB
testcase_13 AC 53 ms
50,384 KB
testcase_14 AC 54 ms
50,396 KB
testcase_15 AC 85 ms
51,428 KB
testcase_16 AC 136 ms
55,692 KB
testcase_17 AC 194 ms
59,128 KB
testcase_18 AC 209 ms
63,520 KB
testcase_19 AC 235 ms
66,292 KB
testcase_20 AC 245 ms
67,236 KB
testcase_21 AC 244 ms
67,072 KB
testcase_22 AC 235 ms
67,324 KB
testcase_23 AC 279 ms
67,660 KB
testcase_24 AC 247 ms
67,380 KB
testcase_25 AC 252 ms
67,344 KB
testcase_26 AC 295 ms
67,172 KB
testcase_27 AC 291 ms
67,332 KB
testcase_28 AC 299 ms
67,288 KB
testcase_29 AC 236 ms
67,584 KB
testcase_30 AC 292 ms
67,176 KB
testcase_31 AC 188 ms
66,804 KB
testcase_32 AC 231 ms
67,088 KB
testcase_33 AC 232 ms
67,008 KB
testcase_34 AC 217 ms
67,100 KB
testcase_35 AC 224 ms
67,056 KB
testcase_36 AC 280 ms
67,516 KB
testcase_37 AC 249 ms
67,160 KB
testcase_38 AC 249 ms
67,212 KB
testcase_39 AC 243 ms
67,164 KB
testcase_40 AC 233 ms
67,296 KB
testcase_41 AC 53 ms
50,640 KB
testcase_42 AC 52 ms
50,192 KB
testcase_43 AC 52 ms
50,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[][] dp;
    static int[] children;
    static final int MOD = 1000000007;
    static ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = 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();
            int b = sc.nextInt();
            graph.get(a).add(b);
            graph.get(b).add(a);
        }
        dp = new int[n][n + 1];
        children = new int[n];
        getChildren(0, 0);
        System.out.println(dp[0][k]);
    }
    
    static int getChildren(int idx, int parent) {
        int count = 1;
        dp[idx][0] = 1;
        for (int x : graph.get(idx)) {
            if (x == parent) {
                continue;
            }
            int tmp = getChildren(x, idx);
            for (int i = count - 1; i >= 0; i--) {
                for (int j = 1; j <= children[x]; j++) {
                    dp[idx][i + j] += (int)((long)dp[idx][i] * dp[x][j] % MOD);
                    dp[idx][i + j] %= MOD;
                }
            }
            count += tmp;
        }
        dp[idx][count] = 1;
        return children[idx] = count;
    }
}

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