結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー tentententen
提出日時 2023-01-12 14:28:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 451 ms / 2,000 ms
コード長 2,266 bytes
コンパイル時間 2,538 ms
コンパイル使用メモリ 94,380 KB
実行使用メモリ 78,012 KB
最終ジャッジ日時 2024-06-02 10:54:03
合計ジャッジ時間 13,302 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,136 KB
testcase_01 AC 48 ms
37,248 KB
testcase_02 AC 48 ms
36,928 KB
testcase_03 AC 451 ms
70,668 KB
testcase_04 AC 424 ms
61,868 KB
testcase_05 AC 430 ms
64,856 KB
testcase_06 AC 431 ms
61,724 KB
testcase_07 AC 441 ms
61,812 KB
testcase_08 AC 310 ms
54,348 KB
testcase_09 AC 203 ms
49,736 KB
testcase_10 AC 215 ms
50,348 KB
testcase_11 AC 167 ms
45,928 KB
testcase_12 AC 264 ms
53,088 KB
testcase_13 AC 283 ms
53,616 KB
testcase_14 AC 305 ms
54,624 KB
testcase_15 AC 250 ms
52,316 KB
testcase_16 AC 130 ms
41,292 KB
testcase_17 AC 135 ms
41,372 KB
testcase_18 AC 402 ms
57,612 KB
testcase_19 AC 165 ms
45,000 KB
testcase_20 AC 116 ms
39,788 KB
testcase_21 AC 243 ms
52,528 KB
testcase_22 AC 234 ms
50,992 KB
testcase_23 AC 127 ms
40,548 KB
testcase_24 AC 126 ms
40,292 KB
testcase_25 AC 123 ms
39,988 KB
testcase_26 AC 117 ms
40,492 KB
testcase_27 AC 73 ms
37,908 KB
testcase_28 AC 76 ms
38,292 KB
testcase_29 AC 118 ms
40,876 KB
testcase_30 AC 119 ms
40,628 KB
testcase_31 AC 97 ms
39,344 KB
testcase_32 AC 111 ms
40,116 KB
testcase_33 AC 176 ms
50,992 KB
testcase_34 AC 396 ms
78,012 KB
testcase_35 AC 219 ms
58,364 KB
testcase_36 AC 140 ms
44,436 KB
testcase_37 AC 325 ms
58,244 KB
testcase_38 AC 312 ms
56,528 KB
testcase_39 AC 50 ms
37,276 KB
testcase_40 AC 47 ms
37,024 KB
testcase_41 AC 48 ms
37,252 KB
testcase_42 AC 48 ms
37,364 KB
testcase_43 AC 48 ms
37,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int n;
    static ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
    static long total = 0;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        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);
        }
        getCount(0, 0);
        System.out.println(total);
    }
    
    static long getCount(int idx, int p) {
        long count = 1;
        for (int x : graph.get(idx)) {
            if (x != p) {
                long tmp = getCount(x, idx);
                total += (n - tmp) * tmp;
                count += tmp;
            }
        }
        total += (n - count) * count;
        total += n;
        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