题解 1368: You are my brother

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

优质题解

You are my brother (C++代码)

摘要:### 对于这道题来讲,小菜鸡觉得是并查集的思想去做,说起并查集,小菜鸡有一些自己的理解。 #### 并查集 类似于树状,比如这么讲:一个boss于众多个小弟,而小弟又有众多的小弟,层层递进的关……

You are my brother (C++代码)

摘要:解题思路:        参考代码:#include<bits/stdc++.h> using namespace std; int tree[2021], num; void init()……