HDU 5873 Football Games 大连网络赛

本文介绍了一个简单的算法,用于判断一组比赛得分是否合理。通过输入每支队伍的得分,该算法检查得分是否符合循环赛的比赛规则,并输出判断结果。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题意,给你几个小组,每个小组有n个队,然后小组内打循环赛,单场比赛赢了的得2分,打平个得1分,打输得0分,最后给你每组内,每个队的得分,问你这个得分情况是不是可能的。图,度,然后就差不多出来了。

#include <iostream>
#include <cstring>
#include <cstdlib>
#include <set>
#include <cstdio>
#include <string>
#include <vector>
#include <map>
#include <cmath>
#include <algorithm>

using namespace std;
typedef long long LL;

int T;
int n;
LL in;
LL out;
int tmp;
int main()
{
	while(scanf("%d", &T) != EOF)
	{
		for(int cas = 0; cas < T; cas++)
		{
			bool flag = true;
			scanf("%d", &n);
			in = out = 0;
			for(int i = 0; i < n; i++)
			{
				scanf("%d", &tmp);
				if(tmp < 0 || tmp > 2*(n - 1))
					flag = false;
				in += tmp;
				out += (2*(n - 1) - tmp);
			}
			if(in == out && flag) printf("T\n");
			else printf("F\n");
		}
	}
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值