您的位置:首页 > 编程语言 > Go语言

Codeforces Round #258 (Div. 2) D. Count Good Substrings

2016-05-08 21:46 483 查看
We call a string good, if after merging all the consecutive equal characters, the resulting string is palindrome. For example, "aabba" is good, because after the merging step it
will become "aba".

Given a string, you have to find two values:

the number of good substrings of even length;
the number of good substrings of odd length.

Input
The first line of the input contains a single string of length
n (1 ≤ n ≤ 105). Each character of the string will be either 'a' or 'b'.

Output
Print two space-separated integers: the number of good substrings of even length and the number of good substrings of odd length.

Examples

Input
bb


Output
1 2


Input
baab


Output
2 4


Input
babb


Output
2 5


Input
babaa


Output
2 7


Note
In example 1, there are three good substrings ("b", "b", and "bb"). One of them has even length and two of them have odd length.

In example 2, there are six good substrings (i.e. "b", "a", "a", "b", "aa",
"baab"). Two of them have even length and four of them have odd length.

In example 3, there are seven good substrings (i.e. "b", "a", "b", "b", "bb",
"bab", "babb"). Two of them have even length and five of them have odd length.

Definitions

A substring s[l, r]
(1 ≤ l ≤ r ≤ n) of string
s = s1s2...
sn is string
slsl + 1...
sr.

A string s = s1s2...
sn is a palindrome if it is equal to string
snsn - 1...
s1.

题解:统计奇偶位置a b的个数,然后完了。。。

#include <cstdio>
#include <cstring>
#include <iostream>
#define got(x) (x)*(x+1)/2
using namespace std;
string s;
long long num[2][2];
using namespace std;
int main()
{
cin.sync_with_stdio(false);
cin>>s;
int n = s.length();
for(int i = 0;i < n;i++) num[i%2][s[i]-'a']++;
cout<<num[0][1]*num[1][1] + num[0][0]*num[1][0]<<" ";
cout<<got(num[0][0]) + got(num[0][1]) + got(num[1][0]) + got(num[1][1]);
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: