-
Notifications
You must be signed in to change notification settings - Fork 2
/
zad4_mb.cpp
62 lines (46 loc) · 1.51 KB
/
zad4_mb.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
#include <iostream>
#include <limits.h>
#include <vector>
int banknoty(int kwota, const std::vector<int> &b, const std::vector<int> &c) {
// dp[i][k] i - ile banknotów, k - kwota
std::vector<std::vector<int>> dp(b.size() + 1, std::vector<int>(kwota + 1, -1));
// zero zawsze można uzyskac za pomocą zero banknotów
for (size_t i = 0; i < dp.size(); i++)
dp[i][0] = 0;
// iterujemy przez banknoty
for (size_t i = 1; i <= b.size(); i++) {
int nominal = b[i - 1];
int ileDostepnych = c[i - 1];
// iterujemy przez kwoty
for (int k = 1; k <= kwota; k++) {
// not adding any banknoty
dp[i][k] = dp[i - 1][k];
// adding 1 or more banknoty
for (int ile = 1; ile <= ileDostepnych; ile++) {
int reszta = k - nominal * ile;
if (reszta < 0)
break;
// nie da sie wyplacic reszty
if (dp[i - 1][reszta] == -1)
continue;
int nowaIlosc = dp[i - 1][reszta] + ile;
if (dp[i][k] == -1 || nowaIlosc < dp[i][k])
dp[i][k] = nowaIlosc;
}
}
}
return dp[b.size()][kwota];
}
int main() {
int n;
std::cin >> n;
std::vector<int> b(n);
for (int i = 0; i < n; i++)
std::cin >> b[i];
std::vector<int> c(n);
for (int i = 0; i < n; i++)
std::cin >> c[i];
int k;
std::cin >> k;
std::cout << banknoty(k, b, c);
}