bzoj 1045 [HAOI2008] 糖果传递 —— 贪心
生活随笔
收集整理的這篇文章主要介紹了
bzoj 1045 [HAOI2008] 糖果传递 —— 贪心
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題目:https://www.lydsy.com/JudgeOnline/problem.php?id=1045
好像是貪心...但這是一個環...
看博客:http://hzwer.com/2656.html
真是神奇的構造...還是應該大膽地先把各種變量都設出來再處理。
代碼如下:
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> using namespace std; typedef long long ll; int const maxn=1e6+5; int n,a[maxn],ave,c[maxn]; ll ans; int abb(int x){return (x>0)?x:-x;} int main() {scanf("%d",&n);for(int i=1;i<=n;i++)scanf("%d",&a[i]),ans+=a[i];ave=ans/n; ans=0;for(int i=1;i<=n;i++)c[i]=c[i-1]+a[i]-ave;sort(c+1,c+n+1);int mid=c[n/2+1];for(int i=1;i<=n;i++)ans+=abb(c[i]-mid);printf("%lld\n",ans);return 0; }?
轉載于:https://www.cnblogs.com/Zinn/p/9395138.html
總結
以上是生活随笔為你收集整理的bzoj 1045 [HAOI2008] 糖果传递 —— 贪心的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: react 的props和state
- 下一篇: Python有趣现象(不定时更新)