牛牛找工作(排序)

题目没有给出时间范围,第一次写出之后T了。
题目链接
下面是超时做法:时间复杂度为O(mn)

#include <bits/stdc++.h>
using namespace std;
int N,M;
#define LL long long 
typedef pair<LL,LL> PII;

pair<LL ,LL > a[100005];
pair<LL,LL> b[100005];
bool cmp(PII a,PII b)
{
    return a.second>b.second;
}
int main()
{
    cin>>N>>M;
    for(int i=0;i<N;i++)
    {
        cin>>a[i].first>>a[i].second;
    }
    sort(a,a+N,cmp);
  for(int i=0;i<M;i++)
    {
        cin>>b[i];
        for(int j=0;j<N;j++)
        {
            if(b[i]>=a[j].first)
            {
                cout<<a[j].second<<endl;
                break;
            }
            else if(j==N-1)
                cout<<0<<endl;             
        }

    }
    return 0;
}

经过改进后复杂度变为O(m),可以通过所有测试用例(其实不需要LL)


#include <bits/stdc++.h>
#include <algorithm>
#include <cmath>
using namespace std;
int N,M;
#define LL long long 
typedef pair<LL,LL> PII;

pair<LL ,LL > a[100005];
pair<LL,LL> b[100005];
bool cmp(PII a,PII b)
{
    return a.second<b.second;
}
bool cmp1(PII a,PII b)
{
    return a.first<b.first;
}
int main()
{
    cin>>N>>M;
    for(int i=0;i<N;i++)
    {
        cin>>a[i].first>>a[i].second;
    }
    sort(a,a+N,cmp1);
   for(int i=0;i<M;i++)
   {
       cin>>b[i].first;
       b[i].second=i;
   }
    sort(b,b+M,cmp1);
    int j=0;
    LL maxmum=0;
    for(int i=0;i<M;i++)
    {
        while(j<N)
        {
            if(a[j].first>b[i].first)
                break;
            maxmum=max(maxmum,a[j].second);
            j++;
        }
        b[i].first=maxmum;
    }
    sort(b,b+M,cmp);
    for(int i=0;i<M;i++)
    {
        cout<<b[i].first<<endl;
    }
    return 0;
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值