Set A has n devices. Set B has m devices. Some devices in A are compatible with the devices in B, and some devices in B are compatible with those in A.
I want as many compatible devices connected to each other as possible. (It's not necessary to have the device a in A and b in B to be mutually compatible.)
Edit for clarity: any device can be linked to 0, 1 or 2 other devices, but not itself.
Eventually all devices (or all but two, if the "ends" don't meet) should be linked together 1 on 1. It's possible to link any one device to any other device. But no device in A are compatible with any device in A (but they are linkable), and the same holds true for devices in B.
If I have A = {a1,a2,a3}, B = {b1,b2,b3} and n=m=3
a1 is compatible with b1,b2
a2 is compatible with b1
a3 is compatible with b1
b1 is compatible with a1,a3
b2 is compatible with a1
b3 is compatible with a1
Then the graph G
a1 <-> b2 <-> a2 <-> b1 <-> a3 <-> b3 <-> a1
is an optimal graph.
G doesn't have to be cyclic, but it can be.
Are there any clever ways to approach this?