-
Notifications
You must be signed in to change notification settings - Fork 0
/
15.cpp
89 lines (63 loc) · 833 Bytes
/
15.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#include <iostream>
#include <algorithm>
#include <bits/stdc++.h>
using namespace std;
int main (){
int n,k;
cin >> n;
cin >> k;
int num =0;
int num2 = 0;
int arr2 [k];
for(int j = 0; j < k; j++){
cin >> arr2[j];
}
int na = sizeof(arr2)/sizeof(arr2[0]);
sort(arr2, arr2 + na );
for (int p = 0; p < n; p++){
if (arr2[num] == p +1){
num++;
}
else{
num2++;
cout << p + 1;
if (n-k > num2 ){
cout << " ";
}
}
}
// for (int i = 0; i < n; i++){
// for (int j = 0; j < k; j++){
//
//
//
//
//
// if (i+1 == arr2[j] ){
//
//
//
// }
// else {
//
// cout << i +1 ;
//
// if (n-k-1 >= i){
//
// cout << " ";
//
// }
//
//
// }
//
// }
//
//
//
//
//
// }
//
cout << "\n";
}