結果

問題 No.2427 Tree Distance Two
ユーザー kusagame12kusagame12
提出日時 2023-11-09 20:21:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,971 ms / 2,000 ms
コード長 1,423 bytes
コンパイル時間 2,432 ms
コンパイル使用メモリ 79,752 KB
実行使用メモリ 199,932 KB
最終ジャッジ日時 2024-09-26 00:33:47
合計ジャッジ時間 36,695 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
37,960 KB
testcase_01 AC 71 ms
37,400 KB
testcase_02 AC 64 ms
38,084 KB
testcase_03 AC 1,909 ms
188,372 KB
testcase_04 AC 67 ms
37,992 KB
testcase_05 AC 1,911 ms
189,624 KB
testcase_06 AC 63 ms
37,700 KB
testcase_07 AC 1,703 ms
187,136 KB
testcase_08 AC 1,836 ms
189,444 KB
testcase_09 AC 1,790 ms
189,400 KB
testcase_10 AC 1,949 ms
185,776 KB
testcase_11 AC 1,971 ms
199,932 KB
testcase_12 AC 1,751 ms
189,896 KB
testcase_13 AC 1,850 ms
189,120 KB
testcase_14 AC 1,244 ms
184,892 KB
testcase_15 AC 64 ms
37,976 KB
testcase_16 AC 69 ms
37,800 KB
testcase_17 AC 65 ms
38,036 KB
testcase_18 AC 71 ms
37,896 KB
testcase_19 AC 69 ms
38,076 KB
testcase_20 AC 211 ms
45,640 KB
testcase_21 AC 224 ms
45,876 KB
testcase_22 AC 161 ms
41,800 KB
testcase_23 AC 128 ms
39,528 KB
testcase_24 AC 209 ms
45,728 KB
testcase_25 AC 710 ms
77,616 KB
testcase_26 AC 1,303 ms
125,084 KB
testcase_27 AC 1,150 ms
109,140 KB
testcase_28 AC 1,754 ms
164,980 KB
testcase_29 AC 1,715 ms
147,140 KB
testcase_30 AC 1,288 ms
123,624 KB
testcase_31 AC 1,026 ms
97,492 KB
testcase_32 AC 1,246 ms
122,772 KB
testcase_33 AC 1,127 ms
117,760 KB
testcase_34 AC 534 ms
66,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

//無向グラフクラスを使うと、TLEした。
public class Main {
    public static void main(String[] args) throws Exception {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        int[] edgeCounts = new int[n+1];
        HashMap<Integer , Set<Integer>> list = new HashMap<>();
        for(int i=1,len=n;i<=len;i++){
            list.put(i ,new HashSet<>());
        }
        for(int i=0,len=n-1;i<len;i++){
            String[] data = br.readLine().split(" ");
            int u = Integer.parseInt(data[0]);
            int v = Integer.parseInt(data[1]);
            list.get(u).add(v);
            list.get(v).add(u);
            edgeCounts[u]++;
            edgeCounts[v]++;
        }
        
        br.close();
        
        StringBuilder sb = new StringBuilder();
        int edgeSum = 0;
        for(int i=1,len=n;i<=len;i++){
            //頂点iがつながっている(隣接する)各頂点がもつ、辺の数を調べ、合計(edgeSum)をとる。
            for(int to : list.get(i)){
                edgeSum += edgeCounts[to];
            }
            //頂点iがもつ辺の数と、辺の数の合計(edgeSum)を引く。
            sb.append(edgeSum - edgeCounts[i]+"\n");
            edgeSum = 0;
        }
        
        System.out.print(sb);

    }

}
0