結果

問題 No.2638 Initial fare
ユーザー tentententen
提出日時 2024-02-26 17:09:25
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,707 bytes
コンパイル時間 2,406 ms
コンパイル使用メモリ 88,992 KB
実行使用メモリ 182,100 KB
最終ジャッジ日時 2024-09-29 11:40:25
合計ジャッジ時間 24,700 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
58,168 KB
testcase_01 AC 74 ms
51,296 KB
testcase_02 AC 75 ms
51,200 KB
testcase_03 AC 78 ms
51,384 KB
testcase_04 AC 1,058 ms
99,584 KB
testcase_05 AC 1,265 ms
111,808 KB
testcase_06 AC 72 ms
50,960 KB
testcase_07 AC 1,136 ms
111,028 KB
testcase_08 AC 1,010 ms
101,836 KB
testcase_09 AC 1,083 ms
113,108 KB
testcase_10 AC 1,051 ms
113,220 KB
testcase_11 AC 79 ms
50,944 KB
testcase_12 AC 1,165 ms
109,624 KB
testcase_13 AC 985 ms
101,052 KB
testcase_14 AC 1,125 ms
112,668 KB
testcase_15 AC 1,220 ms
113,048 KB
testcase_16 AC 85 ms
51,340 KB
testcase_17 AC 1,224 ms
111,412 KB
testcase_18 AC 1,199 ms
111,856 KB
testcase_19 AC 1,233 ms
123,016 KB
testcase_20 AC 1,204 ms
117,184 KB
testcase_21 AC 1,279 ms
130,980 KB
testcase_22 AC 80 ms
51,044 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[][] counts;
    static int[] parents1;
    static int[] parents2;
    static long ans = 0;
    static List<List<Integer>> graph;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        graph = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            graph.add(new ArrayList<>());
        }
        IntStream.range(0, n - 1).forEach(i -> {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            graph.get(a).add(b);
            graph.get(b).add(a);
        });
        parents1 = new int[n];
        parents2 = new int[n];
        counts = new int[n][4];
        setValue(0, -1, -1);
        setAns(0, 0);
        System.out.println(ans / 2);
    }
    
    static void setValue(int idx, int p1, int p2) {
        counts[idx][0] = 1;
        parents1[idx] = p1;
        parents2[idx] = p2;
        graph.get(idx).stream().filter(x -> x != p1).forEach(x -> {
            setValue(x, idx, p1);
            for (int i = 1; i <= 3; i++) {
                counts[idx][i] += counts[x][i - 1];
            }
        });
    }
    
    static void setAns(int idx, int p) {
        for (int i = 1; i <= 3; i++) {
            ans += counts[idx][i];
        }
        if (parents1[idx] >= 0) {
            ans += counts[parents1[idx]][2] - counts[idx][1];
            ans += counts[parents1[idx]][1] - 1;
            ans++;
        }
        if (parents2[idx] >= 0) {
            ans += counts[parents2[idx]][1] - 1;
            ans++;
            if (parents2[idx] != 0) {
                ans++;
            }
        }
        graph.get(idx).stream().filter(x -> x != p).forEach(x -> setAns(x, idx));
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0