bzoj 1045 [HAOI2008] 糖果传递 排序

Posted copperoxide

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj 1045 [HAOI2008] 糖果传递 排序相关的知识,希望对你有一定的参考价值。

题面

题目传送门

解法

环形均分纸牌

这道题是一模一样的

时间复杂度:(O(n log n))

代码

#include <bits/stdc++.h>
#define int long long
#define N 1000010
using namespace std;
template <typename node> void chkmax(node &x, node y) {x = max(x, y);}
template <typename node> void chkmin(node &x, node y) {x = min(x, y);}
template <typename node> void read(node &x) {
    x = 0; int f = 1; char c = getchar();
    while (!isdigit(c)) {if (c == ‘-‘) f = -1; c = getchar();}
    while (isdigit(c)) x = x * 10 + c - ‘0‘, c = getchar(); x *= f;
}
int a[N];
main() {
    int n, sum = 0; read(n);
    for (int i = 1; i <= n; i++)
        read(a[i]), sum += a[i];
    for (int i = 1; i <= n; i++) a[i] -= sum / n;
    for (int i = 1; i <= n; i++) a[i] += a[i - 1];
    sort(a + 1, a + n + 1); int k = (n + 1) / 2;
    int ans = 0;
    for (int i = 1; i <= n; i++) ans += abs(a[i] - a[k]);
    cout << ans << "
";
    return 0;
}

以上是关于bzoj 1045 [HAOI2008] 糖果传递 排序的主要内容,如果未能解决你的问题,请参考以下文章

bzoj1045: [HAOI2008] 糖果传递(数论)

bzoj1045[HAOI2008] 糖果传递

[bzoj1045] [HAOI2008] 糖果传递

[BZOJ1045] [HAOI2008] 糖果传递 (贪心)

贪心bzoj1045: [HAOI2008] 糖果传递

bzoj 1045 [HAOI2008] 糖果传递 —— 贪心