CF1238E.Keyboard Purchase

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You have a password which you often type — a string ss of length nn . Every character of this string is one of the first mm lowercase Latin letters.

Since you spend a lot of time typing it, you want to buy a new keyboard.

A keyboard is a permutation of the first mm Latin letters. For example, if m=3m = 3 , then there are six possible keyboards: abc, acb, bac, bca, cab and cba.

Since you type your password with one finger, you need to spend time moving your finger from one password character to the next. The time to move from character sis_i to character si+1s_{i+1} is equal to the distance between these characters on keyboard. The total time you have to spend typing the password with a keyboard is called the slowness of this keyboard.

More formaly, the slowness of keyboard is equal to i=2npossi1possi\sum\limits_{i=2}^{n} |pos_{s_{i-1}} - pos_{s_i} | , where posxpos_x is position of letter xx in keyboard.

For example, if ss is aacabc and the keyboard is bac, then the total time of typing this password is posaposa+posaposc+poscposa+posaposb+posbposc|pos_a - pos_a| + |pos_a - pos_c| + |pos_c - pos_a| + |pos_a - pos_b| + |pos_b - pos_c| = 22+23+32+21+13|2 - 2| + |2 - 3| + |3 - 2| + |2 - 1| + |1 - 3| = 0+1+1+1+2=50 + 1 + 1 + 1 + 2 = 5 .

Before buying a new keyboard you want to know the minimum possible slowness that the keyboard can have.

输入格式

The first line contains two integers nn and mm ( 1n105,1m201 \le n \le 10^5, 1 \le m \le 20 ).

The second line contains the string ss consisting of nn characters. Each character is one of the first mm Latin letters (lowercase).

输出格式

Print one integer – the minimum slowness a keyboard can have.

输入输出样例

  • 输入#1

    6 3
    aacabc
    

    输出#1

    5
    
  • 输入#2

    6 4
    aaaaaa
    

    输出#2

    0
    
  • 输入#3

    15 4
    abacabadabacaba
    

    输出#3

    16
    

说明/提示

The first test case is considered in the statement.

In the second test case the slowness of any keyboard is 00 .

In the third test case one of the most suitable keyboards is bacd.

首页