0%

Problem 849


Problem 849


The Tournament

In a tournament there are n teams and each team plays each other team twice. A team gets two points for a win, one point for a draw and no points for a loss.

With two teams there are three possible outcomes for the total points. (4,0) where a team wins twice, (3,1) where a team wins and draws, and (2,2) where either there are two draws or a team wins one game and loses the other. Here we do not distinguish the teams and so (3,1) and (1,3) are considered identical.

Let F(n) be the total number of possible final outcomes with n teams, so that F(2)=3.

You are also given F(7)=32923.

Find F(100). Give your answer modulo 109+7.


锦标赛

在一场锦标赛中,共有n支队伍参赛,每支队伍需与任意其它队伍各对战两次。获胜的队伍得两分,平局得一分,落败不得分。

只有两支队伍时,共有三种可能的得分结果。若一支队伍两次都获胜则结果是(4,0),若一支队伍赢一次平一次则结果是(3,1),若两次都是平局或者各自一胜一负则结果是(2,2)。得分结果不区分队伍,因此(3,1)(1,3)视为相同的结果。

F(n)为有n支队伍时所有可能的最终得分结果的数目,因此F(2)=3

已知F(7)=32923

F(100),并将你的答案对109+7取余。


Gitalking ...