結果

問題 No.277 根掘り葉掘り
ユーザー htensaihtensai
提出日時 2020-05-12 11:57:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,461 ms / 3,000 ms
コード長 1,327 bytes
コンパイル時間 2,582 ms
コンパイル使用メモリ 80,344 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-09-13 06:41:54
合計ジャッジ時間 21,216 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,248 KB
testcase_01 AC 135 ms
54,148 KB
testcase_02 AC 136 ms
53,848 KB
testcase_03 AC 157 ms
54,096 KB
testcase_04 AC 152 ms
54,040 KB
testcase_05 AC 154 ms
54,092 KB
testcase_06 AC 154 ms
54,048 KB
testcase_07 AC 151 ms
54,284 KB
testcase_08 AC 134 ms
53,920 KB
testcase_09 AC 1,154 ms
84,048 KB
testcase_10 AC 1,094 ms
74,976 KB
testcase_11 AC 1,442 ms
76,576 KB
testcase_12 AC 1,438 ms
86,144 KB
testcase_13 AC 1,461 ms
85,376 KB
testcase_14 AC 1,436 ms
85,028 KB
testcase_15 AC 1,381 ms
84,944 KB
testcase_16 AC 1,262 ms
85,204 KB
testcase_17 AC 1,428 ms
85,044 KB
testcase_18 AC 1,311 ms
83,900 KB
testcase_19 AC 1,396 ms
85,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
		for (int i = 0; i < n; i++) {
		    graph.add(new ArrayList<>());
		}
		for (int i = 0; i < n - 1; i++) {
		    int a = sc.nextInt() - 1;
		    int b = sc.nextInt() - 1;
		    graph.get(a).add(b);
		    graph.get(b).add(a);
		}
		int[] costs = new int[n];
		Arrays.fill(costs, Integer.MAX_VALUE);
		PriorityQueue<Path> queue = new PriorityQueue<>();
		queue.add(new Path(0, 0));
		while (queue.size() > 0) {
		    Path p = queue.poll();
		    if (graph.get(p.idx).size() == 1) {
		        p.value = 0;
		    }
		    if (costs[p.idx] <= p.value) {
		        continue;
		    }
		    costs[p.idx] = p.value;
		    for (int x : graph.get(p.idx)) {
		        queue.add(new Path(x, p.value + 1));
		    }
		}
		StringBuilder sb = new StringBuilder();
		for (int x : costs) {
		    sb.append(x).append("\n");
		}
		System.out.print(sb);
	}
	
	static class Path implements Comparable<Path> {
	    int idx;
	    int value;
	    
	    public Path(int idx, int value) {
	        this.idx = idx;
	        this.value = value;
	    }
	    
	    public int compareTo(Path another) {
	        return value - another.value;
	    }
	}
}
0