USACO——Paired Up

农场主John发现他的奶牛在互相支持下更容易挤奶,因此他希望将N头奶牛(总数M)配对,使得同时进行的挤奶过程总时间最短。通过输入文件给出每种奶牛的数量及其挤奶产出,程序需计算并输出最优配对方案下的最短挤奶时间。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Paired Up

Farmer John finds that his cows are each easier to milk when they  have another cow 

nearby for moral support. He therefore wants to take his M cows (M≤1,000,000,000) and 
partition them into M/2 pairs. Each pair of cows will then be ushered off to a separate stall 
in   the  barn   for  milking.   The   milking   in  each   of  these M/2 stalls    will  take  place 
simultaneously. 


To   make   matters   a   bit   complicated,   each   of   Farmer   John's   cows   has   a   different   milk 
output. If cows of milk outputs A and B are paired up, then it takes a total of A+B units of 
time to milk them both. 


Please   help   Farmer   John   determine   the   minimum   possible   amount   of   time   the   entire 
milking process will take to complete, assuming he pairs the cows up in the best possible 
way. 


INPUT FORMAT (file pairup.in): 


The   first   line   of   input   contains N (1≤N≤100,000).   Each   of   the   next N lines   contains   two 
integers x and y, indicating that FJ has x cows each with milk output y (1≤y≤1,000,000,000). 
The sum of the x's is M, the total number of cows. 


OUTPUT FORMAT (file pairup.out): 


Print out the minimum amount of time it takes FJ's cows to be milked, assuming they are 
optimally paired up. 


SAMPLE INPUT: 

1 8 
2 5 
1 2 


SAMPLE OUTPUT: 


10 


Here, if the cows with outputs 8+2 are paired up, and those with outputs 5+5 are paired up, 
the both stalls take 10 units of time for milking. Since milking takes place simultaneously, 

the entire process would therefore complete after 10 units of time. Any other pairing would 

be sub-optimal, resulting in a stall taking more than 10 units of time to milk. 

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
struct node{
	int x,y;
}cow[100001];
inline int readint()
{
    int i=0,f=1;
    char ch;
    for(ch=getchar();ch<'0'||ch>'9';ch=getchar());
    for(;ch>='0' && ch<='9';ch=getchar())
        i=(i<<3)+(i<<1)+ch-'0';
    return i*f;
}
inline bool cmp(const node&a,const node&b)
{
	return a.y<b.y;
}
int main()
{
	auto int n,time=0,l=1,r;
	freopen("pairup.in","r",stdin);
	freopen("pairup.out","w",stdout);
	r=n=readint();
	for(int i=1;i<=n;++i) cow[i].x=readint(),cow[i].y=readint();
	sort(cow+1,cow+1+n,cmp);
	while(l<r)
	{
		time=max(time,cow[l].y+cow[r].y);
		if(cow[l].x<cow[r].x)
		{
			cow[r].x-=cow[l].x;
			while(!cow[++l].x);
		}
		else if(cow[l].x==cow[r].x)
		{
			while(!cow[++l].x);
			while(!cow[--r].x);
		}
		else
		{
			cow[l].x-=cow[r].x;
			while(!cow[--r].x);
		}
	}
	if(l==r) time=max(time,cow[l].y+cow[r].y);
	printf("%d\n",time);
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值