結果

問題 No.196 典型DP (1)
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-01-22 11:42:20
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 2,910 bytes
コンパイル時間 2,723 ms
コンパイル使用メモリ 87,592 KB
実行使用メモリ 175,932 KB
最終ジャッジ日時 2024-12-25 22:14:02
合計ジャッジ時間 13,961 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 69 ms
37,108 KB
testcase_02 AC 61 ms
37,172 KB
testcase_03 AC 59 ms
36,824 KB
testcase_04 AC 61 ms
36,832 KB
testcase_05 AC 61 ms
37,372 KB
testcase_06 AC 60 ms
37,084 KB
testcase_07 AC 66 ms
37,264 KB
testcase_08 RE -
testcase_09 AC 59 ms
37,228 KB
testcase_10 AC 59 ms
37,492 KB
testcase_11 RE -
testcase_12 AC 62 ms
37,384 KB
testcase_13 AC 60 ms
37,248 KB
testcase_14 AC 63 ms
37,784 KB
testcase_15 AC 112 ms
43,928 KB
testcase_16 AC 163 ms
52,416 KB
testcase_17 AC 214 ms
60,428 KB
testcase_18 AC 322 ms
79,164 KB
testcase_19 AC 281 ms
69,040 KB
testcase_20 AC 164 ms
45,692 KB
testcase_21 AC 237 ms
51,460 KB
testcase_22 AC 143 ms
42,028 KB
testcase_23 AC 334 ms
68,560 KB
testcase_24 AC 243 ms
50,452 KB
testcase_25 AC 498 ms
104,072 KB
testcase_26 RE -
testcase_27 AC 339 ms
61,184 KB
testcase_28 AC 380 ms
104,376 KB
testcase_29 AC 441 ms
153,564 KB
testcase_30 AC 490 ms
175,932 KB
testcase_31 RE -
testcase_32 AC 491 ms
77,384 KB
testcase_33 AC 481 ms
96,372 KB
testcase_34 AC 478 ms
136,588 KB
testcase_35 AC 480 ms
152,804 KB
testcase_36 RE -
testcase_37 AC 356 ms
77,840 KB
testcase_38 AC 519 ms
97,952 KB
testcase_39 AC 520 ms
102,692 KB
testcase_40 AC 477 ms
153,356 KB
testcase_41 AC 58 ms
36,980 KB
testcase_42 AC 60 ms
37,424 KB
testcase_43 AC 62 ms
37,120 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;
        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