CF930B.Game with String

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Vasya and Kolya play a game with a string, using the following rules. Initially, Kolya creates a string ss , consisting of small English letters, and uniformly at random chooses an integer kk from a segment [0,len(s)1][0,len(s)-1] . He tells Vasya this string ss , and then shifts it kk letters to the left, i. e. creates a new string t=sk+1sk+2... sns1s2... skt=s_{k+1}s_{k+2}...\ s_{n}s_{1}s_{2}...\ s_{k} . Vasya does not know the integer kk nor the string tt , but he wants to guess the integer kk . To do this, he asks Kolya to tell him the first letter of the new string, and then, after he sees it, open one more letter on some position, which Vasya can choose.

Vasya understands, that he can't guarantee that he will win, but he wants to know the probability of winning, if he plays optimally. He wants you to compute this probability.

Note that Vasya wants to know the value of kk uniquely, it means, that if there are at least two cyclic shifts of ss that fit the information Vasya knowns, Vasya loses. Of course, at any moment of the game Vasya wants to maximize the probability of his win.

输入格式

The only string contains the string ss of length ll (3<=l<=5000)(3<=l<=5000) , consisting of small English letters only.

输出格式

Print the only number — the answer for the problem. You answer is considered correct, if its absolute or relative error does not exceed 10610^{-6} .

Formally, let your answer be aa , and the jury's answer be bb . Your answer is considered correct if

输入输出样例

  • 输入#1

    technocup
    

    输出#1

    1.000000000000000
    
  • 输入#2

    tictictactac
    

    输出#2

    0.333333333333333
    
  • 输入#3

    bbaabaabbb
    

    输出#3

    0.100000000000000
    

说明/提示

In the first example Vasya can always open the second letter after opening the first letter, and the cyclic shift is always determined uniquely.

In the second example if the first opened letter of tt is "t" or "c", then Vasya can't guess the shift by opening only one other letter. On the other hand, if the first letter is "i" or "a", then he can open the fourth letter and determine the shift uniquely.

首页