CodeForces 558 A.Lala Land and Apple Trees(水~)

Description
坐标轴两端有一些苹果树,每棵树上有一定量的苹果,小明从原点出发向一个方向前进,遇到苹果树就摘下所有苹果并反向,依次类推,问小明能够摘到的最大苹果数
Input
第一行为苹果树数量n,之后n行每行两个整数x和a表示苹果树的位置及其数量
Output
输出小明能够摘到的最大苹果数
Sample Input
3
-2 2
1 4
-1 3
Sample Output
9
Solution
水题,坐标为正和为负的苹果树数量相同则全可以摘下,否则就是多的一边多摘一棵树的苹果
Code

#include
#include
#include
#include 
using namespace std;
struct node
{
    int pos,num;
}app[111];
int cmp(node a,node b)
{
    return a.pospos;
}
int main()
{
    int n;
    scanf("%d",&n);
    for(int i=1;i<=n;i++)
        scanf("%d%d",&app[i].pos,&app[i].num);
    sort(app+1,app+n+1,cmp);
    int i=1;
    while(app[i].pos<0)
        i++;
    i--;
    int ans=0;
    if(i<=n/2)
        for(int j=0;j<=min(2*i+1,n);j++)
            ans+=app[j].num;
    else
        for(int j=2*i-n;j<=n;j++)
            ans+=app[j].num;
    printf("%d\n",ans);
    return 0;   
}

你可能感兴趣的:(Code,Forces,水题)