time limit per test1 second

memory limit per test256 megabytes

inputstandard input

outputstandard 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 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.

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.

【题目链接】:http://codeforces.com/contest/558/problem/A

【题解】



可以把x=0这个点插入到数组中;

用lower_bound查询它在数组中的位置;

然后按照题意往左往右走;

遇到边界就结束了(题意);



【完整代码】

#include <bits/stdc++.h>
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define rep1(i,a,b) for (int i = a;i <= b;i++)
#define rep2(i,a,b) for (int i = a;i >= b;i--)
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define rei(x) scanf("%d",&x)
#define rel(x) scanf("%I64d",&x)
#define pri(x) printf("%d",x)
#define prl(x) printf("%I64d",x) typedef pair<int,int> pii;
typedef pair<LL,LL> pll; const int MAXN = 1e2+10;
const int dx[9] = {0,1,-1,0,0,-1,-1,1,1};
const int dy[9] = {0,0,0,-1,1,-1,1,-1,1};
const double pi = acos(-1.0); struct abc
{
int x,a;
}; abc a[MAXN];
bool flag[MAXN];
int n,pos; bool cmp(abc a,abc b)
{
return a.x<b.x;
} int get_ans(int chushi)
{
int ans = 0;
memset(flag,false,sizeof(flag));
int tempn = n-1;
flag[pos] = true;
int now = pos;
int dir = chushi;
while (tempn>0)
{
now+=dir;
if (now==0||now==n+1) break;
if (!flag[now])
{
ans+=a[now].a;
dir=dir*(-1);
flag[now] = true;
tempn--;
}
}
return ans;
} int main()
{
//freopen("F:\\rush.txt","r",stdin);
rei(n);
rep1(i,1,n)
rei(a[i].x),rei(a[i].a);
n++;
a[n].x = 0,a[n].a = 0;
sort(a+1,a+1+n,cmp);
abc temp;
temp.x = 0;
pos = lower_bound(a+1,a+1+n,temp,cmp)-a;
pri(max(get_ans(1),get_ans(-1)));
return 0;
}

最新文章

  1. 【Java EE 学习 28 上】【oracle学习第二天】【子查询】【集合运算】【几种数据库对象】
  2. Codeforces Round #354 (Div. 2)
  3. SQLServer的学习场景(关于row_number()和COALESCE()的使用)
  4. 【WP8.1开发】基于应用的联系人存储
  5. 【Beta版本】冲刺-Day2
  6. Linux iostat监测IO状态(转)
  7. Use GraceNote SDK in iOS(二)获取音乐的完整信息
  8. Struts2的DMI跟SMI
  9. 使用 GitHub, Jekyll 打造自己的免费独立博客
  10. 14、Iterator跟ListIterator的区别
  11. Drools 6.5 Final 入门
  12. Install rapyuta Robot Cloud Engine on Ubuntu14.04
  13. 比较分析 Spring AOP 和 AspectJ 之间的差别
  14. C++中vector的使用
  15. Linux下vim(文本编译器)的使用
  16. js只对等号左边的进行变量提升
  17. perl6正则 3: 行开头与结尾与多行开头,多行结尾
  18. 115个Java面试题和答案(下)
  19. SqlLocalDB命令
  20. 详略。。设计模式2——单例变形(多例).。。。studying

热门文章

  1. js19--继承终极版本
  2. 9.Maven之(九)依赖关系
  3. HDU 1197 Specialized Four-Digit Numbers
  4. Javascript 6 种继承
  5. C#监控代码运行的时间
  6. [Vue + TS] Use Dependency Injection in Vue Using @Inject and @Provide Decorators with TypeScript
  7. Activity Test1
  8. Activity启动模式的深入分析
  9. 【CS Round #43 D】Bad Triplet
  10. Java基础学习总结(54)——JSON和Map转换的工具类