結果

問題 No.196 典型DP (1)
ユーザー tentententen
提出日時 2021-05-20 09:59:54
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,175 bytes
コンパイル時間 2,393 ms
コンパイル使用メモリ 79,524 KB
実行使用メモリ 216,200 KB
最終ジャッジ日時 2024-10-10 07:11:48
合計ジャッジ時間 42,660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
50,276 KB
testcase_01 AC 60 ms
50,256 KB
testcase_02 AC 58 ms
50,096 KB
testcase_03 AC 57 ms
50,520 KB
testcase_04 AC 58 ms
50,044 KB
testcase_05 AC 60 ms
50,132 KB
testcase_06 AC 60 ms
50,288 KB
testcase_07 AC 60 ms
50,124 KB
testcase_08 AC 59 ms
50,452 KB
testcase_09 AC 60 ms
50,040 KB
testcase_10 AC 61 ms
50,560 KB
testcase_11 AC 67 ms
50,168 KB
testcase_12 AC 86 ms
51,028 KB
testcase_13 AC 93 ms
50,940 KB
testcase_14 AC 98 ms
51,920 KB
testcase_15 AC 190 ms
57,720 KB
testcase_16 AC 455 ms
67,164 KB
testcase_17 AC 807 ms
71,736 KB
testcase_18 AC 918 ms
76,060 KB
testcase_19 AC 1,016 ms
76,756 KB
testcase_20 AC 1,208 ms
76,160 KB
testcase_21 AC 1,229 ms
76,720 KB
testcase_22 AC 1,209 ms
76,832 KB
testcase_23 TLE -
testcase_24 AC 1,859 ms
140,272 KB
testcase_25 AC 1,742 ms
131,720 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,084 ms
61,528 KB
testcase_32 AC 1,162 ms
71,808 KB
testcase_33 AC 1,094 ms
61,944 KB
testcase_34 AC 1,072 ms
62,076 KB
testcase_35 AC 1,090 ms
61,880 KB
testcase_36 AC 1,329 ms
71,680 KB
testcase_37 AC 1,159 ms
75,948 KB
testcase_38 AC 1,109 ms
71,584 KB
testcase_39 AC 1,256 ms
73,748 KB
testcase_40 AC 1,119 ms
71,540 KB
testcase_41 AC 60 ms
50,356 KB
testcase_42 AC 59 ms
50,420 KB
testcase_43 AC 58 ms
50,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<TreeMap<Integer, Long>> dp = new ArrayList<>();
    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++) {
            dp.add(new TreeMap<>());
            dp.get(i).put(0, 1L);
            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);
        }
        getChildren(0, 0);
        System.out.println(dp.get(0).getOrDefault(k, 0L));
    }
    
    static int getChildren(int idx, int parent) {
        int count = 1;
        for (int x : graph.get(idx)) {
            if (x == parent) {
                continue;
            }
            count += getChildren(x, idx);
            Integer key = Integer.MAX_VALUE;
            while ((key = dp.get(idx).lowerKey(key)) != null) {
                long org = dp.get(idx).get(key);
                for (int y : dp.get(x).keySet()) {
                    if (y == 0) {
                        continue;
                    }
                    dp.get(idx).put(key + y, (dp.get(idx).getOrDefault(key + y, 0L) + org * dp.get(x).get(y) % MOD) % MOD);
                }
            }
        }
        dp.get(idx).put(count, 1L);
        return 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