We are given the results of a tennis match between two players A and B as a string.
For eg- "ababbabaa", Here If the ith character is 'a'
then it represents that the ith game is won by Player A
.
A set is a positive integer
.
The Player who is first to win (set value e.g 1,2,3,4... ) games will win the set.
We have to find out all valid sets that are possible for the string
and output the outcome of the match (The one who wins more sets wins the match).
For eg If Set size = 3
, ababb | abaa
, Resuts in a draw.
If Set size = 2
, aba | bb | aba | a
, Which is not a valid Match so set = 2 is not possible.
If Set Size = 6
|ababbabaa|
, Won by Player A
Auto comment: topic has been updated by go_rob (previous revision, new revision, compare).
This problem is almost the same as yours — Check out the editorial :) http://codeforces.me/problemset/problem/496/D
Thanks bro!!