結果

問題 No.196 典型DP (1)
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-01-22 11:44:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 494 ms / 2,000 ms
コード長 2,918 bytes
コンパイル時間 2,441 ms
コンパイル使用メモリ 93,720 KB
実行使用メモリ 176,316 KB
最終ジャッジ日時 2024-06-07 15:49:21
合計ジャッジ時間 12,611 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
37,624 KB
testcase_01 AC 56 ms
37,448 KB
testcase_02 AC 54 ms
37,568 KB
testcase_03 AC 57 ms
37,580 KB
testcase_04 AC 58 ms
37,708 KB
testcase_05 AC 55 ms
37,608 KB
testcase_06 AC 56 ms
37,500 KB
testcase_07 AC 55 ms
37,500 KB
testcase_08 AC 56 ms
37,220 KB
testcase_09 AC 61 ms
37,676 KB
testcase_10 AC 60 ms
37,488 KB
testcase_11 AC 69 ms
37,664 KB
testcase_12 AC 58 ms
37,572 KB
testcase_13 AC 59 ms
37,760 KB
testcase_14 AC 69 ms
37,964 KB
testcase_15 AC 108 ms
44,324 KB
testcase_16 AC 148 ms
52,768 KB
testcase_17 AC 204 ms
61,576 KB
testcase_18 AC 311 ms
79,204 KB
testcase_19 AC 276 ms
69,164 KB
testcase_20 AC 151 ms
46,028 KB
testcase_21 AC 206 ms
52,504 KB
testcase_22 AC 139 ms
42,776 KB
testcase_23 AC 321 ms
68,544 KB
testcase_24 AC 228 ms
51,368 KB
testcase_25 AC 440 ms
104,944 KB
testcase_26 AC 113 ms
40,068 KB
testcase_27 AC 278 ms
61,620 KB
testcase_28 AC 366 ms
104,788 KB
testcase_29 AC 425 ms
153,900 KB
testcase_30 AC 420 ms
176,316 KB
testcase_31 AC 121 ms
40,396 KB
testcase_32 AC 452 ms
77,696 KB
testcase_33 AC 469 ms
97,544 KB
testcase_34 AC 417 ms
137,020 KB
testcase_35 AC 426 ms
152,840 KB
testcase_36 AC 121 ms
40,352 KB
testcase_37 AC 331 ms
77,896 KB
testcase_38 AC 476 ms
97,592 KB
testcase_39 AC 494 ms
102,696 KB
testcase_40 AC 433 ms
153,616 KB
testcase_41 AC 55 ms
37,532 KB
testcase_42 AC 58 ms
37,564 KB
testcase_43 AC 59 ms
37,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


class Main {
    static final long MOD=1000000007;
    static ArrayList<Integer>[]g;
    static int k;
    static long[][][]dp;
    static void mul(long[]x,long[]y,int xl,int yl){
        long[]r=new long[k+1];
        for(int i=0;i<=xl;++i){
            for(int j=0;j<=Math.min(k-i,yl);++j){
                r[i+j]=(r[i+j]+x[i]*y[j])%MOD;
            }
        }
        System.arraycopy(r,0,x,0,k+1);
    }
    static int dfs(int v,int p){
        int c=1;
        dp[0][v][0]=1;
        if(k>=1)dp[1][v][1]=1;
        long[]tmp=new long[k+1];
        for(int w:g[v]){
            if(p==w)continue;
            int sub=dfs(w,v);
            mul(dp[1][v],dp[1][w],c,sub);
            for(int j=0;j<=k;++j)tmp[j]=(dp[0][w][j]+dp[1][w][j])%MOD;
            mul(dp[0][v],tmp,c,sub);
            c+=sub;
        }
        return c;
    }
    @SuppressWarnings("unchecked")
    public static void main(String[] args) {
        MyScanner sc = new MyScanner();
        out = new PrintWriter(new BufferedOutputStream(System.out));
        int n=sc.nextInt();
        k=sc.nextInt();
        g=new ArrayList[n];
        Arrays.setAll(g,x->new ArrayList<Integer>());
        for(int i=0;i<n-1;++i){
            int a=sc.nextInt();
            int b=sc.nextInt();
            g[a].add(b);
            g[b].add(a);
        }
        dp=new long[2][n][k+1];
        dfs(0,-1);
        //System.err.println(Arrays.deepToString(dp));
        out.println((dp[0][0][k]+dp[1][0][k])%MOD);
        out.close();
    }
    // http://codeforces.com/blog/entry/7018
    //-----------PrintWriter for faster output---------------------------------
    public static PrintWriter out;
    //-----------MyScanner class for faster input----------
    public static class MyScanner {
        BufferedReader br;
        StringTokenizer st;
        public MyScanner() {
            br = new BufferedReader(new InputStreamReader(System.in));
        }
        String next() {
            while (st == null || !st.hasMoreElements()) {
                try {
                    st = new StringTokenizer(br.readLine());
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            return st.nextToken();
        }
        int nextInt() {
            return Integer.parseInt(next());
        }
        long nextLong() {
            return Long.parseLong(next());
        }
        double nextDouble() {
            return Double.parseDouble(next());
        }
        String nextLine(){
            String str = "";
            try {
                str = br.readLine();
            } catch (IOException e) {
                e.printStackTrace();
            }
            return str;
        }
        int[] nextIntArray(int n){
            int[]r=new int[n];
            for(int i=0;i<n;++i)r[i]=nextInt();
            return r;
        }
    }
}
0