結果

問題 No.1103 Directed Length Sum
ユーザー tentententen
提出日時 2022-09-23 11:48:34
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,821 bytes
コンパイル時間 2,877 ms
コンパイル使用メモリ 78,524 KB
実行使用メモリ 315,880 KB
最終ジャッジ日時 2024-12-22 05:13:37
合計ジャッジ時間 28,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
42,412 KB
testcase_01 AC 52 ms
37,152 KB
testcase_02 TLE -
testcase_03 AC 848 ms
126,304 KB
testcase_04 AC 1,169 ms
107,044 KB
testcase_05 AC 2,001 ms
160,604 KB
testcase_06 AC 839 ms
83,048 KB
testcase_07 AC 335 ms
54,036 KB
testcase_08 AC 635 ms
59,656 KB
testcase_09 AC 251 ms
49,688 KB
testcase_10 AC 694 ms
64,208 KB
testcase_11 AC 1,281 ms
114,488 KB
testcase_12 AC 887 ms
82,012 KB
testcase_13 AC 648 ms
65,356 KB
testcase_14 AC 211 ms
47,160 KB
testcase_15 AC 759 ms
76,388 KB
testcase_16 AC 1,376 ms
118,072 KB
testcase_17 AC 1,411 ms
120,140 KB
testcase_18 AC 557 ms
64,140 KB
testcase_19 AC 1,355 ms
116,108 KB
testcase_20 AC 280 ms
50,964 KB
testcase_21 AC 446 ms
56,764 KB
testcase_22 AC 1,133 ms
104,944 KB
testcase_23 AC 757 ms
315,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
    static long ans = 0;
    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<>());
        }
        int[] counts = new int[n];
        for (int i = 0; i < n - 1; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            graph.get(a).add(b);
            counts[b]++;
        }
        int idx = 0;
        for (int i = 0; i < n; i++) {
            if (counts[i] == 0) {
                idx = i;
                break;
            }
        }
        getCount(idx, 1);
        System.out.println(ans);
    }
    
    static int getCount(int idx, long depth) {
        int count = 1;
        for (int x : graph.get(idx)) {
            int tmp = getCount(x, depth + 1);
            count += tmp;
            ans += tmp * depth;
        }
        return count;
    }
}
    
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0