-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBC1025.cpp
More file actions
80 lines (68 loc) · 1.45 KB
/
BC1025.cpp
File metadata and controls
80 lines (68 loc) · 1.45 KB
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
#include <bits/stdc++.h>
using namespace std;
void swap(int *a, int *b)
{
int t = *a;
*a = *b;
*b = t;
}
int partition(int array[], int low, int high)
{
int pivot = array[high];
int i = (low - 1);
int len;
for (int j = low; j < high; j++)
{
if (array[j] <= pivot)
{
i++;
swap(&array[i], &array[j]);
}
}
swap(&array[i + 1], &array[high]);
return (i + 1);
}
void quickSort(int array[], int low, int high)
{
if (low < high)
{
int pi = partition(array, low, high);
quickSort(array, low, pi - 1);
quickSort(array, pi + 1, high);
}
}
int main()
{
int c = 0;
while (true)
{
int n, q;
cin >> n >> q;
if (n == 0 && q == 0)
break;
int arr[n];
for (int i = 0; i < n; i++)
cin >> arr[i];
// sorting
quickSort(arr, 0, n - 1);
cout << "CASE# " << ++c << ":" << endl;
for (int j = 0; j < q; j++)
{
int x;
bool found = false;
cin >> x;
for (int i = 0; i < n; i++)
{
if (x == arr[i])
{
cout << x << " found at " << i + 1 << endl;
found = true;
break;
}
}
if (!found)
cout << x << " not found" << endl;
}
}
return 0;
}