测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A61466. 2019年CSP-S1提高组初赛阅读程序题:#include <iostream>

编程题

题目描述

2019年CSP-S1提高组初赛阅读程序题:

#include <iostream>
using namespace std;
 
const int maxn = 1000;
int n;
int fa[maxn], cnt[maxn];
 
int getRoot(int v) {
    if (fa[v] == v) return v;
    return getRoot(fa[v]);
}
 
int main() {
    cin >> n;
    for (int i = 0; i < n; ++i) {
        fa[i] = i;
        cnt[i] = 1;
    }
    int ans = 0;
    for (int i = 0; i < n - 1; ++i) {
        int a, b, x, y;
        cin >> a >> b;
        x = getRoot(a);
        y = getRoot(b);
        ans += cnt[x] * cnt[y];
        fa[x] = y;
        cnt[y] += cnt[x];
    }
    cout << ans << endl;
    return 0;
}