bzoj1689 [Usaco2005 Open] Muddy roads 泥泞的路
题目描述
Farmer John has a problem: the dirt road from his farm to town has suffered in the recent rainstorms and now contains (1 <= N <= 10,000) mud pools. Farmer John has a collection of wooden planks of length L that he can use to bridge these mud pools. He can overlap planks and the ends do not need to be anchored on the ground. However, he must cover each pool completely. Given the mud pools, help FJ figure out the minimum number of planks he needs in order to completely cover all the mud pools.
输入
* Line 1: Two space-separated integers: N and L * Lines 2..N+1: Line i+1 contains two space-separated integers: s_i and e_i (0 <= s_i < e_i <= 1,000,000,000) that specify the start and end points of a mud pool along the road. The mud pools will not overlap. These numbers specify points, so a mud pool from 35 to 39 can be covered by a single board of length 4. Mud pools at (3,6) and (6,9) are not considered to overlap.
输出
* Line 1: The miminum number of planks FJ needs to use.
样例输入
1 6
13 17
8 12
样例输出
提示
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | #include<cstdio> #include<algorithm> using namespace std; struct qaz{ int l,r;}z[11000]; bool cmp(qaz a,qaz b){ return a.l<b.l;} int up( int a, int b, int c) { int p=(b-a)/c; if ((b-a)%c!=0) p+=1; return p; } int main() { int i,j,n,l,x,y,sum=0,now=0; scanf ( "%d%d" ,&n,&l); for (i=0;i<n;i++) scanf ( "%d%d" ,&z[i].l,&z[i].r); sort(z,z+n,cmp); for (i=0;i<n;i++) { if (z[i].l>now) { j=up(z[i].l,z[i].r,l); sum+=j; now=j*l+z[i].l; } else { if (now>=z[i].r) continue ; else { j=up(now,z[i].r,l); sum+=j; now+=j*l; } } } printf ( "%d\n" ,sum); } |
版权声明:本文为博主原创文章,未经博主允许不得转载。
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步