zoukankan      html  css  js  c++  java
  • Codeforces Round #312 (Div. 2) A.Lala Land and Apple Trees

    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.

    Sample test(s)
    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.

    题解:正负贪心一下,注意两边相等的情况。

     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cmath>
     4 #include<algorithm>
     5 #include<queue>
     6 #include<cstring>
     7 #define PAU putchar(' ')
     8 #define ENT putchar('
    ')
     9 using namespace std;
    10 inline int read(){
    11     int x=0,sig=1;char ch=getchar();
    12     while(!isdigit(ch)){if(ch=='-')sig=-1;ch=getchar();}
    13     while(isdigit(ch))x=10*x+ch-'0',ch=getchar();
    14     return x*=sig;
    15 }
    16 inline void write(int x){
    17     if(x==0){putchar('0');return;}if(x<0)putchar('-'),x=-x;
    18     int len=0,buf[15];while(x)buf[len++]=x%10,x/=10;
    19     for(int i=len-1;i>=0;i--)putchar(buf[i]+'0');return;
    20 }
    21 void init(){
    22     int n=read(),neg=0;
    23     pair<int,int>a[n];
    24     for(int i=0;i<n;i++){
    25         a[i].first=read();a[i].second=read();
    26         if(a[i].first<0)neg++;
    27     }sort(a,a+n);
    28     int sol=0;
    29     if((neg<<1)<n)for(int i=0;i<min((neg<<1)+1,n);i++)sol+=a[i].second;
    30     else for(int i=max((neg<<1)-n-1,0);i<n;i++)sol+=a[i].second;
    31     write(sol);
    32     return;
    33 }
    34 void work(){
    35     return;
    36 }
    37 void print(){
    38     return;
    39 }
    40 int main(){init();work();print();return 0;}
  • 相关阅读:
    PHP 关于字符串操作的练习
    PHP 字符串操作
    JavaScript DOM级事件
    JavaScript 会闪烁的文字
    JavaScript 当输入框获得焦点:如果输入框值为空,提示输入你的姓名,当输入框失去焦点,如果输入框值为空,提示用户名不能为空,边框颜色变为红色,如果输入框值不为0,那么不提示边框默认颜色
    Js 特效之鼠标点击出现小心心特效
    JavaScript BOM对象 DOM对象
    JavaScript 当用户在弹出的输入框中输入手机号码后,将手机号码的前7位转化为*号
    JavaScript 编写代码对用户输入内容的输入框进行排查,看有没有敏感字“草”字
    第一次c++作业小结
  • 原文地址:https://www.cnblogs.com/chxer/p/4676791.html
Copyright © 2011-2022 走看看