Problem D
Exam
Your friend and you took the same true/false exam. You know your answers, your friend’s answers, and the number of your friend’s answers that were correct.
Compute the maximum possible score you could have gotten.
Input
The first line contains a single integer
The second line contains a string of characters, the answers
you wrote down. Each letter is either a ‘T’
or an ‘F’. The length of the string is the
number
The third line also contains a string of
Bounds are
Output
The output is one line containing the maximum number of questions you could have gotten correct.
Sample Input 1 | Sample Output 1 |
---|---|
3 FTFFF TFTTT |
2 |
Sample Input 2 | Sample Output 2 |
---|---|
6 TTFTFFTFTF TTTTFFTTTT |
9 |