-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path1744.cpp
40 lines (40 loc) · 1.02 KB
/
1744.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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/1744
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <deque>
using namespace std;
#define MAXN 5011
char entrada[MAXN];
long long a, b, resp;
int pretas, tamanho;
deque<int> proxima;
int main() {
scanf("%lld %lld", &a, &b);
scanf("%s", entrada);
tamanho = strlen(entrada);
for (int i = 0; i < tamanho; i++) {
if (entrada[i] == 'B') {
proxima.push_back(i + 1);
pretas++;
}
}
for (int vez = 1; vez <= pretas; vez++) {
int esta = proxima.front();
// printf("Esta %d Vez %d\n",esta,vez);
if (esta == vez) {
proxima.pop_front();
continue;
}
int queremos = proxima.back();
proxima.pop_back();
// printf("Queremos %d Custo %lld\n",queremos,min(a,
// (a-b)*(queremos-vez)
// )
// );
resp += min(a, (a - b) * (queremos - vez));
}
printf("%lld\n", resp);
return 0;
}