結果
問題 | No.1103 Directed Length Sum |
ユーザー | tenten |
提出日時 | 2020-08-18 08:48:09 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,323 bytes |
コンパイル時間 | 2,334 ms |
コンパイル使用メモリ | 78,968 KB |
実行使用メモリ | 229,764 KB |
最終ジャッジ日時 | 2024-10-11 22:20:48 |
合計ジャッジ時間 | 18,877 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 134 ms
54,040 KB |
testcase_02 | TLE | - |
testcase_03 | WA | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
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 final int MOD = 1000000007; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); ArrayList<ArrayList<Integer>> graph = new ArrayList<>(); for (int i = 0; i < n; i++) { graph.add(new ArrayList<>()); } boolean[] used = new boolean[n]; for (int i = 0; i < n - 1; i++) { int a = sc.nextInt() - 1; int b = sc.nextInt() - 1; used[b] = true; graph.get(a).add(b); } ArrayDeque<Path> deq = new ArrayDeque<>(); for (int i = 0; i < n; i++) { if (!used[i]) { deq.add(new Path(i, 0)); break; } } long ans = 0; while (deq.size() > 0) { Path p = deq.poll(); ans += (long)p.value + (p.value + 1) / 2 % MOD; ans %= MOD; for (int x : graph.get(p.idx)) { deq.add(new Path(x, p.value + 1)); } } System.out.println(ans); } static class Path { int idx; int value; public Path(int idx, int value) { this.idx = idx; this.value = value; } } }