PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

Codeforces Round #272 (Div. 1)D(字符串DP)_html/css_WEB-ITnose

原创
2016-06-24 11:56:19 770浏览

D. Dreamoon and Binary

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:

  1. Print n in binary form without leading zeros, each print will append to the right of previous prints.
  2. 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)


            注意一下细节即可


声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。