经典的并查集的题目,但要注意数量级。 这里用map解决了。 #include<cstdio> #include<unordered_map> using namespace std; typedef long long LL; // first是 father // second 是 height unordered_map<LL, pair<LL, LL>> myMap; LL find(L...