結果

問題 No.2427 Tree Distance Two
ユーザー kusagame12kusagame12
提出日時 2023-11-09 20:23:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,814 ms / 2,000 ms
コード長 1,487 bytes
コンパイル時間 2,698 ms
コンパイル使用メモリ 80,868 KB
実行使用メモリ 203,480 KB
最終ジャッジ日時 2024-09-26 00:34:29
合計ジャッジ時間 33,379 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
38,044 KB
testcase_01 AC 67 ms
37,920 KB
testcase_02 AC 65 ms
37,632 KB
testcase_03 AC 1,752 ms
200,892 KB
testcase_04 AC 64 ms
38,060 KB
testcase_05 AC 1,814 ms
200,660 KB
testcase_06 AC 67 ms
37,932 KB
testcase_07 AC 1,649 ms
200,328 KB
testcase_08 AC 1,675 ms
201,812 KB
testcase_09 AC 1,637 ms
198,672 KB
testcase_10 AC 1,623 ms
201,244 KB
testcase_11 AC 1,577 ms
200,184 KB
testcase_12 AC 1,663 ms
203,480 KB
testcase_13 AC 1,656 ms
202,484 KB
testcase_14 AC 1,180 ms
185,372 KB
testcase_15 AC 65 ms
37,912 KB
testcase_16 AC 80 ms
38,016 KB
testcase_17 AC 67 ms
38,188 KB
testcase_18 AC 75 ms
38,172 KB
testcase_19 AC 68 ms
37,760 KB
testcase_20 AC 212 ms
45,924 KB
testcase_21 AC 222 ms
45,940 KB
testcase_22 AC 154 ms
41,332 KB
testcase_23 AC 123 ms
40,220 KB
testcase_24 AC 214 ms
45,764 KB
testcase_25 AC 676 ms
77,832 KB
testcase_26 AC 1,264 ms
126,088 KB
testcase_27 AC 923 ms
98,928 KB
testcase_28 AC 1,621 ms
177,176 KB
testcase_29 AC 1,624 ms
157,408 KB
testcase_30 AC 1,209 ms
124,212 KB
testcase_31 AC 875 ms
93,488 KB
testcase_32 AC 1,197 ms
123,352 KB
testcase_33 AC 1,102 ms
118,412 KB
testcase_34 AC 458 ms
66,456 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];
        //TreeMapからHashMapに変更したら、通った。
        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