結果
問題 | No.2427 Tree Distance Two |
ユーザー | kusagame12 |
提出日時 | 2023-11-09 20:24:39 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,487 bytes |
コンパイル時間 | 2,455 ms |
コンパイル使用メモリ | 80,356 KB |
実行使用メモリ | 203,856 KB |
最終ジャッジ日時 | 2024-09-26 00:35:13 |
合計ジャッジ時間 | 42,952 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 64 ms
38,012 KB |
testcase_01 | AC | 64 ms
37,604 KB |
testcase_02 | AC | 64 ms
37,584 KB |
testcase_03 | TLE | - |
testcase_04 | AC | 60 ms
37,716 KB |
testcase_05 | TLE | - |
testcase_06 | AC | 67 ms
38,012 KB |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 1,528 ms
178,856 KB |
testcase_15 | AC | 69 ms
38,096 KB |
testcase_16 | AC | 70 ms
37,832 KB |
testcase_17 | AC | 66 ms
38,012 KB |
testcase_18 | AC | 72 ms
37,744 KB |
testcase_19 | AC | 68 ms
37,836 KB |
testcase_20 | AC | 237 ms
45,900 KB |
testcase_21 | AC | 248 ms
45,912 KB |
testcase_22 | AC | 160 ms
41,428 KB |
testcase_23 | AC | 145 ms
40,416 KB |
testcase_24 | AC | 231 ms
45,812 KB |
testcase_25 | AC | 896 ms
77,716 KB |
testcase_26 | AC | 1,688 ms
127,112 KB |
testcase_27 | AC | 1,255 ms
96,984 KB |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | AC | 1,700 ms
125,420 KB |
testcase_31 | AC | 1,121 ms
94,208 KB |
testcase_32 | AC | 1,633 ms
125,576 KB |
testcase_33 | AC | 1,478 ms
119,248 KB |
testcase_34 | AC | 647 ms
66,112 KB |
ソースコード
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に変更したら、通った。 TreeMap<Integer , Set<Integer>> list = new TreeMap<>(); 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); } }