-
Notifications
You must be signed in to change notification settings - Fork 21
/
dec.cpp
66 lines (59 loc) · 1.64 KB
/
dec.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
#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 <math.h>
#include <assert.h>
using namespace std;
#define INF 1000000000
#define LL_INF 4523372036854775807
#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;
struct Bonus {
int points, additional;
Bonus(int _pts, int _add) : points(_pts), additional(_add) {}
};
int main() {
freopen("dec.in", "r", stdin);
freopen("dec.out", "w", stdout);
int n, b; cin >> n >> b;
vector<Bonus> bonuses[n]; for (int i = 0; i < b; i++) {
int a, pts, add; cin >> a >> pts >> add;
bonuses[a-1].emplace_back(pts, add);
}
int cows[n][n];
for (int i = 0; i < n; i++) for (int j = 0; j < n; j++) cin >> cows[i][j];
int dp[(1 << n)]; memset(dp, 0, sizeof dp);
for (int i = 0; i < (1 << n); i++) {
int event = __builtin_popcount(i);
for (int j = 0; j < n; j++) {
if (i & (1 << j)) continue;
int cowScore = cows[j][event];
int totScore = dp[i] + cowScore;
int bonusToAdd = 0;
for (Bonus bonus : bonuses[event]) if (bonus.points <= totScore) bonusToAdd += bonus.additional;
totScore += bonusToAdd;
int idx = i | (1 << j);
dp[idx] = max(dp[idx], totScore);
}
}
cout << dp[(1 << n) - 1] << endl;
return 0;
}