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
#include <iostream>

using namespace std;

int max(int* arr, int n) {
	int max = arr[0];

	for (int i = 1; i < n; i++) {
		if (arr[i] > max)
			max = arr[i];
	}

	return max;
}

int ileSieMiesci(int liczba, int szukana) {
	int res = 0;
	int l = szukana * szukana;
	while (true) {
		if (liczba - l >= 0) {
			res++;
			liczba -= l;
		}
		else {
			return res;
		}
	}
}
int findIndex(int* arr, int szukana, int n) {
	for (int i = 0; i < n; i++) {
		if (arr[i] == szukana) {
			return i;
		}
	}
}

bool endFunction(int* arr, int n) {
	for (int i = 0; i < n; i++) {
		if (arr[i] != -1) {
			return false;
		}
	}

	return true;
}

int main() {
	int h, w, n;
	cin >> h >> w;
	cin >> n;
	int* arr = new int[n];
	int powierzchnia = h * w;
	int wynik = 0;

	for (int i = 0; i < n; i++) {
		cin >> arr[i];
	}

	while (powierzchnia && !endFunction(arr, n)) {
		int maxObraz = max(arr, n);
		int ile = ileSieMiesci(powierzchnia, maxObraz);
		powierzchnia -= (maxObraz * maxObraz) * ile;
		wynik += ile;
		arr[findIndex(arr, maxObraz, n)] = -1;
	}

	if (powierzchnia == 0 && wynik > 0) {
		cout << wynik;
	}
	else {
		cout << "-1";
	}

	return 0;
}