"Observe that when you cut a character out of a magazine, the character on the reverse side of the page is also removed. Give an algorithm to determine whether you can generate a given string by pasting cutouts from a given magazine. Assume that you are given a function that will identify the character and its position on the reverse side of the page for any given character position"
How to do it?
I can do some initial pruning so that if a needed character has only one way of getting picked up, it's taken initially before turning the sub-problem for dynamic technique, but what after this initial pruning?
what is time and space complexity?
Thanks,
