首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
hdu3047专题
hdu3047 带权并查集
带权并查集 #include <iostream>#include <cstring>using namespace std;int father[50005];int rank[50005];int n,m;int find(int x){if (x == father[x])return x;int t = father[x];father[x] = find(father[x]
阅读更多...