CF1776N.Count Permutations

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a string ss with length n1n-1 whose characters are either <\texttt{<} or >\texttt{>} .

Count the permutations p1,p2,,pnp_1, \, p_2, \, \dots, \, p_n of 1,2,,n1, \, 2, \, \dots, \, n such that, for all i=1,2,,n1i = 1, \, 2, \, \dots, \, n - 1 , if sis_i is <\texttt{<} then pi<pi+1p_i < p_{i+1} and if sis_i is >\texttt{>} then pi>pi+1p_i > p_{i+1} .

Since this number can be very large, compute its logarithm in base 22 .

输入格式

The first line contains a single integer nn ( 2n1000002 \le n \le 100\,000 ).

The second line contains a string ss of length n1n-1 ; each character of ss is either <\texttt{<} or >\texttt{>} .

输出格式

Print the logarithm in base 22 of the number of permutations satisfying the constraints described in the statement.

Your answer is considered correct if its absolute or relative error does not exceed 10610^{-6} . Formally, let your answer be xx and let the correct answer be yy . Your answer is accepted if and only if xymax(1,y)106\frac{|x - y|}{\max{(1, |y|)}} \le 10^{-6} .

输入输出样例

  • 输入#1

    2
    <

    输出#1

    0.0000000000
  • 输入#2

    3
    <>
    

    输出#2

    1.0000000000
  • 输入#3

    5
    ><<<
    

    输出#3

    2.0000000000
  • 输入#4

    10
    <><<<<<>>
    

    输出#4

    9.8281364842

说明/提示

In the first sample, there is only one valid permutation, that is [2,1][2, 1] . Since log2(1)=0\log_2(1)=0 , the correct output is 00 .

In the second sample, there are 22 valid permutations, that are [3,1,2][3, 1, 2] and [2,1,3][2, 1, 3] . Since log2(2)=1\log_2(2)=1 , the correct output is 11 .

In the third sample, there are 44 valid permutations, that are [1,5,4,3,2][1, 5, 4, 3, 2] , [2,5,4,3,1][2, 5, 4, 3, 1] , [3,5,4,2,1][3, 5, 4, 2, 1] , [4,5,3,2,1][4, 5, 3, 2, 1] . Since log2(4)=2\log_2(4)=2 , the correct output is 22 .

In the fourth sample, there are 909909 valid permutations. Notice that log2(909)=9.828136484194\log_2(909)=9.828136484194\ldots

首页