結果

問題 No.1103 Directed Length Sum
ユーザー tenten
提出日時 2021-03-15 20:13:19
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,478 bytes
コンパイル時間 2,511 ms
コンパイル使用メモリ 79,696 KB
実行使用メモリ 410,276 KB
最終ジャッジ日時 2024-11-07 08:11:32
合計ジャッジ時間 10,746 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other TLE * 1 -- * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static ArrayList<ArrayList<Integer>> graphIn = new ArrayList<>();
    static ArrayList<ArrayList<Integer>> graphOut = new ArrayList<>();
    static int[] inCounts;
    static int[] outCounts;
    static final int MOD = 1000000007;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		for (int i = 0; i < n; i++) {
		    graphIn.add(new ArrayList<>());
		    graphOut.add(new ArrayList<>());
		}
		int[] ins = new int[n - 1];
		int[] outs = new int[n - 1];
		for (int i = 0; i < n - 1; i++) {
		    ins[i] = sc.nextInt() - 1;
		    outs[i] = sc.nextInt() - 1;
		    graphOut.get(ins[i]).add(outs[i]);
		    graphIn.get(outs[i]).add(ins[i]);
		}
		inCounts = new int[n];
		outCounts = new int[n];
		long ans = 0;
		for (int i = 0; i < n - 1; i++) {
		    ans += (long)getInCount(ins[i]) * getOutCount(outs[i]) % MOD;
		    ans %= MOD;
		}
		System.out.println(ans);
   }
   
   static int getInCount(int idx) {
       if (inCounts[idx] == 0) {
           inCounts[idx] = 1;
           for (int x : graphIn.get(idx)) {
               inCounts[idx] += getInCount(x);
           }
       }
       return inCounts[idx];
   }
   
   static int getOutCount(int idx) {
       if (outCounts[idx] == 0) {
           outCounts[idx] = 1;
           for (int x : graphOut.get(idx)) {
               outCounts[idx] += getOutCount(x);
           }
       }
       return outCounts[idx];
   }
}
0