[洛谷P1607] 庙会班车

题目描述

Although Farmer John has no problems walking around the fair to collect prizes or see the shows, his cows are not in such good shape; a full day of walking around the fair leaves them exhausted. To help them enjoy the fair, FJ has arranged for a shuttle truck to take the cows from place to place in the fairgrounds.

FJ couldn't afford a really great shuttle, so the shuttle he rented traverses its route only once (!) and makes N (1 <= N <= 20,000) stops (conveniently numbered 1..N) along its path. A total of K (1 <= K <= 50,000) groups of cows conveniently numbered 1..K wish to use the shuttle, each of the M_i (1 <= M_i <= N) cows in group i wanting to ride from one stop S_i (1 <= S_i < E_i) to another stop E_i (S_i < E_i <= N) farther along the route.

The shuttle might not be able to pick up an entire group of cows (since it has limited capacity) but can pick up partial groups as appropriate.

Given the capacity C (1 <= C <= 100) of the shuttle truck and the descriptions of the groups of cows that want to visit various sites at the fair, determine the maximum number of cows that can ride the shuttle during the fair.

题目翻译

逛逛集市,兑兑奖品,看看节目对农夫约翰来说不算什么,可是他的奶牛们非常缺乏锻炼——如果要逛完一整天的集市,他们一定会筋疲力尽的。所以为了让奶牛们也能愉快地逛集市,约翰准备让奶牛们在集市上以车代步。但是,约翰木有钱,他租来的班车只能在集市上沿直线跑一次,而且只能停靠N(1 ≤N≤20000)个地点(所有地点都以1到N之间的一个数字来表示)。现在奶牛们分成K(1≤K≤50000)个小组,第i 组有Mi(1 ≤Mi≤N)头奶牛,他们希望从Si跑到Ti(1 ≤Si<Ti≤N)。

由于班车容量有限,可能载不下所有想乘车的奶牛们,此时也允许小里的一部分奶牛分开乘坐班车。约翰经过调查得知班车的容量是C(1≤C≤100),请你帮助约翰计划一个尽可能满足更多奶牛愿望的方案。

输入格式

第一行:包括三个整数:K,N和C,彼此用空格隔开。

第二行到K+1行:在第i+1行,将会告诉你第i组奶牛的信息:Si,Ei和Mi,彼

此用空格隔开。

输出格式

第一行:可以坐班车的奶牛的最大头数。

样例输入

8 15 3
1 5 2
13 14 1
5 8 3
8 14 2
14 15 1
9 12 1
12 15 2
4 6 1

样例输出

10

说明

【样例说明】

班车可以把2头奶牛从1送到5,3头奶牛从5送到8,2头奶牛从8送到14,1头

奶牛从9送到12,1头奶牛从13送到14,1头奶牛从14送到15。

解析

首先,我们把所有牛的路线按终点从小到大排序。然后扫描所有组,用一个数组记录当前列车到达每个点时会有多少牛。在每个起点能够放多少牛就放多少牛,然后给整个路线区间上的点都加上上车的牛的数量。这样做的正确性在于使每组牛对后面产生的影响最少。

代码

#include <iostream>
#include <cstdio>
#include <algorithm>
#define N 50002
using namespace std;
struct cow{
	int s,e,c;
}a[N];
int k,n,c,i,j,cnt[N],ans;
int read()
{
	char c=getchar();
	int w=0;
	while(c<'0'||c>'9') c=getchar();
	while(c<='9'&&c>='0'){
		w=w*10+c-'0';
		c=getchar();
	}
	return w;
}
int my_comp(const cow &x,const cow &y)
{
	if(x.e==y.e) return x.s<y.s;
	return x.e<y.e;
}
int main()
{
	k=read();n=read();c=read();
	for(i=1;i<=k;i++) a[i].s=read(),a[i].e=read(),a[i].c=read();
	sort(a+1,a+k+1,my_comp);
	for(i=1;i<=k;i++){
		if(cnt[a[i].s]>=c) continue;
		int minx=1<<30;
		for(j=a[i].s;j<=a[i].e;j++) minx=min(minx,c-cnt[j]);
		if(minx<=0) continue;
		if(minx>=a[i].c){
			for(j=a[i].s;j<a[i].e;j++) cnt[j]+=a[i].c;
			ans+=a[i].c;
		}
		else{
			for(j=a[i].s;j<a[i].e;j++) cnt[j]+=minx;
			ans+=minx;
		}
	}
	printf("%d
",ans);
	return 0;
}
原文地址:https://www.cnblogs.com/LSlzf/p/11877566.html