#ARC098A. [ABC098C] Attention

[ABC098C] Attention

Score : 300300 points

Problem Statement

There are NN people standing in a row from west to east. Each person is facing east or west. The directions of the people is given as a string SS of length NN. The ii-th person from the west is facing east if Si=S_i = E, and west if Si=S_i = W.

You will appoint one of the NN people as the leader, then command the rest of them to face in the direction of the leader. Here, we do not care which direction the leader is facing.

The people in the row hate to change their directions, so you would like to select the leader so that the number of people who have to change their directions is minimized. Find the minimum number of people who have to change their directions.

Constraints

  • 2N3×1052 \leq N \leq 3 \times 10^5
  • S=N|S| = N
  • SiS_i is E or W.

Input

Input is given from Standard Input in the following format:

NN

SS

Output

Print the minimum number of people who have to change their directions.

5
WEEWW
1

Assume that we appoint the third person from the west as the leader. Then, the first person from the west needs to face east and has to turn around. The other people do not need to change their directions, so the number of people who have to change their directions is 11 in this case. It is not possible to have 00 people who have to change their directions, so the answer is 11.

12
WEWEWEEEWWWE
4
8
WWWWWEEE
3