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];
unordered_map<int,int> dp[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[last_l][plast_l][last_r][plast_r][pos] != 0)
{
return dp[last_l][plast_l][last_r][plast_r][pos];
}
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[last_l][plast_l][last_r][plast_r][pos] = 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[last_l][plast_l][last_r][plast_r][pos] = max (dp[last_l][plast_l][last_r][plast_r][pos], rec(pos+1, last_l, plast_l, arr[pos], last_r) + inc);
return dp[last_l][plast_l][last_r][plast_r][pos];
}
int main()
{
cin>>n;
for (int i=0; i<n; i++)
{
char c;
cin>>c;
if (c=='B')
{
arr[i] = 1;
}
else if (c=='F')
{
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... |