|
Continue on #13. Without seeing the result from 3-member groups and 6 people class, it would be crazy to do it in following way. But it works. First, take abc in group I which needs 3 (ab_,ac_,bc_) in group II to match. Fill in d,e,f in the 3 above ( abd, ace, bcf) (greedy approach) which needs (ad, bd, ae, ce, bf, cf) in group I to match in turn. Combine ad and ae to form ade which covers ad and ae while leads de_ in group II to match the new born ade in group I. Similarly, bdf to cover bd and bf with df being left, and cef to cover ce and cf with ef being left. Now, with de, df, ef being left for matching, form def in group II which exactly matches de, df, ef needed to close the processing loop. The result is, abc/ade/bdf/cef in group I, and abd/ace/bcf/def in group II. This is the same result by newkid after switching e/f. I will try to expand the way to 3-member and 9/12 people class. |
|