-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcleaningUp.cpp
53 lines (51 loc) · 898 Bytes
/
cleaningUp.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
#include <iostream>
#include <vector>
using namespace std;
int main()
{
int t;
cin >> t;
while (t--)
{
int m, n;
cin >> n >> m;
vector<bool> jobs(n, false);
vector<int> C, A;
for (int i = 0; i < m; i++)
{
int temp;
cin >> temp;
jobs[temp - 1] = true;
}
// int countC = 0, countA = 0;
bool turnC = true;
for (int i = 0; i < n; i++)
{
if (!jobs[i])
{
// countC += turnC ? 1 : 0;
// countA += turnA ? 1 : 0;
if (turnC)
{
C.push_back(i);
}
else
{
A.push_back(i);
}
turnC = !turnC;
}
}
for (auto &&i : C)
{
cout << i + 1 << " ";
}
cout << "\n";
for (auto &&i : A)
{
cout << i + 1 << " ";
}
cout << "\n";
}
return 0;
}