「CF451D」Count Good Substrings

2014年7月25日2,2170

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:

  1. the number of good substrings of even length;
  2. 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.

Sample test(s)
input

output

input

output

input

output

input

output

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组成,而且相同的一段被缩距

那么对于一个子串,缩距之后,只要它头尾是相同的,那么它一定是缩距回文子串

所以只要简单dp即可

 

avatar
  Subscribe  
提醒