I have a list of agents a = {a1, a2, a3,..., an}, in which each agent may be paired up with zero or more other agents. For example, for n = 6, I can have:
a1: a2, a3, a5
a2: a1, a3, a4
a3: a1, a2. a5
a4: a2
a5: a1, a3
a6:
Each pair interact with each other, and each agent obtains a value as the result of this interaction (e.g. they can play a game, but the details of interaction can be abstracted away here). I am interested in computing and storing the results of these interactions based on a given pairwise structure such as above.
Obviously, a naive algorithm would be to go through each agent and then compute the pairwise interaction with each of his interacting partners one-by-one. However, it is also obvious that this approach will duplicate some (or potentially many) computation. Using the example above:
by the time we finish for agent a1, we would've already obtained the results for (a1, a2), (a1, a3), and (a1, a5), thus rendering the later computation among these pairs redundant when we do it for agent a2, a3, and a5,
An improved algorithm would be to sort the input structure in an ascending order in both dimensions (i.e. along agents themselves and along their respective partners) as in the example above, so that for each agent (e.g. a3), we only need to compute for the interactions between this agent (a3) and the ones that are 'higher' than him (a5), since we know the interactions between himself and 'lower' partners ((a1, a3), (a2, a3)) have already been computed.
I wonder if there is different and better algorithm for this problem? By better, I mean more efficient computation in terms of both time and space.