日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

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

發布時間:2025/6/17 49 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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] 糖果传递 —— 贪心的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。