-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy path73C. LionAge II.cpp
62 lines (48 loc) · 1.14 KB
/
73C. LionAge II.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 <bits/stdc++.h>
using namespace std;
string s;
int k, n, bn[27][27], dp[101][27][101];
int rec(int idx, int prv, int cur) {
if(idx == s.length())
return 0;
int &ret = dp[idx][prv][cur];
if(ret != -1e9)
return ret;
ret = max(ret, rec(idx + 1, s[idx] - 'a', cur) + bn[prv][s[idx] - 'a']);
for(int i = 0; cur < k && i < 26; ++i)
ret = max(ret, rec(idx + 1, i, cur + 1) + bn[prv][i]);
return ret;
}
void build_path(int idx, int prv, int cur) {
if(idx == s.length())
return;
int opt = rec(idx, prv, cur);
if(opt == rec(idx + 1, s[idx] - 'a', cur) + bn[prv][s[idx] - 'a']) {
cout << s[idx];
build_path(idx + 1, s[idx] - 'a', cur);
return;
}
for(int i = 0; cur < k && i < 26; ++i) {
if(opt == rec(idx + 1, i, cur + 1) + bn[prv][i]) {
cout << char(i + 'a');
build_path(idx + 1, i, cur + 1);
return;
}
}
}
int main() {
cin >> s >> k;
cin >> n;
for(int i = 0; i < n; ++i) {
char a, b;
int c;
cin >> a >> b >> c;
bn[a - 'a'][b -'a'] = c;
}
for(int i = 0; i < 101; ++i)
for(int j = 0; j < 27; ++j)
for(int k = 0; k < 101; ++k)
dp[i][j][k] = -1e9;
cout << rec(0, 26, 0) << endl;
return 0;
}