Codeforces Round #252 (Div. 2) B. Valera and Fruits

Let's start counting days from 1 to 3001. Let current day be i. Additionally, we'll have cur variable — number of fruit we didn't collect previous days. Suppose now fruit is ripen current day. If now + cur ≤ v, we need to add now + cur to answer and update cur value (cur = 0). Otherwise we add v to answer, but cur value need to be updated as follows. Let tv = max(v - cur, 0). Then cur = now - tv. In other words, we try to collect fruits that will not be collectable next day.

Additionally, problem could be solved with ;


#include<iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;


struct Node{
int a,b;
bool operator <(const Node &t)const{
return a<t.a;
}
}; 
Node a[3005];
int n,v;
 void solve() {
int fromLastDays = 0;


int ans = 0;
                 
for(int day = 1; day <= 3001; day++) {
int curDay = 0;


for(int i=0;i<n;i++) 
if (a[i].a == day)
curDay += a[i].b;


if (curDay + fromLastDays <= v) {
ans += fromLastDays + curDay;
fromLastDays = 0;
} else {
ans += v;


int tv = v - fromLastDays;


if (tv < 0) tv = 0;    //注意这里当tv<0的时候要变成0
       
               fromLastDays = curDay - tv;
}
}


cout << ans << endl;
}


int main(){


int i,j;
     while(scanf("%d%d",&n,&v)!=EOF){
      memset(a,0,sizeof(a));
      for(i=0;i<n;i++){
      scanf("%d %d",&a[i].a,&a[i].b);
      }
      solve();
     } 
     return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值