結果

問題 No.1817 Reversed Edges
ユーザー tentententen
提出日時 2022-01-22 13:52:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 794 ms / 2,000 ms
コード長 1,929 bytes
コンパイル時間 2,670 ms
コンパイル使用メモリ 78,460 KB
実行使用メモリ 81,452 KB
最終ジャッジ日時 2024-05-05 12:52:50
合計ジャッジ時間 16,074 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,492 KB
testcase_01 AC 51 ms
36,876 KB
testcase_02 AC 51 ms
36,976 KB
testcase_03 AC 51 ms
36,616 KB
testcase_04 AC 50 ms
36,672 KB
testcase_05 AC 52 ms
37,096 KB
testcase_06 AC 54 ms
36,892 KB
testcase_07 AC 561 ms
58,164 KB
testcase_08 AC 331 ms
52,140 KB
testcase_09 AC 589 ms
59,896 KB
testcase_10 AC 365 ms
53,916 KB
testcase_11 AC 445 ms
54,444 KB
testcase_12 AC 674 ms
64,680 KB
testcase_13 AC 654 ms
62,388 KB
testcase_14 AC 641 ms
62,596 KB
testcase_15 AC 670 ms
62,280 KB
testcase_16 AC 791 ms
66,868 KB
testcase_17 AC 794 ms
66,556 KB
testcase_18 AC 658 ms
63,300 KB
testcase_19 AC 644 ms
62,424 KB
testcase_20 AC 647 ms
63,316 KB
testcase_21 AC 646 ms
62,436 KB
testcase_22 AC 486 ms
61,328 KB
testcase_23 AC 424 ms
61,828 KB
testcase_24 AC 451 ms
81,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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];
        check(0, 0);
        calc(0, 0, 0);
        StringBuilder sb = new StringBuilder();
        for (int x : ans) {
            sb.append(x).append("\n");
        }
        System.out.print(sb);
    }
    
    static void check(int idx, int p) {
        if (p >= idx) {
            ans[0]++;
            ans[idx]--;
        } else {
            ans[idx]++;
        }
        for (int x : graph.get(idx)) {
            if (x == p) {
                continue;
            }
            check(x, idx);
        }
    }
    
    static void calc(int idx, int p, int value) {
        ans[idx] += value;
        for (int x : graph.get(idx)) {
            if (x == p) {
                continue;
            }
            calc(x, idx, ans[idx]);
        }
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0