D - Longest X Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 400400

問題文

X. からなる文字列 SS が与えられます。

SS に対して、次の操作を 00 回以上 KK 回以下行うことができます。

  • .X に置き換える

操作後に、X を最大で何個連続させることができますか?

制約

  • 1S2×1051 \leq |S| \leq 2 \times 10^5
  • SS の各文字は X または . である
  • 0K2×1050 \leq K \leq 2 \times 10^5
  • KK は整数である

入力

入力は以下の形式で標準入力から与えられる。

SS
KK

出力

答えを出力せよ。


入力例 1Copy

Copy
XX...X.X.X.
2

出力例 1Copy

Copy
5

SS77 文字目と 99 文字目の .X に置き換えて XX...XXXXX. とすると、66 文字目から 1010 文字目で X55 個連続しています。
X66 個以上連続させることはできないので、答えは 55 です。


入力例 2Copy

Copy
XXXX
200000

出力例 2Copy

Copy
4

操作を行う回数は 00 回でも構いません。

Score : 400400 points

Problem Statement

Given is a string SS consisting of X and ..

You can do the following operation on SS between 00 and KK times (inclusive).

  • Replace a . with an X.

What is the maximum possible number of consecutive Xs in SS after the operations?

Constraints

  • 1S2×1051 \leq |S| \leq 2 \times 10^5
  • Each character of SS is X or ..
  • 0K2×1050 \leq K \leq 2 \times 10^5
  • KK is an integer.

Input

Input is given from Standard Input in the following format:

SS
KK

Output

Print the answer.


Sample Input 1Copy

Copy
XX...X.X.X.
2

Sample Output 1Copy

Copy
5

After replacing the Xs at the 77-th and 99-th positions with X, we have XX...XXXXX., which has five consecutive Xs at 66-th through 1010-th positions.
We cannot have six or more consecutive Xs, so the answer is 55.


Sample Input 2Copy

Copy
XXXX
200000

Sample Output 2Copy

Copy
4

It is allowed to do zero operations.



2025-04-03 (Thu)
11:15:52 +00:00