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:
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)
注意一下细节即可
HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号