CF550A Two Substrings
Description
You are given string $ s $ . Your task is to determine if the given string $ s $ contains two non-overlapping substrings "AB" and "BA" (the substrings can go in any order).
Input Format
N/A
Output Format
N/A
Explanation/Hint
In the first sample test, despite the fact that there are substrings "AB" and "BA", their occurrences overlap, so the answer is "NO".
In the second sample test there are the following occurrences of the substrings: BACFAB.
In the third sample test there is no substring "AB" nor substring "BA".