CF1400F.x-prime Substrings
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given an integer value x and a string s consisting of digits from 1 to 9 inclusive.
A substring of a string is a contiguous subsequence of that string.
Let f(l,r) be the sum of digits of a substring s[l..r] .
Let's call substring s[l1..r1] x -prime if
- f(l1,r1)=x ;
- there are no values l2,r2 such that
- l1≤l2≤r2≤r1 ;
- f(l2,r2)=x ;
- x is divisible by f(l2,r2) .
You are allowed to erase some characters from the string. If you erase a character, the two resulting parts of the string are concatenated without changing their order.
What is the minimum number of characters you should erase from the string so that there are no x -prime substrings in it? If there are no x -prime substrings in the given string s , then print 0 .
输入格式
The first line contains a string s ( 1≤∣s∣≤1000 ). s contains only digits from 1 to 9 inclusive.
The second line contains an integer x ( 1≤x≤20 ).
输出格式
Print a single integer — the minimum number of characters you should erase from the string so that there are no x -prime substrings in it. If there are no x -prime substrings in the given string s , then print 0 .
输入输出样例
输入#1
116285317 8
输出#1
2
输入#2
314159265359 1
输出#2
2
输入#3
13 13
输出#3
0
输入#4
3434343434 7
输出#4
5
说明/提示
In the first example there are two 8 -prime substrings "8" and "53". You can erase these characters to get rid of both: "116285317". The resulting string "1162317" contains no 8 -prime substrings. Removing these characters is also a valid answer: "116285317".
In the second example you just have to erase both ones.
In the third example there are no 13 -prime substrings. There are no substrings with the sum of digits equal to 13 at all.
In the fourth example you can have neither "34", nor "43" in a string. Thus, you have to erase either all threes or all fours. There are 5 of each of them, so it doesn't matter which.