시간 제한메모리 제한제출정답맞힌 사람정답 비율
0.5 초 1024 MB191917145.513%

문제

JOI-kun, an expert of home garden, grows vegetables of Joy grass in his home garden. In his garden, there are N flowerpots aligned in the east-west direction. These flowerpots are numbered by 1, . . . , N from the west end. There are N Joy grasses. In each flowerpot, there is one Joy grass planted.

In the spring, JOI-kun noticed that, against his expectations, Joy grasses had yielded leaves of various colors. Additionally, he discovered that Joy grasses had not grown as much as expected. He looked up books, and found the following facts:

  • There are 3 kinds of Joy grasses, yielding red, green, or yellow leaves.
  • If Joy grasses with the same leaf color are closely placed, their growth is prevented.

Therefore, JOI-kun decided to rearrange flowerpots so that no Joy grasses with the same leaf color adjoin Flowerpots are so heavy that JOI-kun can only swap two Joy grasses in neighboring flowerpots in a single operation. In other words, what JOI-kun can do in a single operation is choosing an arbitrary flowerpot i (1 ≤ i ≤ N −1) and then swapping Joy grasses in flowerpots i and i + 1.

Write a program which, given the number of Joy grasses and the colors of them, calculates the minimum number of operations which are required to rearrange Joy grasses so that no Joy grasses with the same leaf color adjoin.

입력

Read the following data from the standard input.

N
S

S is a string of length N. Its i-th (1 ≤ i ≤ N) character is R, G, and Y if the leaf color of the Joy grass in flowerpot i is red, green, and yellow, respectively.

출력

Write a line containing the minimum number of required operations to the standard output. If it is impossible to rearrange Joy grasses so that no Joy grasses with the same leaf color adjoin, write −1 instead.

제한

  • 1 ≤ N ≤ 400.
  • S is a string of length N.
  • Each character of S is R, G or Y.

서브태스크

번호배점제한
15

N ≤ 15.

255

N ≤ 60.

315

Each character of S is either R or G.

425

No additional constraints.

예제 입력 1

5
RRGYY

예제 출력 1

2

The following is a way to rearrange Joy grasses so that no Joy grasses with the same leaf color adjoin:

  • First, swap Joy grasses in flowerpots 3 and 4.
  • Second, swap Joy grasses in flowerpots 2 and 3.

After this, the order of Joy grasses will be RYRGY. Since it is impossible to rearrange Joy grasses with at most 1 operation, the answer is 2.

예제 입력 2

6
RRRRRG

예제 출력 2

-1

In this example, regardless of the operations, it is impossible to rearrange Joy grasses so that no Joy grasses with the same leaf color adjoin.

예제 입력 3

20
YYGYYYGGGGRGYYGRGRYG

예제 출력 3

8

채점 및 기타 정보

  • 예제는 채점하지 않는다.