CF1804H.Code Lock

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Lara has a safe that is locked with a circle-shaped code lock that consists of a rotating arrow, a static circumference around the arrow, an input screen, and an input button.

The circumference of the lock is split into kk equal sections numbered from 11 to kk in clockwise order. Arrow always points to one of the sections. Each section is marked with one of the first kk letters of the English alphabet. No two sections are marked with the same letter.

Due to the lock limitations, the safe's password is a string of length nn that consists of first kk letters of the English alphabet only. Lara enters the password by rotating the lock's arrow and pressing the input button. Initially, the lock's arrow points to section 11 and the input screen is empty. In one second she can do one of the following actions.

  • Rotate the arrow one section clockwise. If the arrow was pointing at section x<kx < k it will now point at section x+1x + 1 . If the arrow was pointing at section kk it will now point at section 11 .
  • Rotate the arrow one section counter-clockwise. If the arrow was pointing at section x>1x > 1 it will now point at section x1x - 1 . If the arrow was pointing at section 11 it will now point at section kk .
  • Press the input button. The letter marked on the section that the arrow points to will be added to the content of the input screen.

As soon as the content of the input screen matches the password, the safe will open. Lara always enters her password in the minimum possible time.Lara has recently found out that the safe can be re-programmed. She can take the first kk letters of the English alphabet and assign them to the sectors in any order she likes. Now she wants to re-arrange the letters in a way that will minimize the number of seconds it takes her to input the password. Compute this minimum number of seconds and the number of ways to assign letters, for which this minimum number of seconds is achieved.

Two ways to assign letters to sectors are considered to be distinct if there exists at least one sector ii that is assigned different letters.

输入格式

The first line of the input contains two integers kk and nn ( 2k162 \leq k \leq 16 , 2n1000002 \leq n \leq 100\,000 ) — the number of sectors on the lock's circumference and the length of Lara's password, respectively.

The second line of the input contains a string of length nn that consists of the first kk lowercase letters of the English alphabet only. This string is the password.

输出格式

On the first line print minimum possible number of seconds it can take Lara to enter the password and open the safe if she assigns letters to sectors optimally.

On the second line print the number of ways to assign letters optimally.

输入输出样例

  • 输入#1

    3 10
    abcabcabca

    输出#1

    19
    2
  • 输入#2

    4 20
    bcbcbcbcadadadadcbda

    输出#2

    40
    2
  • 输入#3

    4 6
    adcbda

    输出#3

    12
    4

说明/提示

The initial states of optimal arrangements for the first example are shown in the figure below.

The initial states of optimal arrangements for the second example are shown in the figure below.

The initial states of optimal arrangements for the third example are shown in the figure below.

首页