usaco Barn Repair (牛宿舍问题||贪心)

来源:互联网 发布:js数组重排序 编辑:程序博客网 时间:2024/05/17 09:13


It was a dark and stormy night that ripped the roof and gates off the stalls that hold Farmer John's cows. Happily, many of the cows were on vacation, so the barn was not completely full.

The cows spend the night in stalls that are arranged adjacent to each other in a long line. Some stalls have cows in them; some do not. All stalls are the same width.

Farmer John must quickly erect new boards in front of the stalls, since the doors were lost. His new lumber supplier will supply him boards of any length he wishes, but the supplier can only deliver a small number of total boards. Farmer John wishes to minimize the total length of the boards he must purchase.

Given M (1 <= M <= 50), the maximum number of boards that can be purchased; S (1 <= S <= 200), the total number of stalls; C (1 <= C <= S) the number of cows in the stalls, and the C occupied stall numbers (1 <= stall_number <= S), calculate the minimum number of stalls that must be blocked in order to block all the stalls that have cows in them.

Print your answer as the total number of stalls blocked.

PROGRAM NAME: barn1

INPUT FORMAT

Line 1:M, S, and C (space separated)Lines 2-C+1:Each line contains one integer, the number of an occupied stall.

SAMPLE INPUT (file barn1.in)

4 50 1834681415161721252627303140414243

OUTPUT FORMAT

A single line with one integer that represents the total number of stalls blocked.

SAMPLE OUTPUT (file barn1.out)

25
[One minimum arrangement is one board covering stalls 3-8, one covering 14-21, one covering 25-31, and one covering 40-43.] 



题意:最多有n块板,板的长度自己定义,给出每头牛的宿舍编号,一个宿舍占1个单位长度,问总共至少需要消耗多长的木板,能覆盖每个宿舍。


可以逆向思维,将一块长板切成n块板。。。


上代码:


/**   PROG:barn1   LANG:C++   ID:zpc19951 **/#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>#include<cmath>using namespace std;int a[1111],b[1111];int main(){freopen("barn1.in","r",stdin);freopen("barn1.out","w",stdout); int i,j,n,s,c,ans;ans=0;scanf("%d%d%d",&n,&s,&c);for(i=1;i<=c;i++) scanf("%d",&a[i]); //存地址、 if(n>=c) {printf("%d\n",c);return 0;}sort(a+1,a+1+c);for(i=1;i<c;i++) {b[i]=a[i+1]-a[i]; //存间距 }sort(b+1,b+c);for(i=1;i<=c-n;i++) ans+=b[i];ans+=n;printf("%d\n",ans);return 0;} 


0 0
原创粉丝点击