-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path2.1.4 - Healthy Holsteins.cpp
77 lines (71 loc) · 1.64 KB
/
2.1.4 - Healthy Holsteins.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
/*
ID: nathan.18
TASK: holstein
LANG: C++
*/
#include <iostream>
#include <string>
#include <utility>
#include <sstream>
#include <algorithm>
#include <stack>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <bitset>
#include <cmath>
#include <cstring>
#include <iomanip>
#include <fstream>
using namespace std;
#define INF 1000000000
#define LL_INF 4500000000000000000
#define LSOne(S) (S & (-S))
#define EPS 1e-9
#define A first
#define B second
#define mp make_pair
#define PI acos(-1.0)
typedef pair<int, int> ii;
typedef vector<int> vi;
typedef vector<ii> vii;
int main() {
freopen("holstein.in", "r", stdin);
freopen("holstein.out", "w", stdout);
int v, g; cin >> v;
int required[v]; for (int i = 0; i < v; i++) cin >> required[i];
cin >> g;
vi feeds[g];
for (int i = 0; i < g; i++) for (int j = 0; j < v; j++) {
int a; cin >> a; feeds[i].push_back(a);
}
int best = INF, bestMask = -1;
int sum[v];
for (int i = 0; i < (1 << g); i++) {
if (__builtin_popcount(i) >= best) continue;
memset(sum, 0, sizeof sum);
for (int j = 0; j < g; j++) {
if (i & (1 << j)) {
for (int k = 0; k < v; k++) {
sum[k] += feeds[j][k];
}
}
}
for (int k = 0; k < v; k++) {
if (sum[k] < required[k]) goto bad;
}
best = __builtin_popcount(i);
bestMask = i;
bad:
continue;
}
cout << best;
for (int i = 0; i < g; i++) {
if (bestMask & (1 << i)) {
cout << " " << i+1;
}
}
cout << endl;
return 0;
}