Codeforces Round #312 (Div. 2) A. Lala Land and Apple Trees 暴力

A. Lala Land and Apple Trees

Time Limit: 20 Sec

Memory Limit: 256 MB

题目连接

http://codeforces.com/contest/558/problem/A

Description

Amr lives in Lala Land. Lala Land is a very beautiful country that is located on a coordinate line. Lala Land is famous with its apple trees growing everywhere.

Lala Land has exactly n apple trees. Tree number i is located in a position xi and has ai apples growing on it. Amr wants to collect apples from the apple trees. Amr currently stands in x = 0 position. At the beginning, he can choose whether to go right or left. He'll continue in his direction until he meets an apple tree he didn't visit before. He'll take all of its apples and then reverse his direction, continue walking in this direction until he meets another apple tree he didn't visit before and so on. In the other words, Amr reverses his direction when visiting each new apple tree. Amr will stop collecting apples when there are no more trees he didn't visit in the direction he is facing.

What is the maximum number of apples he can collect?

Input

The first line contains one number n (1 ≤ n ≤ 100), the number of apple trees in Lala Land.

The following n lines contains two integers each xi, ai ( - 105 ≤ xi ≤ 105, xi ≠ 0, 1 ≤ ai ≤ 105), representing the position of the i-th tree and number of apples on it.

It's guaranteed that there is at most one apple tree at each coordinate. It's guaranteed that no tree grows in point 0.

Output

Output the maximum number of apples Amr can collect.

Sample Input

2
-1 5
1 5

Sample Output

10

 

HINT

 

题意

 有一个人,一开始会往左边走或者往右边走,碰到苹果树就会拾起这棵苹果树的所有果子,然后再交换方向,重复这个过程

问你这个人最多能拿多少个果子

题解:

先左右按着坐标排一个序,很显然只有两种走法,挨个判一下谁最大就好了

代码

#include<stdio.h>
#include<iostream>
#include<math.h>
#include<algorithm>
using namespace std;

struct node
{
    int x,y;
};
node a[101];
node b[101];
bool cmp(node aa,node bb)
{
    return aa.x<bb.x;
}
int main()
{
    int n;
    scanf("%d",&n);
    int num1=0,num2=0;
    for(int i=0;i<n;i++)
    {
        int c,d;
        cin>>c>>d;
        if(c<0)
            a[num1].x=-c,a[num1++].y=d;
        else
            b[num2].x=c,b[num2++].y=d;
    }
    sort(a,a+num1,cmp);
    sort(b,b+num2,cmp);
    int num=min(num1,num2);
    int ans=0;
    for(int i=0;i<num;i++)
        ans+=(a[i].y+b[i].y);
    if(num1>num2)
        ans+=a[num2].y;
    else if(num2>num1)
        ans+=b[num1].y;
    cout<<ans<<endl;

}

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值