-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA1111.cpp
69 lines (68 loc) · 1.4 KB
/
A1111.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include<vector>
#include<map>
#include<cstdio>
#include<algorithm>
using namespace std;
struct fam
{
int np;
int ns;
double area;
};
map<int,fam> record;
const int maxn = 100010;
int parent[maxn];
int find(int id){
if(parent[id]==id)
return id;
ans = find(parent[id]);
parent[id] = ans;
return ans;
}
void join(int id1,int id2)
{
if(id1<id2){
int root = find(id1);
int mod = find(id2);
} else {
int root = find(id2);
int mod = find(id1);
}
parent[mod] = root;
}
int main()
{
for(int i = 0; i < maxn; i++) {
parent[i] = i;
}
int n;
cin >> n;
vector<int> person;
for(int i = 0; i < n; i++){
int now,far,mon,n_c;
cin >> now >> far >> mon >> n_c;
join(now,far);
join(now,mon);
person.push_back(now);
person.push_back(far);
person.push_back(mon);
while(n_c--){
int child;
cin >> child;
join(now,child);
person.push_back(child);
}
int k,double a;
cin >> record[now].ns >> record[now].area;
}
map<int,fam> ans;
for(int i = 0; i < person.size();i++){
int now = person[i];
int rep = find(person[i]);
ans[rep].np++;
if(record.count(now)){
ans[rep].area+=record[now].area;
ans[rep].ns += record[now].ns;
}
}
}