2606. Find the Substring With Maximum Cost
You are given a string
s
, a stringchars
of distinct characters and an integer arrayvals
of the same length aschars
.The cost of the substring is the sum of the values of each character in the substring. The cost of an empty string is considered
0
.The value of the character is defined in the following way:
If the character is not in the string
chars
, then its value is its corresponding position (1-indexed) in the alphabet.
- For example, the value of
'a'
is1
, the value of'b'
is2
, and so on. The value of'z'
is26
.Otherwise, assuming
i
is the index where the character occurs in the stringchars
, then its value isvals[i]
.Return the maximum cost among all substrings of the string
s
.
1 |
|