[BZOJ1676]&&[Usaco2005 Feb]Feed Accounting 饲料计算

描述 Description

Farmer John is trying to figure out when his last shipment of feed arrived. Starting with an empty grain bin, he ordered and received F1 (1 <= F1 <= 1,000,000) kilograms of feed. Regrettably, he is not certain exactly when the feed arrived. Of the F1 kilograms, F2 (1 <= F2 <= F1) kilograms of feed remain on day D (1 <= D <= 2,000). He must determine the most recent day that his shipment could have arrived. Each of his C (1 <= C <= 100) cows eats exactly 1 kilogram of feed each day. For various reasons, cows arrive on a certain day and depart on another, so two days might have very different feed consumption. The input data tells which days each cow was present. Every cow ate feed from Farmer John’s bin on the day she arrived and also on the day she left. Given that today is day D, determine the minimum number of days that must have passed since his last shipment. The cows have already eaten today, and the shipment arrived before the cows had eaten.

约翰想知道上一船饲料是什么时候运到的.在饲料运到之前,他的牛正好把仓库里原来的饲料全吃光了. 他收到运来的 F1(1≤Fi≤1000000) 千克饲料.遗憾的是,他已经不记得这是哪一天的事情了.到第 D(1≤D≤2000) 天为止,仓库里还剩下 F2(1≤F2≤Fi)千克饲料.

约翰养了 C(1≤C≤100) 头牛,每头牛每天都吃掉恰好 1 千克饲料.由于不同的原因,牛们从某一天开始在仓库吃饲料,又在某一天离开仓库,所以不同的两天可能会有差距很大的饲料消耗量.每头牛在来的那天和离开的那天都在仓库吃饲料. 给出今天的日期 D,写一个程序,判断饲料最近一次运到是在什么时候.今天牛们已经吃过饲料了,并且饲料运到的那天牛们还没有吃过饲料.

输入格式 InputFormat

Line 1: Four space-separated integers: C, F1, F2, and D * Lines 2..C+1: Line i+1 contains two space-separated integers describing the presence of a cow. The first integer tells the first day the cow was on the farm; the second tells the final day of the cow’s presence. Each day is in the range 1..2,000.

第 1 行:四个整数 C,F1,F2,D,用空格隔开.

第 2 到 C+1 行:每行是用空格隔开的两个数字,分别表示一头牛来仓库吃饲料的时间和离开的时间.

输出格式 OutputFormat

The last day that the shipment might have arrived, an integer that will always be positive.

一个正整数,即上一船饲料运到的时间.

样例输入 SampleInput

4 63 29 40
9 25
32 56
11 44
4 29

样例输出 SampleOutput

24

来源 Source

Silver


BZOJ 1676


代码 Code

区间修改区间求和什么的差分序列就好了。

#include <stdio.h>
#include <iostream>
#include <cstring>
#include <algorithm>
#include <cmath>
using namespace std;
const int inf=0x7fffffff/11.27;
int i,j,t,n,m,l,r,k,z,y,x;
inline void read(int &x)
{
    x=0;char ch=getchar();
    while (ch<'0' || ch>'9') ch=getchar();
    while (ch>='0' && ch<='9') x=x*10+ch-'0',ch=getchar();
}
int c,f1,f2,d;
int f[2005];
int main()
{
    memset(f,0,sizeof(f));
    read(c);read(f1);read(f2);read(d);
    for (i=1;i<=c;i++)
    {
        read(x);read(y);
        if (x<=d) f[x]++;
        if (y+1<=d) f[y+1]--;
    }
    for (i=1;i<=d;i++) f[i]=f[i]+f[i-1];
    for (i=d;i>=1;i--) 
    {
        f2+=f[i];
        if (f2>=f1) break;
    }
    printf("%d\n",i);
    return 0;
}