-
Notifications
You must be signed in to change notification settings - Fork 0
/
3009.cpp
executable file
·74 lines (62 loc) · 1.3 KB
/
3009.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
// #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(){
// pair<int,int> point;
// vector<pair<int,int>> points;
// for(int i = 0; i<3; i++){
// int x,y;
// cin >> x >> y;
// point.first = x;
// point.second = y;
// points.push_back(point);
// }
// int x1_count = 1;
// int x1 = points[0].first;
// int x2_count = 0;
// int x2;
// for(int i = 1; i<3; i++){
// if(points[i].first != x1){
// x2_count += 1;
// x2 = points[i].first;
// }else{
// x1_count += 1;
// }
// }
// int result_x;
// if(x1_count == 2){
// result_x = x2;
// }else{
// result_x = x1;
// }
// int y1_count = 1;
// int y1 = points[0].second;
// int y2_count = 0;
// int y2;
// for(int i = 1; i<3; i++){
// if(points[i].second != y1){
// y2_count += 1;
// y2 = points[i].second;
// }else{
// y1_count += 1;
// }
// }
// int result_y;
// if(y1_count == 2){
// result_y = y2;
// }else{
// result_y = y1;
// }
// cout << result_x << " " << result_y << '\n';
// }