『算法-ACM竞赛-USACO』 Training Section 1.2 挤牛奶Milking Cows

『算法-ACM 竞赛-USACO』 Training Section 1.2 挤牛奶 Milking Cows

题目描述

三个农民每天清晨 5 点起床,然后去牛棚给 3 头牛挤奶。第一个农民在 300 秒(从 5 点开始计时)给他的牛挤奶,一直到 1000 秒。第二个农民在 700 秒开始,在 1200 秒结束。第三个农民在 1500 秒开始 2100 秒结束。期间最长的至少有一个农民在挤奶的连续时间为 900 秒(从 300 秒到 1200 秒),而最长的无人挤奶的连续时间(从挤奶开始一直到挤奶结束)为 300 秒(从 1200 秒到 1500 秒)。

你的任务是编一个程序,读入一个有 N 个农民(1 <= N <= 5000)挤 N 头牛的工作时间列表,计算以下两点(均以秒为单位):

最长至少有一人在挤奶的时间段。

最长的无人挤奶的时间段。(从有人挤奶开始算起)

输入输出格式

输入格式:
Line 1:

一个整数 N。

Lines 2..N+1:

每行两个小于 1000000 的非负整数,表示一个农民的开始时刻与结束时刻。

输出格式:
一行,两个整数,即题目所要求的两个答案。

输入输出样例

输入样例#1:
3
300 1000
700 1200
1500 2100

输出样例#1:

900 300
说明
题目翻译来自 NOCOW。

一个耿直的做法,很耿,很好想。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include<cstdio>
#include<cstring>
#include<cmath>
#include<iostream>
using namespace std;
const int maxn=1e6+5;
int ob[maxn];
int main()
{
int n,mx=0,mi=0x7f7f7f7f;
memset(ob,0,sizeof(ob));
scanf("%d",&n);
while(n--)
{
int x,y;
scanf("%d%d",&x,&y);
mx=max(mx,y);
mi=min(mi,x);
memset(ob+x,-1,sizeof(int)*(y-x));
}
int sum=0,ma=0,sum1=0,ma1=0;
for(int i=mi;i<mx;i++)
{
if(ob[i]==0) sum=0;
else sum++;
ma=max(sum,ma);
if(ob[i]==-1) sum1=0;
else sum1++;
ma1=max(sum1,ma1);
}
printf("%d %d\n",ma,ma1);
}


『算法-ACM竞赛-USACO』 Training Section 1.2 挤牛奶Milking Cows
https://chiamzhang.github.io/2024/06/29/『算法-ACM竞赛-USACO』 Training Section 1.2 挤牛奶Milking Cows/
Author
Chiam
Posted on
June 29, 2024
Licensed under