D:
前面三题比较基础,分析一波,dp直接写ok、debug写了一个多小时,我真的是服了。最后就是一个下标写错了。。。。。。
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef double db;
typedef long double ldb;
typedef pair<int, int> pii;
typedef pair<ll, ll> PII;
#define pb emplace_back
//#define int ll
#define all(a) a.begin(),a.end()
#define x first
#define y second
#define ps push_back
#define endl '\n'
#define IOS ios::sync_with_stdio(0),cin.tie(0),cout.tie(0)
#define lc u << 1
#define rc u << 1 | 1
void solve();
const int N = 1e6 + 10;
signed main() {
IOS;
ll t = 1;
// cin >> t;
while (t--)
solve();
return 0;
}
ll dp[N][3]={0};//dp ij表示这一把出j赢的最多次数
char s[N]={0};
//要么平局要么赢
//0剪刀,1石头,2布
//如果对面出剪刀
//出石头 dp[i][1] = max(dp[i-1][0],dp[i-1][2]) + 1
//出剪刀
//
ll toi(char a)
{
if(a == 'S') return 0;
if(a == 'R') return 1;
if(a == 'P') return 2;
}
void solve() {
ll n; cin >> n;
for(int i = 1; i <= n; ++ i) cin >> s[i];
ll ans = 0;
for(int i = 1; i <= n; ++ i)
{
if(s[i] == 'S')//剪刀
{
dp[i][0] = max(dp[i-1][1],dp[i-1][2]);
dp[i][1] = max(dp[i-1][0],dp[i-1][2]) + 1;//石头赢
}
else if(s[i] == 'R')//石头
{
dp[i][1] = max(dp[i-1][0],dp[i-1][2]);
dp[i][2] = max(dp[i-1][0],dp[i-1][1]) + 1;//布赢
}
else if(s[i] == 'P') //b 2 P 布
{
dp[i][2] = max(dp[i-1][0],dp[i-1][1]);
dp[i][0] = max(dp[i-1][2],dp[i-1][1]) + 1;//剪刀赢
}
}
cout << max({dp[n][0],dp[n][1],dp[n][2]}) << endl;
}