結果
問題 | No.2427 Tree Distance Two |
ユーザー | kusagame12 |
提出日時 | 2023-11-09 18:43:00 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,793 bytes |
コンパイル時間 | 2,513 ms |
コンパイル使用メモリ | 81,384 KB |
実行使用メモリ | 143,708 KB |
最終ジャッジ日時 | 2024-09-26 00:27:31 |
合計ジャッジ時間 | 23,319 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | TLE | - |
testcase_04 | WA | - |
testcase_05 | TLE | - |
testcase_06 | WA | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | WA | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
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.println(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); } }