1797.Anthem of Berland

Time Limit: 1s Memory Limit: 256MB

Berland has a long and glorious history. To increase awareness about it among younger citizens, King of Berland decided to compose an anthem.

Though there are lots and lots of victories in history of Berland, there is the one that stand out the most. King wants to mention it in the anthem as many times as possible.

He has already composed major part of the anthem and now just needs to fill in some letters. King asked you to help him with this work.

The anthem is the string s of no more than 105 small Latin letters and question marks. The most glorious victory is the string t of no more than 105 small Latin letters. You should replace all the question marks with small Latin letters in such a way that the number of occurrences of string t in string s is maximal.

Note that the occurrences of string t in s can overlap. Check the third example for clarification.

Input Format(From the terminal/stdin)

The first line contains string of small Latin letters and question marks s (1 \le |s| \le 105).

The second line contains string of small Latin letters t (1 \le |t| \le 105).

Product of lengths of strings |s| \cdot |t| won't exceed 107.

Output Format(To the terminal/stdout)

Output the maximum number of occurrences of string t you can achieve by replacing all the question marks in string s with small Latin letters.

Sample Input 1

Copy
winlose???winl???w??
win
                    \n
   \n

Sample Output 1

Copy
5
 \n

Sample Input 2

Copy
glo?yto?e??an?
or
              \n
  \n

Sample Output 2

Copy
3
 \n

Sample Input 3

Copy
??c?????
abcab
        \n
     \n

Sample Output 3

Copy
2
 \n

Hints

In the first example the resulting string s is "winlosewinwinlwinwin"

In the second example the resulting string s is "glorytoreorand". The last letter of the string can be arbitrary.

In the third example occurrences of string t are overlapping. String s with maximal number of occurrences of t is "abcabcab".

Submit

请先 登录

© 2025 FAQs