結果

問題 No.1098 LCAs
ユーザー SSRSSSRS
提出日時 2020-05-24 20:23:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,714 bytes
コンパイル時間 2,017 ms
コンパイル使用メモリ 179,668 KB
実行使用メモリ 56,960 KB
最終ジャッジ日時 2024-11-22 16:21:51
合計ジャッジ時間 43,023 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
54,144 KB
testcase_02 AC 1 ms
10,496 KB
testcase_03 AC 1 ms
54,144 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
54,272 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
54,144 KB
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 1 ms
54,144 KB
testcase_10 AC 2 ms
10,496 KB
testcase_11 AC 2 ms
52,692 KB
testcase_12 AC 1 ms
10,496 KB
testcase_13 AC 88 ms
52,696 KB
testcase_14 AC 87 ms
10,496 KB
testcase_15 AC 85 ms
52,384 KB
testcase_16 AC 87 ms
10,496 KB
testcase_17 AC 88 ms
52,252 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int LOG = 19;
struct lowest_common_ancestor{
	int N;
	vector<int> d;
	vector<vector<int>> p;
	lowest_common_ancestor(vector<int> &P, vector<vector<int>> &C){
		N = P.size();
		d = vector<int>(N, 0);
		queue<int> Q;
		Q.push(0);
		while (!Q.empty()){
			int v = Q.front();
			Q.pop();
			for (int w : C[v]){
				d[w] = d[v] + 1;
				Q.push(w);
			}
		}
		p = vector<vector<int>>(N, vector<int>(LOG, -1));
		for (int i = 0; i < N; i++){
			p[i][0] = P[i];
		}
		for (int i = 1; i < LOG; i++){
			for (int j = 0; j < N; j++){
				if (p[j][i - 1] != -1){
					p[j][i] = p[p[j][i - 1]][i - 1];
				}
			}
		}
	}
	int query(int u, int v){
		if (d[u] > d[v]){
			swap(u, v);
		}
		for (int k = 0; k < LOG; k++){
			if ((d[v] - d[u]) >> k & 1){
				v = p[v][k];
			}
		}
		if (u == v){
		    return u;
		}
		for (int k = LOG - 1; k >= 0; k--){
			if (p[u][k] != p[v][k]){
				u = p[u][k];
				v = p[v][k];
				assert(u != -1);
				assert(v != -1);
			}
		}
		return p[u][0];
	}
};
int main(){
  int N;
  cin >> N;
  vector<vector<int>> E(N);
  for (int i = 0; i < N - 1; i++){
    int u, v;
    cin >> u >> v;
    u--;
    v--;
    E[u].push_back(v);
    E[v].push_back(u);
  }
  vector<int> p(N, -1);
  vector<vector<int>> c(N);
  queue<int> Q;
  Q.push(0);
  while (!Q.empty()){
    int v = Q.front();
    Q.pop();
    for (int w : E[v]){
      if (w != p[v]){
        c[v].push_back(w);
        p[w] = v;
        Q.push(w);
      }
    }
  }
  lowest_common_ancestor T(p, c);
  vector<long long> ans(N, 0);
  for (int i = 0; i < N; i++){
    for (int j = 0; j < N; j++){
      ans[T.query(i, j)]++;
    }
  }
  for (int i = 0; i < N; i++){
    cout << ans[i] << endl;
  }
}
0