一个简单的紫题:洛谷p1561

题目描述

Farmer John has discovered that his cows produce higher quality milk when they are subject to strenuous exercise. He therefore decides to send his N cows (1 <= N <= 25,000) to climb up and then back down a nearby mountain!

Cow i takes U(i) time to climb up the mountain and then D(i) time to climb down the mountain. Being domesticated cows, each cow needs the help of a farmer for each leg of the climb, but due to the poor economy, there are only two farmers available, Farmer John and his cousin Farmer Don. FJ plans to guide cows for the upward climb, and FD will then guide the cows for the downward climb. Since every cow needs a guide, and there is only one farmer for each part of the voyage, at most one cow may be climbing upward at any point in time (assisted by FJ), and at most one cow may be climbing down at any point in time (assisted by FD). A group of cows may temporarily accumulate at the top of the mountain if they climb up and then need to wait for FD's assistance before climbing down. Cows may climb down in a different order than they climbed up.

Please determine the least possible amount of time for all N cows to make the entire journey.

输入格式

第一行,一个整数 NN。

第 22 到第 N+1 行,每行两个用空格隔开的整数 U(i) 和 D(i)。(1≤U(i),D(i)≤50,000)。

输出格式

一行一个整数,表示所有 N 头牛完成旅程的最短时间。

题意翻译

农场主约翰发现他的奶牛剧烈运动后产奶的质量更高,所以他决定让 N 头 (1≤N≤25,000) 奶牛去附近爬山再返回来。

第 i 头奶牛用时 U(i) 爬上山,用时 D(i) 下山。作为家畜,奶牛们每段路都要有农夫的帮助,可是由于经济疲软,农场里只有两个农夫 John 和 Don。John 计划引导奶牛爬山,Don 引导奶牛下山。虽然每个奶牛都需要向导,但每段旅途只有一名农夫。所有任何时刻只有一头奶牛爬山也只能有一头奶牛下山,奶牛爬上山后,可以暂时停留在山顶上等待 Don 的帮助。奶牛上山的顺序和下山的顺序不一定要相同。

请计算出所有 N 头牛完成旅程的最短时间。

输入输出样例

输入 #1复制

3
6 4
8 1
2 3

思路:

这显然是一个贪心。

我们尽量让上山快的牛先上山,再让下山快的牛先下山。

所以我们可以使用sort

写一个cmp函数用于结构体排序

cmp:
bool cmp(node p1,node p2){
	if(p1.d!=p2.d)return p1.d<p2.d;
	else if(p1.d<=0)return p1.a<p2.a;
	return p1.b>p2.b;
}
结构体:
struct node{
	long long a,b,d;
}cow[30100];

d有三种值——1、0、-1,分别表示下山快,一样快和上山快。

再输出一下就行了。

完整code:
#include <bits/stdc++.h>
using namespace std;
struct node{
	long long a,b,d;
}cow[30100];
long long T,n,suma,c[30100];
bool cmp(node p1,node p2){
	if(p1.d!=p2.d)return p1.d<p2.d;
	else if(p1.d<=0)return p1.a<p2.a;
	return p1.b>p2.b;
}
int main(){
	cin>>n;
	for(int i=1;i<=n;i++){
		cin>>cow[i].a>>cow[i].b;
		if(cow[i].a<cow[i].b)cow[i].d=-1;
		else if(cow[i].a>cow[i].b)cow[i].d=1;
		else cow[i].d=0;
	}
	sort(cow+1,cow+n+1,cmp);
	for(int i=1;i<=n;i++){
		suma+=cow[i].a;
		c[i]=max(c[i-1],suma)+cow[i].b;
	}
	cout<<c[n];
}

总结:好水

  • 21
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值