码迷,mamicode.com
首页 > 其他好文 > 详细

贪心/poj 2437 Muddy roads

时间:2014-12-11 23:38:53      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   for   div   log   bs   

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<algorithm>
 4 using namespace std;
 5 struct node
 6 {
 7     int st,ed;
 8 };
 9 node a[10010];
10 
11 int n,L,ans,pre;
12 
13 bool cmp(node x,node y)
14 {
15     return x.st<y.st;
16 }
17 
18 int main()
19 {
20     while (scanf("%d%d",&n,&L)!=EOF)
21     {
22         for (int i=1;i<=n;i++) scanf("%d%d",&a[i].st,&a[i].ed);
23         sort(a+1,a+n+1,cmp);
24         ans=0;
25         pre=-9999999;
26         for (int i=1;i<=n;i++)
27         {
28             if (pre<=a[i].st)
29             {
30                 int len=a[i].ed-a[i].st;
31                 int sum=(len+L-1)/L;
32                 ans+=sum;
33                 pre=a[i].st+sum*L;
34             }
35             else if (pre>a[i].st)
36             {
37                 int len=a[i].ed-pre;
38                 int sum=(len+L-1)/L;
39                 ans+=sum;
40                 pre+=sum*L;
41             }
42         }
43         printf("%d\n",ans);
44     }
45     return 0;
46 }

 

贪心/poj 2437 Muddy roads

标签:style   blog   io   color   sp   for   div   log   bs   

原文地址:http://www.cnblogs.com/NicoleLam/p/4158683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!