eolymp
bolt
Try our new interface for solving problems
Problems

Miners

Miners

Time limit 1 second
Memory limit 128 MiB

There are two coal mines, each employing a group of miners. Mining coal is hard work, so miners need food to keep at it. Every time a shipment of food arrives at their mine, the miners produce some amount of coal. There are three types of food shipments: meat shipments, fish shipments and bread shipments.

Miners like variety in their diet and they will be more productive if their food supply is kept varied. More precisely, every time a new shipment arrives to their mine, they will consider the new shipment and the previous two shipments (or fewer if there haven't been that many) and then:

· If all shipments were of the same type, they will produce one unit of coal.

· If there were two different types of food among the shipments, they will produce two units of coal.

· If there were three different types of food, they will produce three units of coal.

We know in advance the types of food shipments and the order in which they will be sent. It is possible to influence the amount of coal that is produced by determining which shipment should go to which mine.

Shipments cannot be divided; each shipment must be sent to one mine or the other in its entirety.

The two mines don't necessarily have to receive the same number of shipments (in fact, it is permitted to send all shipments to one mine).

Your program will be given the types of food shipments, in the order in which they are to be sent. Write a program that finds the largest total amount of coal that can be produced (in both mines) by deciding which shipments should be sent to mine 1 and which shipments should be sent to mine 2.

Input data

The first line of input contains an integer n (1 ≤ n ≤ 100 000), the number of food shipments.

The second line contains a string consisting of n characters, the types of shipments in the order in which they are to be distributed. Each character will be one of the uppercase letters 'M' (for meat), 'F' (for fish) or 'B' (for bread).

Output data

Output a single integer, the largest total amount of coal that can be produced.

Examples

Input example #1
6
MBMFFB
Output example #1
12
Input example #2
16
MMBMBBBBMMMMMBMB
Output example #2
29
Source IOI-2007, Day 2