题目链接:

A. Lala Land and Apple Trees

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

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 xiai ( - 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.

Examples
input
2
-1 5
1 5
output
10
input
3
-2 2
1 4
-1 3
output
9
input
3
1 9
3 5
7 10
output
9
Note

In the first sample test it doesn't matter if Amr chose at first to go left or right. In both cases he'll get all the apples.

In the second sample test the optimal solution is to go left to x =  - 1, collect apples from there, then the direction will be reversed, Amr has to go to x = 1, collect apples from there, then the direction will be reversed and Amr goes to the final tree x =  - 2.

In the third sample test the optimal solution is to go right to x = 1, collect apples from there, then the direction will be reversed and Amr will not be able to collect anymore apples because there are no apple trees to his left.

题意:

在0处选择向左或者向右走,每次采一次苹果就要转身往回走,最多能采多少苹果;

思路:

要采的苹果最多,那么一定要尽量把采的次数增多,最后一次肯定要采苹果树多的方向;

AC代码:

/*
558A - 7 GNU C++11 Accepted 30 ms 3736 KB
*/
#include <bits/stdc++.h>
using namespace std;
const int N=1e5+;
typedef long long ll;
const double PI=acos(-1.0);
struct node
{
int pos,a;
};
node l[N],r[N];
int cmp1(node x,node y)
{
return x.pos>y.pos;
}
int cmp2(node x,node y)
{
return x.pos<y.pos;
}
int main()
{
int n,x,y;
scanf("%d",&n);
int cnt=,num=;
for(int i=;i<=n;i++)
{
scanf("%d%d",&x,&y);
if(x<)
{
l[cnt].pos=x;
l[cnt++].a=y;
}
else
{
r[num].pos=x;
r[num++].a=y;
}
}
sort(l,l+cnt,cmp1);
sort(r,r+num,cmp2);
int ans=;
for(int i=;i<num&&i<cnt;i++)
{
ans+=l[i].a;
ans+=r[i].a;
}
if(num>cnt)
{
ans+=r[cnt].a;
}
else if(num<cnt)
{
ans+=l[num].a;
}
cout<<ans<<endl; return ;
}

最新文章

  1. Java EE之servlet实现用户登录
  2. Visual Studio 2013启用AnkSVN
  3. UVa 101 - The Blocks Problem(积木问题,指令操作)
  4. Altium自定义的快捷键设置
  5. Convert Sorted List to Binary Search Tree java
  6. 黑马程序猿——java基金会--jdk、变量
  7. java中的静态代理和动态代理,入门整理
  8. ZOJ 2480 - Simplest Task in Windows
  9. Do You Kown Asp.Net Core - 根据实体类自动创建Razor Page CURD页面模板
  10. CSS之img标签
  11. MongoDB pymongo模块 插入数据
  12. 20180426 Linq to excel
  13. 小程序 login
  14. pytorch学习记录
  15. Spring3.0.3使用之异常解决
  16. javascript原生bind方法详解
  17. mysql设置环境变量
  18. vue-router页面传值及接收值
  19. C语言——&lt;算法&gt;_冒泡算法的使用及理解
  20. Logrotate日志轮巡missingok: 在日志轮循期间,任何错误将被忽略

热门文章

  1. sql字符串处理
  2. CSS解决无空格太长的字母,数字不会自己主动换行的问题
  3. g2o 初始化
  4. 以使用QSqlQuery向数据库中插入数据为例,做一个小结
  5. 基于RedHat发行的Apache Tomcat本地提权漏洞
  6. erlang中的图片下载
  7. ASP.NET动态网站制作(12)-- JQ(4)
  8. Unity3D研究院编辑器之脚本设置ToolBar及脚本设置顶视图
  9. 基于红帽5裁剪一个简单的Linux
  10. 关于TextView 的属性