-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDrawRectangles.cpp
73 lines (58 loc) · 1.51 KB
/
DrawRectangles.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
// 사각형 그리기
// https://algospot.com/judge/problem/read/DRAWRECT
#include <iostream>
#include <vector>
using namespace std;
int main() {
int testCases = 0;
vector<pair<int, int>> vertexes;
vector<pair<int, int>> remainVertexes;
cin >> testCases;
// Get all vertexes that are 3 per test case
for (int i = 0; i < testCases * 3; i++)
{
int vertex[2];
for (int j = 0; j < 2; j++)
{
cin >> vertex[j];
}
vertexes.push_back(make_pair(vertex[0], vertex[1]));
}
int* x = new int[3];
int* y = new int[3];
int counter = 0;
for (vector<pair<int, int>>::iterator i = vertexes.begin();
i != vertexes.end();
++i)
{
// Get vertexes
x[counter] = i->first;
y[counter] = i->second;
counter++;
if (counter > 2)
{
// If count is full, verify remain vertex
int identicalX = 0;
int identicalY = 0;
if (x[0] == x[1]) identicalX = x[2];
else if (x[0] == x[2]) identicalX = x[1];
else if (x[1] == x[2]) identicalX = x[0];
if (y[0] == y[1]) identicalY = y[2];
else if (y[0] == y[2]) identicalY = y[1];
else if (y[1] == y[2]) identicalY = y[0];
// Save it to list
remainVertexes.push_back(make_pair(identicalX, identicalY));
// Reset arrays and counter to verify another vertex
for (int i = 0; i < 3; i++) { x[i] = 0; y[i] = 0; }
counter = 0;
}
}
// Print out remain vertexes
for (vector<pair<int, int>>::iterator i = remainVertexes.begin();
i != remainVertexes.end();
++i)
{
cout << i->first << " " << i->second << endl;
}
return 0;
}