(UVA - 11039)Building designing (贪心)

9 篇文章 0 订阅
6 篇文章 0 订阅

链接: https://vjudge.net/problem/UVA-11039
题意:有n个绝对值各不相同的非0整数,选出尽量多的书,排成一个序列,使得正负号交替,且绝对值递增。输入n(1<=n<5e5)和n个整数,输出最长的序列长度。

分析:贪心

#include <cstdio>
#include <cstring>
#include <iostream>
#include <cmath>
#include <algorithm>
#include <sstream>
#include <string>
#include <set>
using namespace std;
#define mem(a,n) memset(a,n,sizeof(a))
typedef long long LL;
const LL mod=1e9+7;
const double eps=1e-6;
const LL INF=0x3f3f3f3f;
const int N=5e5+5;
struct Node
{
    int abte,x;
    bool operator < (const Node& m)const
    {
        return abte<m.abte;
    }
} p[N];
int main()
{
    int T,n;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d",&n);
        for(int i=0; i<n; i++)
        {
            scanf("%d",&p[i].x);
            p[i].abte=abs(p[i].x);
        }
        sort(p,p+n);
        int ans=1,tmp=p[0].x;
        for(int i=1; i<n; i++)
        {
            if(tmp<0)
            {
                while(i<n&&p[i].x<0) i++;
            }
            else
            {
                while(i<n&&p[i].x>0) i++;
            }
            if(i<n)
            {
                ans++;
                tmp=p[i].x;
            }
        }
        printf("%d\n",ans);
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值