結果
問題 | No.1103 Directed Length Sum |
ユーザー | tenten |
提出日時 | 2021-03-15 20:13:19 |
言語 | Java21 (openjdk 21) |
結果 |
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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
46,764 KB |
testcase_01 | AC | 132 ms
41,140 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 | -- | - |
ソースコード
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]; } }