結果

問題 No.1098 LCAs
ユーザー ks2mks2m
提出日時 2020-06-26 22:26:33
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,258 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 78,032 KB
実行使用メモリ 110,480 KB
最終ジャッジ日時 2024-07-04 22:10:46
合計ジャッジ時間 22,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,396 KB
testcase_01 AC 55 ms
50,340 KB
testcase_02 AC 54 ms
50,200 KB
testcase_03 AC 54 ms
50,112 KB
testcase_04 AC 53 ms
50,288 KB
testcase_05 AC 54 ms
50,156 KB
testcase_06 AC 54 ms
50,400 KB
testcase_07 AC 54 ms
50,432 KB
testcase_08 AC 54 ms
50,224 KB
testcase_09 AC 53 ms
50,420 KB
testcase_10 AC 54 ms
50,448 KB
testcase_11 AC 53 ms
50,252 KB
testcase_12 AC 53 ms
50,144 KB
testcase_13 AC 97 ms
51,308 KB
testcase_14 AC 87 ms
51,144 KB
testcase_15 AC 97 ms
51,392 KB
testcase_16 AC 98 ms
51,256 KB
testcase_17 AC 102 ms
51,492 KB
testcase_18 AC 983 ms
97,484 KB
testcase_19 AC 951 ms
97,108 KB
testcase_20 AC 1,124 ms
97,616 KB
testcase_21 AC 1,112 ms
97,664 KB
testcase_22 AC 1,030 ms
98,244 KB
testcase_23 AC 1,104 ms
98,740 KB
testcase_24 AC 867 ms
95,928 KB
testcase_25 AC 893 ms
95,436 KB
testcase_26 AC 1,119 ms
102,828 KB
testcase_27 AC 1,174 ms
101,024 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 1,368 ms
110,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;

public class Main {
	static int n;
	static List<List<Integer>> list;
	static Obj[] ans;

	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		n = Integer.parseInt(sa[0]);
		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();

		ans = new Obj[n];
		dfs(0, -1);
		PrintWriter pw = new PrintWriter(System.out);
		for (Obj o : ans) {
			pw.println(o.val);
		}
		pw.flush();
	}

	static Obj dfs(int x, int p) {
		Obj o = new Obj();
		long total = 0;
		for (int c : list.get(x)) {
			if (c != p) {
				Obj res = dfs(c, x);
				o.size += res.size;
				total += res.total;
			}
		}
		o.size++;
		o.total = (long) o.size * o.size;
		o.val = o.total - total;
		return ans[x] = o;
	}

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