You are tasked with developing a function for a Secret Santa gift exchange application. In this exchange, each participant gives a gift to one other participant such that:
Your function will receive two inputs:
Your task is to compute a valid Secret Santa assignment, returning the assignment as a mapping (or dictionary) where each key is a giver and the corresponding value is the receiver. If there are multiple valid assignments, you may return any one of them. If no valid assignment exists, return an empty mapping.
Example:
Given participants:
participants = ["Alice", "Bob", "Charlie", "Diana"]
and forbidden pairs:
forbidden = [("Alice", "Bob"), ("Bob", "Alice")]
One possible valid assignment might be:
{
"Alice": "Charlie",
"Bob": "Diana",
"Charlie": "Bob",
"Diana": "Alice"
}
Note: Your solution should consider the possibility of small lists of participants (e.g., less than 20), and you can assume that the input lists are valid and contain unique participants. Think carefully about the approach you take to efficiently explore valid assignments given the constraints.