結果
問題 | No.1103 Directed Length Sum |
ユーザー | tenten |
提出日時 | 2021-03-15 20:16:23 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,646 bytes |
コンパイル時間 | 2,747 ms |
コンパイル使用メモリ | 78,244 KB |
実行使用メモリ | 400,544 KB |
最終ジャッジ日時 | 2024-11-07 08:18:06 |
合計ジャッジ時間 | 9,119 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
36,460 KB |
testcase_01 | AC | 52 ms
36,732 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.*; import java.io.*; 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) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); 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++) { String[] line = br.readLine().split(" ", 2); ins[i] = Integer.parseInt(line[0]) - 1; outs[i] = Integer.parseInt(line[1]) - 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]; } }