bzoj1689 / P1589 [Usaco2005 Open] Muddy roads 泥泞的路

Posted kafuuchino

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj1689 / P1589 [Usaco2005 Open] Muddy roads 泥泞的路相关的知识,希望对你有一定的参考价值。

P1589 [Usaco2005 Open] Muddy roads 泥泞的路

简单的模拟题。

给水坑排个序,蓝后贪心放板子。

注意边界细节。

技术分享图片
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 using namespace std;
 6 struct data{int l,r;}a[10002];
 7 bool cmp(const data &A,const data &B){
 8     return A.l<B.l||(A.l==B.l&&A.r>B.r);
 9 }
10 int n,L,tl=-1,ans;
11 int main(){
12     scanf("%d%d",&n,&L);
13     for(int i=1;i<=n;++i)
14         scanf("%d%d",&a[i].l,&a[i].r);
15     sort(a+1,a+n+1,cmp);
16     for(int i=1,q;i<=n;++i){
17         --a[i].r;
18         if(a[i].r<=tl) continue;
19         if(tl<a[i].l){
20             q=(a[i].r-a[i].l)/L;
21             ans+=q; tl=a[i].l-1+q*L;
22             if(tl<a[i].r) ++ans,tl+=L;
23         }else if(tl<a[i].r){
24             q=(a[i].r-tl)/L;
25             ans+=q; tl+=q*L;
26             if(tl<a[i].r) ++ans,tl+=L;
27         }
28     }printf("%d",ans);
29     return 0;
30 } 
View Code

 

以上是关于bzoj1689 / P1589 [Usaco2005 Open] Muddy roads 泥泞的路的主要内容,如果未能解决你的问题,请参考以下文章

[BZOJ1599] [Usaco2008 Oct] 笨重的石子

bzoj 1231: [Usaco2008 Nov]mixup2 混乱的奶牛状压dp

bzoj3886: [Usaco2015 Jan]Moovie Mooving

BZOJ 2016: [Usaco2010]Chocolate Eating

bzoj3380+3381+3382+3383 Usaco2004 Open

Floyd(并非水题orz)BZOJ4093-[Usaco2013 Dec]Vacation Planning