Codeforces Round #272 (Div. 1)D(字符串DP)_html/css_WEB-ITnose
time limit per test
2 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output
Dreamoon saw a large integer x written on the ground and wants to print its binary form out. Dreamoon has accomplished the part of turning x into its binary format. Now he is going to print it in the following manner.
He has an integer n?=?0 and can only perform the following two operations in any order for unlimited times each:
- Print n in binary form without leading zeros, each print will append to the right of previous prints.
- Increase n by 1.
Let's define an ideal sequence as a sequence of operations that can successfully print binary representation of x without leading zeros and ends with a print operation (i.e. operation 1). Dreamoon wants to know how many different ideal sequences are there and the length (in operations) of the shortest ideal sequence.
The answers might be large so please print them modulo 1000000007 (109?+?7).
Let's define the string representation of an ideal sequence as a string of '1' and '2' where the i-th character in the string matches thei-th operation performed. Two ideal sequences are called different if their string representations are different.
Input
The single line of the input contains a binary integer representing x (1?≤?x?25000) without leading zeros.
Output
The first line of the output should contain an integer representing the number of different ideal sequences modulo 1000000007 (109?+?7).
The second line of the output contains an integer representing the minimal length of an ideal sequence modulo 1000000007 (109?+?7).
Sample test(s)
input
101
output
16
input
11010
output
35
Note
For the first sample, the shortest and the only ideal sequence is «222221» of length 6.
For the second sample, there are three ideal sequences «21211», «212222222221», «222222222222222222222222221». Among them the shortest one has length 5.
题意:RT
思路:就是求将原串分成多个数字,使得所有数字从左往右不递减即,求方案数
dp[i][j]表示以i到j结尾的二进制数的总方案数
dp[i][j] + = dp[k][i-1] (其中k到i-1的二进制数要小于或等于i到j的二进制数)
再用一个mi[i][j]表示以i到j结尾的二进制数前面最少的二进制数的数量
mi[i][j] = min(mi[k][i-1]+1)
注意一下细节即可
上一篇: PHPexcel行内换行
推荐阅读
-
Codeforces Round #272 (Div. 1)D(字符串DP)_html/css_WEB-ITnose
-
Codeforces Round #256 (Div. 2)D 二分答案_html/css_WEB-ITnose
-
Codeforces Round #132 (Div. 2) D. Hot Days_html/css_WEB-ITnose
-
Codeforces Round #274 (Div. 2) D. Long Jumps_html/css_WEB-ITnose
-
Codeforces Round #274 (Div. 2) E. Riding in a Lift(DP)_html/css_WEB-ITnose
-
Codeforces Round #275 (Div. 1)C(状压+期望)_html/css_WEB-ITnose
-
Codeforces Round #276 (Div. 1)B(暴力)_html/css_WEB-ITnose
-
Codeforces Round #FF (Div. 1)-A,B,C_html/css_WEB-ITnose
-
Codeforces Round #250 (Div. 1)B(排序+并查集)_html/css_WEB-ITnose
-
Codeforces Round #275 (Div. 1)D(树形DP)_html/css_WEB-ITnose