|
又是图论相关,奥数哥大显身手的时候到了:
Airports
In a country there is a total of 20 airports. Each one of these airports are linked to all the others, either through direct or indirect (ie. connecting) flights. There are at most two direct flights among any randomly chosen three airports.
What is the maximum possible number of direct flights among these 20 airports?
Note: If there is a flight between A and B, it can be used in both directions and it will be counted as one flight.
20个机场,它们之间之间或间接可达,任意三个机场之间只能有两个直飞航班。所有机场之间最多可以有多少个直飞航班?注意如果A到B有直飞航班,则为双向,而且只算作一个航班。
20个顶点的连通无向图,任意三个顶点之间只能有两条边,最多可以有多少条边?因为三角形不允许存在,必须画出尽可能多的四边形。 |
|