Codeforces 558A Lala Land and Apple Trees(Sort快排)

來源:互聯網
上載者:User

標籤:codeforces

A. Lala Land and Apple Treestime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard 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?≤?105xi?≠?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 test(s)input
2-1 51 5
output
10
input
3-2 21 4-1 3
output
9
input
31 93 57 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.



#include <cstdio>#include <iostream>#include <cstring>#include <cmath>#include <string>#include <algorithm>#include <queue>#include <stack>using namespace std;const double PI = acos(-1.0);const double e = 2.718281828459;const double eps = 1e-8;struct node{    int index;    int num;} a[110];bool cmp(node x, node y){    return x.index < y.index;}int main(){    //freopen("in.txt", "r", stdin);    //freopen("out.txt", "w", stdout);    int n;    while(cin>>n)    {        int left = 0;        int right = 0;        int left_sum = 0;        int right_sum = 0;        for(int i = 1; i <= n; i++)        {            scanf("%d %d", &a[i].index, &a[i].num);            if(a[i].index < 0)            {                left++;                left_sum += a[i].num;            }            else            {                right++;                right_sum += a[i].num;            }        }        sort(a+1, a+1+n, cmp);        int pl, pr;        int sum1, sum2, sum;        if(left!=0 && right==0)        {            printf("%d\n", a[n].num);        }        else if(left==0 && right!=0)        {            printf("%d\n", a[1].num);        }        else if(abs(left-right) <= 1)        {            printf("%d\n", left_sum+right_sum);        }        else if(left > right)        {            pl = left-right;            sum1 = left_sum+right_sum;            for(int i = 1; i <= pl; i++)            {                sum1 -= a[i].num;            }            sum2 = left_sum+right_sum;            for(int i = 1; i <= pl-1; i++)            {                sum2 -= a[i].num;            }            printf("%d\n", max(sum1, sum2));        }        else if(left < right)        {            pr = right-left;            sum1 = left_sum+right_sum;            int i = n;            while(pr--)            {                sum1 -= a[i--].num;            }            i = n;            pr = right-left-1;            sum2 = left_sum+right_sum;            while(pr--)            {                sum2 -= a[i--].num;            }            printf("%d\n", max(sum1, sum2));        }    }    return 0;}


著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

Codeforces 558A Lala Land and Apple Trees(Sort快排)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.