跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F1924. Appleman and a Game

    ID: 1930 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 10 上传者: 标签>二分最短路字符串算法思想图论挑战难度共享题库Codeforces英文题面题目来源题面语言

Appleman and a Game

题目描述

E. Appleman and a Game
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Appleman and Toastman like games. Today they play a game with strings with the following rules. Firstly Toastman tells Appleman two strings s and t both consisting only of letters 'A', 'B', 'C', 'D'. Then Appleman must build string s as quickly as possible. Initially he has empty string, and in one second he can append to end of the current string any contiguous substring of t.

Now, Toastman and Appleman are beginning to play the game. Toastman has already told string t to Appleman, but he hasn't come up with string s yet. Toastman only thinks, that he should choose string s consisting of n characters. Of course, he wants to find the worst string for Appleman (such string, that Appleman will spend as much time as possible during the game). Tell Toastman, how much time will Appleman spend during the game if Toastman finds the worst string for him. You can assume that Appleman plays optimally, therefore he builds any string s in minimal possible time.

Input

The first line contains an integer n (1≤n≤1018). The second line contains string t (1≤|t|≤105). String t consists of only letters 'A', 'B', 'C', 'D'. Each letter appears at least once in string t.

Output

Print a single integer − the largest possible time Appleman needs.

Examples
Input
5
ABCCAD
Output
5
Input
5
AAABACADBABBBCBDCACBCCCDDDBDCDD
Output
4
Note

In the first example, Toastman can choose s equal to "AAAAA".

In the second example, Toastman can choose s equal to "DADDA".


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1502 题。保留原作者与原赛事署名。