1387. 将整数按权重排序

多条件排序的案例:






#include <iostream>
#include <bits/stdc++.h>

using namespace std;

typedef pair<int,int> PII;
//降序函数

bool cmpa(int a, int b)
{
    return a>b;//升序则为a<b
}
//改成相应的参数

bool cmp2(PII a,PII b)
{
    return a.first<b.first;//根据fisrt的值升序排序
    //return a.second<b.second;//根据second的值升序排序
}


// 如果第二个值相等,按照一个值递增排序,否则按照第二个递增排序
bool cmp3(PII a,PII b) {
    if(a.second==b.second) {   
        return a.first<b.first;
    }
    return a.second<b.second;
}

int main()
{

    vector<int> nums;

    nums.push_back(2);
    nums.push_back(1);
    nums.push_back(3);
    nums.push_back(4);
    nums.push_back(5);
    nums.push_back(10);

    sort(nums.begin(),nums.end(),cmpa);

    for(auto i:nums) {
        cout<<i<<" ";
    }

    cout<<endl<<"------------------------"<<endl;
    vector<pair<int,int>> vec;
    vec.push_back(make_pair(3,2));
    vec.push_back(make_pair(3,5));
    vec.push_back(make_pair(6,7));
    vec.push_back(make_pair(9,3));
    vec.push_back(make_pair(10,1));

    //如何调用
    sort(vec.begin(),vec.end(),cmp2);//降序排列

    for(auto i:vec) {
        cout<<i.first<<" "<<i.second<<endl;
    }

    return 0;
}

class Solution {
public:
    
    typedef pair<int,int> PII;
    static bool cmp3(PII a,PII b) {
        if(a.second==b.second) {   
            return a.first<b.first;
        }
        return a.second<b.second;
    }

    int getKth(int lo, int hi, int k) {

        vector<pair<int,int>> res;

        for(int i=lo;i<=hi;i++) {
            int temp = i;
            int count = 0;
            while(temp!=1) {
                if(temp%2==0) {
                    temp/=2;
                }
                else {
                    temp = temp*3+1;
                }
                count++;
            }
            res.push_back(pair(i,count));
        }

        sort(res.begin(),res.end(),cmp3);
        return res[k-1].first;
    }
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值