CF BUDDY
← Problems·

509E · Pretty Song

2000 · math, strings

Problem: When Sasha was studying in the seventh grade, he started listening to music a lot. In order to evaluate which songs he likes more, he introduced the notion of the song's prettiness. The title of the song is a word consisting of uppercase Latin letters. The prettiness of the song is the prettiness of its title.

Let's define the simple prettiness of a word as the ratio of the number of vowels in the word to the number of all letters in the word.

Let's define the prettiness of a word as the sum of simple prettiness of all the substrings of the word.

More formally, let's define the function vowel(c) which is equal to 1, if c is a vowel, and to 0 otherwise. Let si be the i-th character of string s, and si..j be the substring of word s, staring at the i-th character and ending at the j-th character (sisi + 1... sj, i ≤ j).

Then the simple prettiness of s is defined by the formula:

simple(s)=i=1svowel(si)ssimple(s) = \frac{\sum_{i=1}^{|s|} vowel(s_i)}{|s|}

The prettiness of s equals

1ijssimple(si..j)\sum_{1 \leq i \leq j \leq |s|} simple(s_{i..j})

Find the prettiness of the given song title.

We assume that the vowels are I, E, A, O, U, Y.

Input Format: The input contains a single string s (1 ≤ |s| ≤ 5·105) — the title of the song.

Output Format: Print the prettiness of the song with the absolute or relative error of at most 10 - 6.

Note: In the first sample all letters are vowels. The simple prettiness of each substring is 1. The word of length 7 has 28 substrings. So, the prettiness of the song equals to 28.

Sample Cases

Case 1

Input

IEAIAIO

Output

28.0000000

Case 2

Input

BYOB

Output

5.8333333

Case 3

Input

YISVOWEL

Output

17.0500000

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback