Find the LCS of string such that it does not contains the given string
Given three strings s1, s2 and s3. The task is to compute the Longest Common Subsequence of the string s1 and s2, such that it does not contain s3 as a substring. If there is no valid common subsequence, output -1. Examples: Input: s1 = "AJKEQSLOBSROFGZ", s2 = "OVGURWZLWVLUXTH", s3 = "OZ"Output: ORZ