#U2122OB1. Photoshoot
Photoshoot
Farmer John, desperate to win the award for best cow photographer at the county fair, is trying to take the perfect photograph of his NN cows (2≤N≤2⋅1052≤N≤2⋅105, NN even).
Farmer John owns cows of two potential breeds: Guernseys and Holsteins. To make his photo as aesthetic as possible, he wants to line up his cows so that as many Guernseys are in even-numbered positions in the line as possible (the first position in the line is an odd position, the next is an even position, and so on). Due to his lack of strong communication with his cows, the only way he can achieve his goal is by asking even length "prefixes" of his cows to reverse themselves (a prefix consists of the range of cows from the first cow up to the jjth cow for some position jj).
Please count the minimum number of reversals required for Farmer John to achieve his goal.
INPUT FORMAT (input arrives from the terminal / stdin):
The first line of input contains the value of NN.The second line contains a string of length N,N, specifying the initial ordering of the cows from left to right. Each 'H' represents a Holstein, while each 'G' represents a Guernsey.
OUTPUT FORMAT (print output to the terminal / stdout):
Output the minimum number of reversals needed on a single line.
SAMPLE INPUT:
14
GGGHGHHGHHHGHG
SAMPLE OUTPUT:
1
In this example, it suffices to reverse the prefix consisting of the first six cows.
GGGHGHHGHHHGHG (Before)
-> HGHGGGHGHHHGHG (After)
Before the reversal, four Guernseys were at even positions. After the reversal, six Guernseys are at even positions. It is impossible for there to be more than six Guernseys at even positions.
SCORING:
- Test cases 2-6 satisfy N≤1000N≤1000.
- Test cases 7-11 satisfy no additional constraints.