-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstructs.cpp
47 lines (43 loc) · 878 Bytes
/
structs.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
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
struct point{
int x, num;
bool mast = false;
};
bool cmpPoint(point a, point b){
return a.x < b.x;
}
int main(){
int n;
cin >> n;
vector <point> line;
for (int i = 0; i < n; i++){
int x;
cin >> x;
point buff;
buff.x = x;
buff.num = i;
line.push_back(buff);
}
int m;
cin >> m;
for (int i = 0; i < m; i++){
int x;
cin >> x;
point buff;
buff.x = x;
buff.num = i;
buff.mast = true;
line.push_back(buff);
}
sort(line.begin(), line.end(), cmpPoint);
cout << "\n\n";
for (auto strt : line){
cout << strt.x << " " << strt.num;
if (strt.mast == true)
cout << " master";
cout << "\n";
}
}