-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathProblem-2.c
49 lines (48 loc) · 933 Bytes
/
Problem-2.c
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
#include <stdio.h>
void sort(int *arr, int n)
{
for (int i = 0; i < n - 1; i++)
{
for (int j = 0; j < n - i - 1; j++)
{
if (arr[j] > arr[j + 1])
{
int temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
int main()
{
int x, y, ans = 0, k = 0;
scanf("%d", &x);
int child[x];
for (int i = 0; i < x; i++)
{
scanf("%d", &child[i]);
}
scanf("%d", &y);
int cookies[y];
for (int i = 0; i < y; i++)
{
scanf("%d", &cookies[i]);
}
sort(child, x);
sort(cookies, y);
for (int i = 0; i < x; i++)
{
for (int j = k; j < y; j++)
{
if (child[i] <= cookies[j])
{
ans++;
k = j + 1;
break;
}
}
}
printf("%d", ans);
return 0;
}