This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
int arr[100001];
int dp[100001][4][4][4][4];
int n;
int rec(int pos, int last_l, int plast_l, int last_r, int plast_r)
{
if (pos == n)
{
return 0;
}
if (dp[pos][last_l][plast_l][last_r][plast_r] != -1)
{
return dp[pos][last_l][plast_l][last_r][plast_r];
}
int inc = 1;
if (last_l != arr[pos] and last_l != 0)
{
inc++;
}
if (plast_l != arr[pos] and plast_l != last_l and plast_l != 0)
{
inc++;
}
dp[pos][last_l][plast_l][last_r][plast_r] = rec(pos+1, arr[pos], last_l, last_r, plast_r) + inc;
inc = 1;
if (last_r != arr[pos] and last_r != 0)
{
inc++;
}
if (plast_r != arr[pos] and plast_r != last_r and plast_r != 0)
{
inc++;
}
dp[pos][last_l][plast_l][last_r][plast_r] = max (dp[pos][last_l][plast_l][last_r][plast_r], rec(pos+1, last_l, plast_l, arr[pos], last_r) + inc);
return dp[pos][last_l][plast_l][last_r][plast_r];
}
int main()
{
memset(dp, -1, sizeof(dp));
cin>>n;
for (int i=0; i<n; i++)
{
char c;
cin>>c;
if (c=='M')
{
arr[i] = 1;
}
else if (c=='B')
{
arr[i] = 2;
}
else
{
arr[i] = 3;
}
}
cout<<rec(0, 0, 0, 0, 0);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |