結果

問題 No.1817 Reversed Edges
ユーザー tentententen
提出日時 2023-04-26 12:59:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 521 ms / 2,000 ms
コード長 2,578 bytes
コンパイル時間 2,252 ms
コンパイル使用メモリ 92,224 KB
実行使用メモリ 80,304 KB
最終ジャッジ日時 2024-04-27 16:55:53
合計ジャッジ時間 12,293 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,652 KB
testcase_01 AC 44 ms
37,020 KB
testcase_02 AC 46 ms
37,332 KB
testcase_03 AC 46 ms
37,068 KB
testcase_04 AC 44 ms
37,068 KB
testcase_05 AC 44 ms
37,388 KB
testcase_06 AC 44 ms
37,128 KB
testcase_07 AC 385 ms
60,940 KB
testcase_08 AC 237 ms
52,172 KB
testcase_09 AC 372 ms
57,648 KB
testcase_10 AC 256 ms
52,532 KB
testcase_11 AC 305 ms
54,524 KB
testcase_12 AC 420 ms
62,864 KB
testcase_13 AC 433 ms
62,856 KB
testcase_14 AC 429 ms
62,920 KB
testcase_15 AC 420 ms
62,944 KB
testcase_16 AC 414 ms
62,640 KB
testcase_17 AC 416 ms
62,888 KB
testcase_18 AC 521 ms
67,672 KB
testcase_19 AC 423 ms
63,396 KB
testcase_20 AC 427 ms
62,868 KB
testcase_21 AC 413 ms
62,780 KB
testcase_22 AC 330 ms
70,416 KB
testcase_23 AC 349 ms
61,492 KB
testcase_24 AC 362 ms
80,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    static ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
    static int[] depths;
    static int[] values;
    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);
        }
        depths = new int[n];
        values = new int[n];
        int count = getCount(0, 0, 0, 0);
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            sb.append(count - values[i] + depths[i] - values[i]).append("\n");
        }
        System.out.print(sb);
    }
    
    static int getCount(int idx, int p, int v, int d) {
        values[idx] = v;
        depths[idx] = d;
        int count = 0;
        for (int x : graph.get(idx)) {
            if (x == p) {
                continue;
            }
            int add = 0;
            if (idx > x) {
                add++;
            }
            count += getCount(x, idx, v + add, d + 1) + add;
        }
        return count;
    }
}
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();
    }
    
}
0