結果

問題 No.196 典型DP (1)
ユーザー 37zigen37zigen
提出日時 2020-03-31 17:22:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 447 ms / 2,000 ms
コード長 1,491 bytes
コンパイル時間 3,120 ms
コンパイル使用メモリ 88,028 KB
実行使用メモリ 136,316 KB
最終ジャッジ日時 2024-06-24 21:09:42
合計ジャッジ時間 15,445 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,456 KB
testcase_01 AC 117 ms
41,264 KB
testcase_02 AC 108 ms
39,940 KB
testcase_03 AC 125 ms
41,340 KB
testcase_04 AC 124 ms
41,412 KB
testcase_05 AC 111 ms
39,924 KB
testcase_06 AC 124 ms
41,144 KB
testcase_07 AC 123 ms
41,216 KB
testcase_08 AC 121 ms
41,188 KB
testcase_09 AC 124 ms
41,104 KB
testcase_10 AC 116 ms
40,132 KB
testcase_11 AC 133 ms
41,256 KB
testcase_12 AC 135 ms
41,824 KB
testcase_13 AC 147 ms
42,036 KB
testcase_14 AC 142 ms
42,400 KB
testcase_15 AC 225 ms
47,460 KB
testcase_16 AC 265 ms
52,256 KB
testcase_17 AC 279 ms
59,784 KB
testcase_18 AC 360 ms
72,980 KB
testcase_19 AC 345 ms
67,324 KB
testcase_20 AC 260 ms
49,768 KB
testcase_21 AC 298 ms
52,476 KB
testcase_22 AC 245 ms
48,352 KB
testcase_23 AC 335 ms
64,796 KB
testcase_24 AC 275 ms
51,432 KB
testcase_25 AC 389 ms
96,108 KB
testcase_26 AC 215 ms
45,756 KB
testcase_27 AC 287 ms
55,216 KB
testcase_28 AC 435 ms
96,160 KB
testcase_29 AC 444 ms
131,316 KB
testcase_30 AC 447 ms
136,316 KB
testcase_31 AC 212 ms
45,804 KB
testcase_32 AC 350 ms
73,032 KB
testcase_33 AC 375 ms
93,548 KB
testcase_34 AC 431 ms
118,084 KB
testcase_35 AC 426 ms
133,352 KB
testcase_36 AC 215 ms
45,912 KB
testcase_37 AC 349 ms
75,588 KB
testcase_38 AC 398 ms
93,840 KB
testcase_39 AC 407 ms
98,728 KB
testcase_40 AC 438 ms
134,872 KB
testcase_41 AC 110 ms
40,160 KB
testcase_42 AC 114 ms
40,156 KB
testcase_43 AC 123 ms
40,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	final long MOD=(long)1e9+7;
	
	long ADD(long...a) {
		long ret=0;
		for(long v:a)ret=(ret+v)%MOD;
		return ret;
	}
	
	int pointer=0;
	
	void dfs(int cur,int par,ArrayList<Integer>[] g,int[] l,int[] r,int[] v) {
		l[cur]=pointer;
		v[pointer++]=cur;
		for(int dst:g[cur]) {
			if(dst==par)continue;
			dfs(dst,cur,g,l,r,v);
		}
		r[cur]=pointer;
		v[pointer++]=cur;
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int[] l=new int[N];
		int[] r=new int[N];
		int[] v=new int[2*N];
		Arrays.fill(l, -1);
		Arrays.fill(r, -1);
		Arrays.fill(v, -1);
		int K=sc.nextInt();
		ArrayList<Integer>[] g=new ArrayList[N];
		for(int i=0;i<N;++i)g[i]=new ArrayList<>();
		for(int i=0;i<N-1;++i) {
			int a=sc.nextInt();
			int b=sc.nextInt();
			g[a].add(b);
			g[b].add(a);
		}
		dfs(0,-1,g,l,r,v);
		long[][] dp=new long[2*N][K+1];
		for(int i=0;i<dp.length;++i) {
			for(int j=0;j<dp[i].length;++j)dp[i][j]=ADD(dp[i][j],i==0?(j==0?1:0):dp[i-1][j]);
			if(r[v[i]]==i)continue;
			int ni=r[v[i]];
			int add=(r[v[i]]-l[v[i]]+1)/2;
			for(int cur=0;cur+add<=K;++cur) {
				int ncur=cur+add;
				dp[ni][ncur]+=(i==0?(cur==0?1:0):dp[i-1][cur]);
				dp[ni][ncur]%=MOD;
			}
		}
		System.out.println(dp[2*N-1][K]);
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}

0