c program:
Disha has a string SS. In one second, Disha can choose a subsequence from SS that make the word “code” and remove it from the string. The process will be continued until she can’t choose a subsequence that make the word.
In this problem, Good letter means [c,d,e,o]. And others letters are Bad.
Now, you have to find the maximum number of seconds Disha will work.
Input
The first line of the input contains a single integer nn- the length of the string ss. Next line contains string ss. the string consists of only lowercase English letters.
Constraints
Subtask 1 (10 points)
1 \le n \le 50001≤n≤5000
Subtask 2 (30 points)
1 \le n \le 5000001≤n≤500000
Number of good letters \leq 5000≤5000
Subtask 3 (60 points)
1 \le n \le 5000001≤n≤500000
Output
Output the maximum number of seconds Disha will work.
Sample
Input Output
8 2
codceode
Answers
Answered by
0
Answer:
I can't understand the question...........
Similar questions