結果

問題 No.1103 Directed Length Sum
ユーザー mumumumupomumumumupo
提出日時 2020-07-03 21:47:17
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,112 bytes
コンパイル時間 3,358 ms
コンパイル使用メモリ 77,844 KB
実行使用メモリ 295,948 KB
最終ジャッジ日時 2024-09-17 00:02:33
合計ジャッジ時間 8,118 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
60,812 KB
testcase_01 AC 132 ms
54,052 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	
	static int N;
	static ArrayList<ArrayList<Integer>> edge;
	static long[] dp;
	static long[] cnt;
	static int mod = 1_000_000_007;

	public static void solve(int i) {
		if (dp[i] != -1) return;
		long val = 0;
		long val_cnt = 1;
		for (Integer tmp : edge.get(i)) {
			solve(tmp);
			val = (val+dp[tmp]+cnt[tmp])%mod;
			val_cnt += cnt[tmp];
		}
		dp[i] = val;
		cnt[i] = val_cnt;
	}

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		N = sc.nextInt();
		edge = new ArrayList<ArrayList<Integer>>();
		for (int i=0;i<N;i++) {
			ArrayList<Integer> add = new ArrayList<Integer>();
			edge.add(add);
		}

		boolean[] not_root = new boolean[N];
		for (int i=0;i<N-1;i++) {
			int A = sc.nextInt()-1;
			int B = sc.nextInt()-1;
			edge.get(A).add(B);
			not_root[B] = true;
		}

		int root = -1;
		for (int i=0;i<N;i++) {
			if (!not_root[i]) root = i;
		}
		dp = new long[N];
		cnt = new long[N];
		Arrays.fill(dp, -1);

		solve(root);
		long ans = 0L;
		for (int i=0;i<N;i++) {
			ans = (ans+dp[i])%mod;
		}
		System.out.println(ans);
	}
}
0