粗暴香水

文章
3
资源
0
加入时间
2年10月24天

Codeforces Global Round 16(A - E)

A. Median Maximization简单的贪心构造 题意让求中位数最大为多少 已知序列中所有数字均为非负 则我们可以让中位数之前的数全为0 然后中位数则可以最大取到总数除以剩下数向下取整代码#include <bits/stdc++.h> using namespace std; int n, s; void solve(){ cin >> n >> s; if (n % 2 == 1) { int