-
Notifications
You must be signed in to change notification settings - Fork 0
/
1002.cpp
executable file
·58 lines (54 loc) · 1.22 KB
/
1002.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
// #include<iostream>
// #include<sstream>
// #include<fstream>
// #include<string>
// #include<algorithm>
// #include<cmath>
// #include<stdexcept>
// #include<memory>
// #include<vector>
// #include<list>
// #include<map>
// #include<set>
// #include<numeric>
// using namespace std;
// int main(){
// int n;
// cin >> n;
// while(n>0){
// int x1;
// int y1;
// int r1;
// int x2;
// int y2;
// int r2;
// cin >> x1 >> y1 >> r1 >> x2 >> y2 >> r2;
// //pseudo code
// long long int dist = pow((x2-x1),2) + pow((y2-y1),2);
// long int sub_radius = pow(r2-r1,2);
// long int sum_radius = pow(r2+r1,2);
// if(dist == 0){
// if((sub_radius)==0){
// cout << -1 << '\n';
// }
// else{
// cout << 0 << '\n';
// }
// }else{
// if(dist == sub_radius){
// cout << 1 << '\n';
// }else if(dist < sub_radius){
// cout << 0 << '\n';
// }else if(dist < sum_radius){
// cout << 2 << '\n';
// }else if(dist == sum_radius){
// cout << 1 << '\n';
// }else if(dist > sum_radius){
// cout << 0 << '\n';
// }else{
// cout << "???" << '\n';
// }
// }
// --n;
// }
// }