-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbaekjoon10216.cpp
82 lines (82 loc) · 1.38 KB
/
baekjoon10216.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
70
71
72
73
74
75
76
77
78
79
80
81
82
//#include <iostream>
//#include <vector>
//#include <cmath>
//
//using namespace std;
//
//int T, n, x, y, r;
//
//class Point {
//public:
// int x;
// int y;
// double r;
//
// Point(int x, int y, double r) {
// this->x = x;
// this->y = y;
// this->r = r;
// }
//};
//vector<Point> v;
//int parent[3001];
//
//int find_parent(int x) {
// if (parent[x] == x) {
// return x;
// }
// else
// return parent[x] = find_parent(parent[x]);
//}
//
//void union_parent(int x, int y) {
// x = find_parent(x);
// y = find_parent(y);
//
// if (x <= y) {
// parent[y] = x;
// }
// else
// parent[x] = y;
//}
//
//bool checkDistance(int i, int j) {
// double distance = sqrt(pow((v[i].x - v[j].x), 2) + pow((v[i].y - v[j].y), 2));
// if (distance <= v[i].r + v[j].r) {
// return true;
// }
// else
// return false;
//}
//
//int main() {
// ios::sync_with_stdio(false);
// cin.tie(0);
// cin >> T;
// for (int t = 0; t < T; t++) {
// cin >> n;
// for (int i = 0; i < n; i++) {
// parent[i] = i;
// }
// int count = 0;
// for (int i = 0; i < n; i++) {
// cin >> x >> y >> r;
// Point p(x, y, r);
// v.push_back(p);
// }
// for (int i = 0; i < n; i++) {
// for (int j = i+1; j < n; j++) {
// if (checkDistance(i, j)) {
// union_parent(i, j);
// }
// }
// }
// for (int i = 0; i < n; i++) {
// if (parent[i] == i) {
// count++;
// }
// }
// cout << count<<"\n";
// v.clear();
// }
//}