Farmer John has arranged his () cows in a row and many of them are facing forward, like good cows. Some of them are facing backward, though, and he needs them all to face forward to make his life perfect.
Fortunately, FJ recently bought an automatic cow turning machine. Since he purchased the discount model, it must be irrevocably preset to turn () cows at once, and it can only turn cows that are all standing next to each other in line. Each time the machine is used, it reverses the facing direction of a contiguous group of cows in the line (one cannot use it on fewer than cows, e.g., at the either end of the line of cows). Each cow remains in the same *location* as before, but ends up facing the *opposite direction*. A cow that starts out facing forward will be turned backward by the machine and vice-versa.
Because FJ must pick a single, never-changing value of , please help him determine the minimum value of that minimizes the number of operations required by the machine to make all the cows face forward. Also determine , the minimum number of machine operations required to get all the cows facing forward using that value of .
INPUT FORMAT
Line : A single integer:
Lines : Line contains a single character, F or B, indicating whether cow is facing forward or backward.
OUTPUT FORMAT
Line : Two space-separated integers: and
SAMPLE INPUT
1 2 3 4 5 6 7 8
7 B B F B F B B
SAMPLE OUTPUT
1
3 3
HINT
For , the machine must be operated three times: turn cows , , and finally
intmain() { ios::sync_with_stdio(false); cin >> n; for (int i = 1; i <= n; i++) { cin >> ch; a[i] = ch == 'F'; } int k, m = INT_MAX; for (int l = 1; l <= n; l++) { memset(d, 0, sizeof(d)); bool sum = 0, flag = true; int cnt = 0; for (int i = 1; i <= n; i++) { sum ^= d[i]; if (a[i] ^ sum) continue; if (i + l - 1 > n) { flag = false; break; } sum ^= 1; d[i + l] ^= 1; cnt++; } if (flag) { if (m > cnt) { m = cnt; k = l; } } } cout << k << " " << m << endl; return0; }