codeforces A. The Bucket List(水)

A. The Bucket List

time limit per test:1 second
memory limit per test:256 megabytes
input:standard input
output:standard output

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.

Example

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

Note

In this example, FJ needs 4 buckets: He uses buckets 1 and 2 for milking cow 3 (starting at time 2). He uses bucket 3 for milking cow 1 (starting at time 4). When cow 2 arrives at time 8, buckets 1 and 2 are now available, but not bucket 3, so he uses buckets 1, 2, and 4.

分析

题目很简单,给出n头牛,每头要从 si 的时间开始挤奶,到 ti 为止,挤奶过程需要占用用 bi 个桶;
问需要准备多少个桶;
题目中有一句每单位时间不超过1头牛开始挤奶或结束挤奶;
那直接排序扫一遍记录一下就行了;

代码

#include<cstdio>
#include<cstring>
#include<queue>
#include<vector>
#include<algorithm>
#define MS(X) memset(X,0,sizeof(X))
typedef long long LL;
using namespace std;
typedef struct node{
    int s,b;
}P;
P st[103],pt[103];
bool cmp(node a,node b){
    return a.s<b.s;
}
int n,ans,rnt;
int main(){
    scanf("%d",&n);
    rnt=0;ans=0;
    for(int i=0;i<n;i++){
        scanf("%d%d%d",&st[i].s,&pt[i].s,&st[i].b);
        pt[i].b=st[i].b;
    }
    sort(st,st+n,cmp);
    sort(pt,pt+n,cmp);
    int tp=0;
    for(int i=0;i<n;i++){
        while(st[i].s>=pt[tp].s){
            rnt-=pt[tp].b;
            tp++;
        }
        rnt+=st[i].b;
        ans=max(ans,rnt);
    }
    printf("%d\n",ans);
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值