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

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

hdu 5037 周期优化

發布時間:2025/7/14 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 hdu 5037 周期优化 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

http://acm.hdu.edu.cn/showproblem.php?pid=5037

有只青蛙踩石子過河,河寬m,有n個石子坐標已知。青蛙每次最多跳L。現在可以在河中再放一些石子,使得青蛙過河跳的次數最多。

青蛙是貪心的,如果它現在在cur位置跳不動了,且它上一次所在位置為pre。那么God肯定要把新石子放在max(cur,pre+L)+1的位置。

使用模擬+周期優化

#include <cstdio> #include <cstdlib> #include <cmath> #include <cstring> #include <string> #include <bitset> #include <map> #include <iostream> #include <algorithm> using namespace std; #define RD(x) scanf("%d",&x) #define RD2(x,y) scanf("%d%d",&x,&y) #define clr0(x) memset(x,0,sizeof(x)) typedef long long LL; const int maxn = 200005; int n,m,l,s[maxn]; int main (){int _,cas = 1;RD(_);while(_--){printf("Case #%d: ",cas++);RD(n);RD2(m,l);for(int i = 0;i < n;++i)RD(s[i]);sort(s,s+n);s[n++] = m;int ans = 0,pre = -l,cur = 0;for(int i = 0;i < n;++i){//cout<<i<<endl;int t = (s[i] - cur)/(l+1);pre += t*(l+1);ans += t*2;if(s[i] - pre <= l){cur = s[i];}else if(s[i] - pre > l){ans++;pre = cur + t*(l+1);cur = s[i];}}printf("%d\n",ans);}return 0; }


轉載于:https://www.cnblogs.com/zibaohun/p/4046820.html

總結

以上是生活随笔為你收集整理的hdu 5037 周期优化的全部內容,希望文章能夠幫你解決所遇到的問題。

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