Medium
You are given the string croakOfFrogs
, which represents a combination of the string "croak"
from different frogs, that is, multiple frogs can croak at the same time, so multiple "croak"
are mixed.
Return the minimum number of different frogs to finish all the croaks in the given string.
A valid "croak"
means a frog is printing five letters 'c'
, 'r'
, 'o'
, 'a'
, and 'k'
sequentially. The frogs have to print all five letters to finish a croak. If the given string is not a combination of a valid "croak"
return -1
.
Example 1:
Input: croakOfFrogs = “croakcroak”
Output: 1
Explanation: One frog yelling “croak“ twice.
Example 2:
Input: croakOfFrogs = “crcoakroak”
Output: 2
Explanation: The minimum number of frogs is two. The first frog could yell “crcoakroak”. The second frog could yell later “crcoakroak”.
Example 3:
Input: croakOfFrogs = “croakcrook”
Output: -1
Explanation: The given string is an invalid combination of “croak“ from different frogs.
Constraints:
1 <= croakOfFrogs.length <= 105
croakOfFrogs
is either 'c'
, 'r'
, 'o'
, 'a'
, or 'k'
.class Solution {
fun minNumberOfFrogs(s: String): Int {
var ans = 0
val f = IntArray(26)
for (i in 0 until s.length) {
f[s[i].code - 'a'.code]++
if (s[i] == 'k' && checkEnough(f)) {
reduce(f)
}
if (!isValid(f)) {
return -1
}
ans = Math.max(ans, getMax(f))
}
return if (isEmpty(f)) ans else -1
}
private fun checkEnough(f: IntArray): Boolean {
return f['c'.code - 'a'.code] > 0 && f['r'.code - 'a'.code] > 0 &&
f['o'.code - 'a'.code] > 0 && f[0] > 0 && f['k'.code - 'a'.code] > 0
}
fun reduce(f: IntArray) {
f['c'.code - 'a'.code]--
f['r'.code - 'a'.code]--
f['o'.code - 'a'.code]--
f[0]--
f['k'.code - 'a'.code]--
}
private fun getMax(f: IntArray): Int {
var max = 0
for (v in f) {
max = Math.max(max, v)
}
return max
}
private fun isEmpty(f: IntArray): Boolean {
for (v in f) {
if (v > 0) {
return false
}
}
return true
}
private fun isValid(f: IntArray): Boolean {
if (f['r'.code - 'a'.code] > f['c'.code - 'a'.code]) {
return false
}
if (f['o'.code - 'a'.code] > f['r'.code - 'a'.code]) {
return false
}
return if (f[0] > f['o'.code - 'a'.code]) {
false
} else {
f['k'.code - 'a'.code] <= f[0]
}
}
}