博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Football Games(思维题)
阅读量:4975 次
发布时间:2019-06-12

本文共 2521 字,大约阅读时间需要 8 分钟。

Problem Description
A mysterious country will hold a football world championships---Abnormal Cup, attracting football teams and fans from all around the world. This country is so mysterious that none of the information of the games will be open to the public till the end of all the matches. And finally only the score of each team will be announced.
  
  At the first phase of the championships, teams are divided into
M groups using the single round robin rule where one and only one game will be played between each pair of teams within each group. The winner of a game scores 2 points, the loser scores 0, when the game is tied both score 1 point. The schedule of these games are unknown, only the scores of each team in each group are available.
  
  When those games finished, some insider revealed that there were some false scores in some groups. This has aroused great concern among the pubic, so the the Association of Credit Management (ACM) asks you to judge which groups' scores must be false.
 

 

Input
Multiple test cases, process till end of the input.
  
  For each case, the first line contains a positive integers
M , which is the number of groups.
  The i -th of the next M lines begins with a positive integer Bi representing the number of teams in the i -th group, followed by Bi nonnegative integers representing the score of each team in this group.
number of test cases <= 10
M<= 100
B[i]<= 20000
score of each team <= 20000
 

 

Output
For each test case, output
M lines. Output ``F" (without quotes) if the scores in the i-th group must be false, output ``T" (without quotes) otherwise. See samples for detail.
 

 

Sample Input
2 3 0 5 1 2 1 1
 

 

Sample Output
F T
 
 
 

题意:

m个小组,每个小组n支队伍进行比赛,任意两支队伍之间有一场比赛

一场比赛里赢得+2分输的+0分,打平的话每队+1

先给出每支队伍的得分,判断这些得分是否满足小组比赛的条件

思路:根据这个比赛规则,我们可以发现,每场比赛都有2个积分会出去。

那么问题就很好解决了,先要给那些

得分从小到大排序,对于当前i,与之前的i-1支队伍比赛完之后,所有的比赛的总得分至少是(i-1)*i(因为这i只队伍还要和第i+1~n的队伍打比赛,也可能获得分数

#include
using namespace std; const int maxn = 20000+6; int n,a[maxn]; int main() { int T; while(scanf("%d",&T)!=EOF) { while(T--) { int res = 0; scanf("%d",&n); for(int i = 1;i<=n;i++) scanf("%d",&a[i]),res+=a[i]; sort(a+1,a+1+n); int sum = 0; int flag = 0; for(int i = 1;i<=n;i++) { sum+=a[i]; if(sum

 

);

最后只要算出比赛的场次*2==总分就可以。

一共有n组,那么任意两只队伍要比赛的话排列组合共有Cn^2种情况,即n*(n-1)/2;

转载于:https://www.cnblogs.com/xiechenxi/p/8694860.html

你可能感兴趣的文章
canvas --> getImageData()
查看>>
python找递归目录中文件,并移动到一个单独文件夹中,同时记录原始文件路径信息...
查看>>
第四次作业--测试作业
查看>>
FPGA的嵌入式乘法器
查看>>
Spring当中的生命周期的方法的几点疑问
查看>>
hls视频播放-web视频播放
查看>>
HTML基础
查看>>
Vue 学习随笔六 - Directive添加以及form绑定
查看>>
VMware 连接不上XSHELL
查看>>
Java高级架构师(一)第38节:Nginx的负载均衡模块
查看>>
《Python黑帽子:黑客与渗透测试编程之道》 自动化攻击取证
查看>>
CE修改器使用教程 [基础篇]
查看>>
C++获取系统信息(IP地址、硬件信息等)
查看>>
windows下python常用库的安装
查看>>
1-3.ag2基础知识-你好世界
查看>>
白话SSL协议的握手过程
查看>>
华中农业大学校赛--c The Same Color
查看>>
计算器部分代码
查看>>
高通芯片中的MDP模块[msm7x27]
查看>>
评分卡模型
查看>>