Luntik and Concerts 结论,思维

在这里插入图片描述
题意 :

  • 有a首1分钟的歌,b首2分钟,c首3分钟,分成两场歌会,要求两场的时长差绝对值尽可能小,有 a , b , c > = 1 a,b,c>=1 a,b,c>=1

思路 :

  • 由于这三个数字每个都至少有1个,所以一定可以组合出 [ 1 , n ] [1, n] [1,n]中的任意一个数字,所以当 s u m sum sum为偶数时,一定可以分成 s u m / 2 + s u m / 2 sum/2 + sum/2 sum/2+sum/2 s u m sum sum为奇数时,差值绝对值为1
#include <iostream>
#include <algorithm>

using namespace std;

typedef long long ll;

int main()
{
    ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);

    int _;
    cin >> _;

    while (_ -- )
    {
        ll a, b, c;
        cin >> a >> b >> c;
        ll sum = a + b * 2 + c * 3;
        if (sum % 2) cout << 1 << endl;
        else cout << 0 << endl;
    }

    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值