CSES - Datatähti 2022 loppu - Results
Submission details
Task:Peli
Sender:hltk
Submission time:2022-01-22 17:54:23 +0200
Language:C++ (C++17)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.11 s1, 2, 3details
#20.58 s2, 3details
#3--3details
#4ACCEPTED0.01 s1, 2, 3details
#5ACCEPTED0.01 s1, 2, 3details

Code

#include <bits/stdc++.h>
using namespace std;
string s;
int ans;
const int N = 100001;
int ab[N][11][11];
int ac[N][11][11];
int bc[N][11][11];
const int INF = 1e9;
int &state(int i, int a, int b, int c) {
if (!a) return bc[i][b][c];
if (!b) return ac[i][a][c];
return ab[i][a][b];
}
void cmax(int &x, int y) {
x = max(x, y);
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int n, k;
cin >> n >> k;
if (k < 3) {
cout << 0 << endl;
} else {
cin >> s;
for (int i = 0; i <= n; ++i) {
for (int a = 0; a <= k; ++a) {
for (int b = 0; b <= k; ++b) {
for (int c = 0; c <= k; ++c) {
if (a || b || c) {
state(i, a, b, c) = -INF;
}
}
}
}
if (i == 0) continue;
for (int a = 0; a <= k; ++a) {
for (int b = 0; b <= k - a; ++b) {
for (int c = 0; c <= k - a - b; ++c) {
if (a && b && c) continue;
if (a && b && s[i - 1] == 'C') {
cmax(state(i, a - 1, b - 1, c), state(i - 1, a, b, c) + 1);
}
if (a && c && s[i - 1] == 'B') {
cmax(state(i, a - 1, b, c - 1), state(i - 1, a, b, c) + 1);
}
if (b && c && s[i - 1] == 'A') {
cmax(state(i, a, b - 1, c - 1), state(i - 1, a, b, c) + 1);
}
if (s[i - 1] == 'A' && a + 1 <= k && a + b + c + 1 <= k && (!b || !c)) {
cmax(state(i, a + 1, b, c), state(i - 1, a, b, c));
}
if (s[i - 1] == 'B' && b + 1 <= k && a + b + c + 1 <= k && (!a || !c)) {
cmax(state(i, a, b + 1, c), state(i - 1, a, b, c));
}
if (s[i - 1] == 'C' && c + 1 <= k && a + b + c + 1 <= k && (!a || !b)) {
cmax(state(i, a, b, c + 1), state(i - 1, a, b, c));
}
}
}
}
for (int a = 0; a <= k; ++a) {
for (int b = 0; b <= k - a; ++b) {
for (int c = 0; c <= k - a - b; ++c) {
cmax(ans, state(i, a, b, c));
}
}
}
}
cout << ans << endl;
}
}

Test details

Test 1

Group: 1, 2, 3

Verdict:

input
100000 3
BBAACBCBACBACABBCBAABCBCCBCCAA...

correct output
18201

user output
13

Test 2

Group: 2, 3

Verdict:

input
100000 10
BAACABCCBCBAACBBCCCCABBBBACCBA...

correct output
29684

user output
122

Test 3

Group: 3

Verdict:

input
100000 50
ACAABCBBAAAACCBBABACACACBCAACA...

correct output
32740

user output
(empty)

Test 4

Group: 1, 2, 3

Verdict: ACCEPTED

input
3 1
ABC

correct output
0

user output
0

Test 5

Group: 1, 2, 3

Verdict: ACCEPTED

input
3 2
ABC

correct output
0

user output
0