You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
411 B

#include <bits/stdc++.h>
using namespace std;
/*
测试用例:
5
12321
*/
int cnt = 1;
// 递归写法
void dfs(string s) {
int p;
for (p = s.size() - 1; p; p--)
if (s[0] != s[p]) break;
string t = s.substr(1, p);
if (t.size()) cnt++, dfs(t);
}
int main() {
int n;
string s;
cin >> n >> s;
dfs(s);
cout << cnt << endl;
return 0;
}