結果
問題 | No.2427 Tree Distance Two |
ユーザー | kusagame12 |
提出日時 | 2023-11-09 19:10:53 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,912 bytes |
コンパイル時間 | 2,558 ms |
コンパイル使用メモリ | 87,424 KB |
実行使用メモリ | 120,184 KB |
最終ジャッジ日時 | 2024-09-26 00:30:03 |
合計ジャッジ時間 | 42,496 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
40,596 KB |
testcase_01 | AC | 118 ms
40,200 KB |
testcase_02 | AC | 115 ms
39,764 KB |
testcase_03 | TLE | - |
testcase_04 | AC | 136 ms
41,488 KB |
testcase_05 | TLE | - |
testcase_06 | AC | 129 ms
41,516 KB |
testcase_07 | AC | 1,944 ms
120,184 KB |
testcase_08 | AC | 1,999 ms
117,168 KB |
testcase_09 | AC | 1,939 ms
115,704 KB |
testcase_10 | AC | 1,873 ms
120,092 KB |
testcase_11 | TLE | - |
testcase_12 | AC | 1,992 ms
116,632 KB |
testcase_13 | TLE | - |
testcase_14 | AC | 1,379 ms
111,764 KB |
testcase_15 | AC | 145 ms
41,932 KB |
testcase_16 | AC | 159 ms
41,744 KB |
testcase_17 | AC | 138 ms
41,216 KB |
testcase_18 | AC | 148 ms
41,576 KB |
testcase_19 | AC | 133 ms
40,180 KB |
testcase_20 | AC | 321 ms
48,496 KB |
testcase_21 | AC | 324 ms
47,816 KB |
testcase_22 | AC | 243 ms
46,480 KB |
testcase_23 | AC | 220 ms
45,320 KB |
testcase_24 | AC | 313 ms
48,832 KB |
testcase_25 | AC | 979 ms
69,696 KB |
testcase_26 | AC | 1,713 ms
88,788 KB |
testcase_27 | AC | 1,385 ms
81,200 KB |
testcase_28 | TLE | - |
testcase_29 | AC | 1,967 ms
103,544 KB |
testcase_30 | AC | 1,622 ms
87,904 KB |
testcase_31 | AC | 1,246 ms
75,832 KB |
testcase_32 | AC | 1,553 ms
87,768 KB |
testcase_33 | AC | 1,438 ms
84,912 KB |
testcase_34 | AC | 723 ms
58,136 KB |
ソースコード
import java.util.*; //無向グラフクラスを使うと、TLEした。 public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] edgeCounts = new int[n]; List<List<Integer>> list = new ArrayList<>(); for(int i = 0 ; i < n ; i++){ list.add(new ArrayList<>()); } for (int i = 0 ; i < n - 1; i++){ int u = sc.nextInt() - 1; int v = sc.nextInt() - 1; List<Integer> tmp1 = list.get(u); tmp1.add(v); list.set(u , tmp1); List<Integer> tmp2 = list.get(v); tmp2.add(u); list.set(v , tmp2); edgeCounts[u]++; edgeCounts[v]++; } StringBuilder sb = new StringBuilder(); for(int i = 0 ; i < n ; i++){ int edgeSum = 0; //頂点iがつながっている(隣接する)各頂点がもつ、辺の数を調べ、合計(edgeSum)をとる。 for(int to : list.get(i)){ edgeSum += edgeCounts[to]; } //頂点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 : 頂点の個数 * */ public Graph(int n) { for (int i = 0; i < n; i++) { edgeMap.put(i ,new ArrayList<>()); } } public void addEdge(Edge edge){ 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); } }