组合问题
有一n个元素的集合,在集合中选取无序三元组,要求对任意其中两个三元组重合的元素个数不超过1个,问如何选取到最多的三元组。 http://en.wikipedia.org/wiki/Kirkman%27s_schoolgirl_problemhttp://en.wikipedia.org/wiki/Steiner_triple_system 5# wayne
不太一样吧 这个就是Packing $K_3$ into $K_n$问题 http://oeis.org/A001839 Known exactly for all n - see Theorem 4 of Brouwer et al.: A(n, 4, 3)=floor((n/3)*floor((n-1)/2))-1 if n is congruent to 5 (mod 6) and A(n, 4, 3)=floor((n/3)*floor((n-1)/2)) if n is not congruent to 5 (mod 6) 7# shshsh_0510
呵呵,检讨一下,此题我没多想
页:
[1]