blob: fbfa6d294f2016a0d42bc8be9ac2ccf781c3ffab (
plain)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
|
#include <iostream>
#include <vector>
struct Node {
int m = 0;
Node *set;
Node *left = nullptr;
Node *right = nullptr;
Node() : set(this) {}
void SetParent(Node *parent, bool l) {
set = parent;
l ? parent->left = this : parent->right = this;
}
Node *GetSetRepresentative() {
Node *r = this;
while (r->set != r) {
r = r->set;
}
set = r;
return set;
}
bool has_dfs = false;
void Dfs() {
if (has_dfs)
return;
has_dfs = true;
if (left != nullptr)
left->Dfs(m);
if (right != nullptr)
right->Dfs(m);
}
void Dfs(int c) {
m += c;
if (left != nullptr)
left->Dfs(m);
if (right != nullptr)
right->Dfs(m);
}
};
Node nodes[10010];
int main() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(nullptr);
int n, m;
std::cin >> n >> m;
for (int i = 0; i < m; i++) {
int operation, a, b;
std::cin >> operation >> a >> b;
if (operation == 1) {
auto ra = nodes[a].GetSetRepresentative(),
rb = nodes[b].GetSetRepresentative();
if (ra != rb) {
auto node = new Node;
ra->SetParent(node, true);
rb->SetParent(node, false);
}
} else {
nodes[a].GetSetRepresentative()->m += b;
}
}
for (int i = 1; i <= n; i++) {
auto &node = nodes[i];
node.GetSetRepresentative()->Dfs();
std::cout << node.m << ' ';
}
return 0;
}
|