求助csps2019阅读程序题
  • 板块学术版
  • 楼主jht_零
  • 当前回复10
  • 已保存回复10
  • 发布时间2021/9/18 20:41
  • 上次更新2023/11/4 06:25:57
查看原帖
求助csps2019阅读程序题
34519
jht_零楼主2021/9/18 20:41
#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;
}
  1. 此程序的时间复杂度是()。

这是没有优化的并查集嘛,单次平均时间复杂度不是logn吗?为什么答案是n方啊???

2021/9/18 20:41
加载中...