結果

問題 No.399 動的な領主
ユーザー htensaihtensai
提出日時 2020-06-12 14:55:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,214 ms / 2,000 ms
コード長 2,590 bytes
コンパイル時間 2,794 ms
コンパイル使用メモリ 78,944 KB
実行使用メモリ 124,036 KB
最終ジャッジ日時 2024-06-24 03:56:03
合計ジャッジ時間 17,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,904 KB
testcase_01 AC 51 ms
37,192 KB
testcase_02 AC 57 ms
37,248 KB
testcase_03 AC 55 ms
37,068 KB
testcase_04 AC 113 ms
39,464 KB
testcase_05 AC 236 ms
48,560 KB
testcase_06 AC 1,197 ms
97,960 KB
testcase_07 AC 1,131 ms
98,092 KB
testcase_08 AC 1,175 ms
101,104 KB
testcase_09 AC 1,117 ms
100,936 KB
testcase_10 AC 137 ms
41,424 KB
testcase_11 AC 228 ms
48,852 KB
testcase_12 AC 1,186 ms
105,304 KB
testcase_13 AC 1,055 ms
102,760 KB
testcase_14 AC 806 ms
123,880 KB
testcase_15 AC 805 ms
124,036 KB
testcase_16 AC 887 ms
111,220 KB
testcase_17 AC 1,214 ms
101,044 KB
testcase_18 AC 1,188 ms
101,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
	static ArrayList<HashSet<Integer>> graph = new ArrayList<>();
	static long[] costs;
	static int[] depth;
	static int[][] parents;
	public static void main (String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		for (int i = 0; i < n; i++) {
		    graph.add(new HashSet<>());
		}
		for (int i = 0; i < n - 1; i++) {
		    String[] line = br.readLine().split(" ", 2);
		    int a = Integer.parseInt(line[0]) - 1;
		    int b = Integer.parseInt(line[1]) - 1;
		    graph.get(a).add(b);
		    graph.get(b).add(a);
		}
		costs = new long[n];
		parents = new int[18][n];
		depth = new int[n];
		setParent(0, 0, 0);
		for (int i = 1; i < 18; i++) {
		    for (int j = 0; j < n; j++) {
		        parents[i][j] = parents[i - 1][parents[i - 1][j]];
		    }
		}
		int m = Integer.parseInt(br.readLine());
		for (int i = 0; i < m; i++) {
		    String[] line = br.readLine().split(" ", 2);
		    int a = Integer.parseInt(line[0]) - 1;
		    int b = Integer.parseInt(line[1]) - 1;
		    int lca = getLCA(a, b);
		    costs[a]++;
		    costs[b]++;
		    costs[lca]--;
		    if (lca != 0) {
		        costs[parents[0][lca]]--;
		    }
		}
		ArrayDeque<Integer> deq = new ArrayDeque<>();
		for (int i = 1; i < n; i++) {
		    if (graph.get(i).size() == 1) {
		        deq.add(i);
		    }
		}
		while (deq.size() > 0) {
		    int x = deq.poll();
		    if (x == 0) {
		        continue;
		    }
		    costs[parents[0][x]] += costs[x];
		    graph.get(parents[0][x]).remove(x);
		    if (graph.get(parents[0][x]).size() == 1) {
		        deq.add(parents[0][x]);
		    }
		}
		long total = 0;
		for (long x : costs) {
		    total += x * (x + 1) / 2;
		}
		System.out.println(total);
	}
	
	static void setParent(int idx, int parent, int d) {
	    parents[0][idx] = parent;
	    depth[idx] = d;
	    for (int x : graph.get(idx)) {
	        if (x == parent) {
	            continue;
	        }
	        setParent(x, idx, d + 1);
	    }
	}
	
	static int getLCA(int a, int b) {
	    if (depth[a] > depth[b]) {
	        return getLCA(b, a);
	    }
	    for (int i = 17; i >= 0; i--) {
	        if (depth[b] - depth[a] >= (1 << i)) {
	            b = parents[i][b];
	        }
	    }
	    for (int i = 17; i >= 0; i--) {
	        if (parents[i][a] != parents[i][b]) {
	            a = parents[i][a];
	            b = parents[i][b];
	        }
	    }
	    if (a != b) {
            a = parents[0][a];
            b = parents[0][b];
	    }
	    return a;
	}
}
0