CF1776N.Count Permutations
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a string s with length n−1 whose characters are either < or > .
Count the permutations p1,p2,…,pn of 1,2,…,n such that, for all i=1,2,…,n−1 , if si is < then pi<pi+1 and if si is > then pi>pi+1 .
Since this number can be very large, compute its logarithm in base 2 .
输入格式
The first line contains a single integer n ( 2≤n≤100000 ).
The second line contains a string s of length n−1 ; each character of s is either < or > .
输出格式
Print the logarithm in base 2 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 10−6 . Formally, let your answer be x and let the correct answer be y . Your answer is accepted if and only if max(1,∣y∣)∣x−y∣≤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] . Since log2(1)=0 , the correct output is 0 .
In the second sample, there are 2 valid permutations, that are [3,1,2] and [2,1,3] . Since log2(2)=1 , the correct output is 1 .
In the third sample, there are 4 valid permutations, that are [1,5,4,3,2] , [2,5,4,3,1] , [3,5,4,2,1] , [4,5,3,2,1] . Since log2(4)=2 , the correct output is 2 .
In the fourth sample, there are 909 valid permutations. Notice that log2(909)=9.828136484194…