The Bucket List

题目

  • Problem Description
    Farmer John is considering a change in how he allocates buckets for milking his cows. He thinks this will ultimately allow him to use a small number of total buckets, but he is not sure how many exactly. Please help him out! Farmer John has N cows (1≤N≤100), conveniently numbered 1…N. The i-th cow needs to be milked from time si to time ti, and requires bi buckets to be used during the milking process. Several cows might end up being milked at the same time; if so, they cannot use the same buckets. That is, a bucket assigned to cow i′s milking cannot be used for any other cow’s milking between time si and time ti. The bucket can be used for other cows outside this window of time, of course. To simplify his job, FJ has made sure that at any given moment in time, there is at most one cow whose milking is starting or ending (that is, the si’s and ti’s are all distinct).

    FJ has a storage room containing buckets that are sequentially numbered with labels 1, 2, 3, and so on. In his current milking strategy, whenever some cow (say, cow i) starts milking (at time si), FJ runs to the storage room and collects the bi buckets with the smallest available labels and allocates these for milking cow i.

    Please determine how many total buckets FJ would need to keep in his storage room in order to milk all the cows successfully.

  • Input
    The first line of input contains N. The next N lines each describe one cow, containing the numbers si , ti and bi, separated by spaces. Both si and ti are integers in the range 1…1000, and bi is an integer in the range 1…10.

  • Output
    Output a single integer telling how many total buckets FJ needs.

  • input
    3
    4 10 1
    8 13 3
    2 6 2

  • output
    4

题意

每头牛有开始挤奶时间,需要挤奶时间,需要桶数
求挤奶过程中最多同时用到多少个桶

思路

建立时间轴,开始到结束的时间范围内都加上需要的桶数
则时间轴里存的是每个时间同时需要的桶数
最大值即是所求

代码

#include <bits/stdc++.h>
using namespace std;

int times[1010];

int main() {
    int N;
    scanf("%d",&N);
    int s,e,sum;
    for(int n=1; n<=N; ++n) {
        scanf("%d%d%d",&s,&e,&sum);
        for(int i=s;i<=e;i++)
			times[i]+=sum;
    }
    int maxn=-1;
    for(int i=1;i<=1005;++i)
		if(times[i]>maxn)
			maxn=times[i];
  	printf("%d\n",maxn);

	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值