You are given a string s (uppercase English letters) and an integer k.
You may delete at most k characters from s. After deletions, you compress the resulting string using run-length encoding (RLE):
"A" -> "A"
"AA" -> "A2"
"AAA" -> "A3"
"AABCCC" -> "A2BC3"
Return the minimum possible length of the RLE-compressed string after deleting at most k characters.
s
, integer
k
1 <= len(s) <= 100
0 <= k <= len(s)
"A12"
has length 3).