Codeforces Round #570 (Div. 3) B. Equalize Prices
Posted csxaxx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #570 (Div. 3) B. Equalize Prices相关的知识,希望对你有一定的参考价值。
#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的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Round #316 (Div. 2) B. Simple Game
Codeforces Round #436 E. Fire(背包dp+输出路径)
[ACM]Codeforces Round #534 (Div. 2)