結果

問題 No.1098 LCAs
ユーザー ks2mks2m
提出日時 2020-06-26 22:39:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,441 ms / 2,000 ms
コード長 1,703 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 79,912 KB
実行使用メモリ 112,040 KB
最終ジャッジ日時 2024-07-04 22:30:38
合計ジャッジ時間 22,452 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,000 KB
testcase_01 AC 54 ms
37,148 KB
testcase_02 AC 54 ms
37,020 KB
testcase_03 AC 53 ms
37,076 KB
testcase_04 AC 53 ms
36,856 KB
testcase_05 AC 53 ms
36,652 KB
testcase_06 AC 54 ms
37,136 KB
testcase_07 AC 54 ms
36,980 KB
testcase_08 AC 54 ms
37,148 KB
testcase_09 AC 54 ms
36,772 KB
testcase_10 AC 54 ms
37,020 KB
testcase_11 AC 54 ms
36,632 KB
testcase_12 AC 52 ms
36,824 KB
testcase_13 AC 100 ms
38,864 KB
testcase_14 AC 101 ms
38,448 KB
testcase_15 AC 105 ms
38,424 KB
testcase_16 AC 103 ms
38,688 KB
testcase_17 AC 95 ms
38,520 KB
testcase_18 AC 1,315 ms
94,632 KB
testcase_19 AC 1,242 ms
94,676 KB
testcase_20 AC 1,283 ms
94,796 KB
testcase_21 AC 1,355 ms
94,516 KB
testcase_22 AC 1,320 ms
94,260 KB
testcase_23 AC 1,147 ms
91,580 KB
testcase_24 AC 1,346 ms
106,460 KB
testcase_25 AC 1,337 ms
106,888 KB
testcase_26 AC 1,239 ms
110,960 KB
testcase_27 AC 1,441 ms
112,040 KB
testcase_28 AC 1,344 ms
90,720 KB
testcase_29 AC 1,305 ms
91,140 KB
testcase_30 AC 1,314 ms
91,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Queue;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		List<List<Integer>> list = new ArrayList<>(n);
		for (int i = 0; i < n; i++) {
			list.add(new ArrayList<>());
		}
		for (int i = 0; i < n - 1; i++) {
			sa = br.readLine().split(" ");
			int v = Integer.parseInt(sa[0]) - 1;
			int w = Integer.parseInt(sa[1]) - 1;
			list.get(v).add(w);
			list.get(w).add(v);
		}
		br.close();

		Obj[] ans = new Obj[n];
		List<Integer> order = new ArrayList<>();
		int[] par = new int[n];
		Arrays.fill(par, -2);
		Queue<Integer> que = new ArrayDeque<>();
		que.add(0);
		order.add(0);
		par[0] = -1;
		while (!que.isEmpty()) {
			int cur = que.poll();
			for (int next : list.get(cur)) {
				if (par[next] == -2) {
					que.add(next);
					order.add(next);
					par[next] = cur;
				}
			}
		}
		Collections.reverse(order);

		for (int i : order) {
			Obj o = new Obj();
			long total = 0;
			for (int c : list.get(i)) {
				if (c != par[i]) {
					o.size += ans[c].size;
					total += ans[c].total;
				}
			}
			o.size++;
			o.total = (long) o.size * o.size;
			o.val = o.total - total;
			ans[i] = o;
		}

		PrintWriter pw = new PrintWriter(System.out);
		for (Obj o : ans) {
			pw.println(o.val);
		}
		pw.flush();
	}

	static class Obj {
		int size;
		long val, total;
	}
}
0