码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces Round #570 (Div. 3) B. Equalize Prices

时间:2019-06-27 19:21:55      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:int   string   ice   ++   printf   inf   span   price   math   

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<cstring>
#include<set>
#define ll long long
using namespace std;
const int maxn = 200010;
const int inf = 0x3f3f3f3f;
int main()
{
    int t;
    cin >> t;
    while (t--)
    {
        int n, q;
        cin >> n >> q;
        int a[110];
        for (int i = 0; i < n; i++)
        {
            cin >> a[i];
        }
        sort(a, a + n);
        int contrast = a[n - 1] - a[0];
        if (contrast > 2 * q)
        {
            printf("-1\n");
        }
        else
        {
            printf("%d\n", a[0] + q);
        }
    }
}

简单签到题

Codeforces Round #570 (Div. 3) B. Equalize Prices

标签:int   string   ice   ++   printf   inf   span   price   math   

原文地址:https://www.cnblogs.com/csxaxx/p/11099020.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!