結果
問題 | No.2427 Tree Distance Two |
ユーザー | tenten |
提出日時 | 2023-08-24 09:00:24 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,523 ms / 2,000 ms |
コード長 | 2,655 bytes |
コンパイル時間 | 2,455 ms |
コンパイル使用メモリ | 85,624 KB |
実行使用メモリ | 156,440 KB |
最終ジャッジ日時 | 2024-06-02 03:04:01 |
合計ジャッジ時間 | 27,869 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
50,872 KB |
testcase_01 | AC | 59 ms
50,972 KB |
testcase_02 | AC | 58 ms
50,444 KB |
testcase_03 | AC | 1,069 ms
123,684 KB |
testcase_04 | AC | 63 ms
50,696 KB |
testcase_05 | AC | 1,113 ms
124,168 KB |
testcase_06 | AC | 60 ms
50,720 KB |
testcase_07 | AC | 1,181 ms
130,508 KB |
testcase_08 | AC | 1,009 ms
114,552 KB |
testcase_09 | AC | 1,034 ms
114,596 KB |
testcase_10 | AC | 1,019 ms
116,496 KB |
testcase_11 | AC | 1,045 ms
113,960 KB |
testcase_12 | AC | 1,292 ms
128,520 KB |
testcase_13 | AC | 1,130 ms
118,784 KB |
testcase_14 | AC | 1,523 ms
156,440 KB |
testcase_15 | AC | 60 ms
50,788 KB |
testcase_16 | AC | 60 ms
50,944 KB |
testcase_17 | AC | 58 ms
50,584 KB |
testcase_18 | AC | 60 ms
50,900 KB |
testcase_19 | AC | 60 ms
50,680 KB |
testcase_20 | AC | 163 ms
55,076 KB |
testcase_21 | AC | 162 ms
55,912 KB |
testcase_22 | AC | 125 ms
53,040 KB |
testcase_23 | AC | 102 ms
51,728 KB |
testcase_24 | AC | 159 ms
55,340 KB |
testcase_25 | AC | 393 ms
70,420 KB |
testcase_26 | AC | 767 ms
97,588 KB |
testcase_27 | AC | 676 ms
82,088 KB |
testcase_28 | AC | 1,137 ms
121,792 KB |
testcase_29 | AC | 1,053 ms
109,824 KB |
testcase_30 | AC | 765 ms
97,000 KB |
testcase_31 | AC | 540 ms
77,932 KB |
testcase_32 | AC | 827 ms
97,548 KB |
testcase_33 | AC | 704 ms
90,020 KB |
testcase_34 | AC | 309 ms
65,416 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static ArrayList<ArrayList<Integer>> graph = new ArrayList<>(); static int[] ans; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); for (int i = 0; i < n; i++) { graph.add(new ArrayList<>()); } for (int i = 0; i < n - 1; i++) { int a = sc.nextInt() - 1; int b = sc.nextInt() - 1; graph.get(a).add(b); graph.get(b).add(a); } ans = new int[n]; calc(0, 0); System.out.println(String.join("\n", Arrays.stream(ans).mapToObj(String::valueOf).toArray(String[]::new))); } static void calc(int idx, int p) { if (idx > 0) { ans[idx] += getParentCount(p); ans[idx] += getChildrenCount(p) - 1; } for (int x : graph.get(idx)) { if (p != x) { ans[idx] += getChildrenCount(x); calc(x, idx); } } } static int getParentCount(int x) { if (x > 0) { return 1; } else { return 0; } } static int getChildrenCount(int x) { if (x > 0) { return graph.get(x).size() - 1; } else { return graph.get(x).size(); } } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }