結果

問題 No.2427 Tree Distance Two
ユーザー kusagame12kusagame12
提出日時 2023-11-09 18:43:47
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,752 bytes
コンパイル時間 2,434 ms
コンパイル使用メモリ 86,548 KB
実行使用メモリ 148,532 KB
最終ジャッジ日時 2024-09-26 00:28:19
合計ジャッジ時間 41,349 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,396 KB
testcase_01 AC 138 ms
41,368 KB
testcase_02 AC 139 ms
41,372 KB
testcase_03 AC 1,919 ms
140,040 KB
testcase_04 AC 122 ms
40,352 KB
testcase_05 TLE -
testcase_06 AC 138 ms
41,260 KB
testcase_07 AC 1,978 ms
144,656 KB
testcase_08 AC 1,974 ms
141,724 KB
testcase_09 AC 1,829 ms
142,000 KB
testcase_10 AC 1,945 ms
143,172 KB
testcase_11 AC 1,953 ms
143,112 KB
testcase_12 TLE -
testcase_13 AC 1,902 ms
139,980 KB
testcase_14 AC 1,510 ms
140,772 KB
testcase_15 AC 150 ms
41,680 KB
testcase_16 AC 145 ms
41,460 KB
testcase_17 AC 145 ms
40,252 KB
testcase_18 AC 146 ms
41,492 KB
testcase_19 AC 137 ms
41,496 KB
testcase_20 AC 337 ms
48,852 KB
testcase_21 AC 364 ms
49,652 KB
testcase_22 AC 250 ms
46,796 KB
testcase_23 AC 230 ms
46,176 KB
testcase_24 AC 359 ms
49,160 KB
testcase_25 AC 968 ms
77,452 KB
testcase_26 AC 1,757 ms
105,308 KB
testcase_27 AC 1,395 ms
94,368 KB
testcase_28 AC 1,912 ms
133,416 KB
testcase_29 AC 1,815 ms
126,984 KB
testcase_30 AC 1,436 ms
107,472 KB
testcase_31 AC 1,261 ms
90,276 KB
testcase_32 AC 1,523 ms
104,772 KB
testcase_33 AC 1,338 ms
100,892 KB
testcase_34 AC 812 ms
60,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {

        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        List<Edge> edges = new ArrayList<>();
        int[] edgeCounts = new int[n];
        for (int i = 0 ; i < n - 1; i++){
            int u = sc.nextInt() - 1;
            int v = sc.nextInt() - 1;
            edges.add(new Edge(u , v));
            edgeCounts[u]++;
            edgeCounts[v]++;
        } 
        
        Graph graph = new Graph(edges , n);
        
        StringBuilder sb = new StringBuilder();
        for(int i = 0 ; i < n ; i++){
            int edgeSum = 0;
            //頂点iがつながっている(隣接する)各頂点がもつ、辺の数を調べ、合計(edgeSum)をとる。
            for(Edge edge : graph.getEdgsList(i)){
                edgeSum += edgeCounts[edge.getTo()];
            }
            //頂点iがもつ辺の数と、辺の数の合計(edgeSum)を引く。
            sb.append(edgeSum - edgeCounts[i]+"\n");
        }
        
        System.out.print(sb);

    }

}

//グラフのエッジ(辺)を格納するクラス
class Edge
{
    public int from, to;
 
 	/**コンストラクタ
 	* @param : from 頂点 
 	* @param : to つながっている頂点
 	*/
   Edge(int from, int to)
    {
        this.from = from;
        this.to = to;
    }
    
    public int getFrom(){
        return from;
    }
    
    public int getTo(){
        return to;
    }
    
    public void setFrom(int from){
        this.from = from;
    }
    
    public void setTo(int to){
        this.to = to;
    }
 
}
 
//無向グラフクラス
class Graph
{
    //隣接リストを表すリストのリスト(ある頂点が、どの頂点とつながっているかを保持するリスト)
    Map<Integer , List<Edge>> edgeMap = new HashMap<>();
 
    /**コンストラクタ
    * @param edges  : 辺
    * @param n  : 頂点の個数
    *
    */
    Graph(List<Edge> edges, int n)
    {
 
        for (int i = 0; i < n; i++) {
            edgeMap.put(i ,new ArrayList<>());
        }
 
        //無向グラフにエッジを追加します
        for (Edge edge: edges)
        {
            int from = edge.getFrom();
            int to = edge.getTo();
 
            List<Edge> tmp1 = edgeMap.get(from);
            tmp1.add(edge);
            edgeMap.put(from , tmp1);
            
            List<Edge> tmp2 = edgeMap.get(to);
            Edge tmpEdge = new Edge(to , from);
            tmp2.add(tmpEdge);
            edgeMap.put(to , tmp2);
        }
        
    }
    
    public int size() {
		return edgeMap.size();
	}

	public List<Edge> getEdgsList(int vNum) {
		return edgeMap.get(vNum);
	}
	
}
0