鱼C论坛

 找回密码
 立即注册
查看: 1842|回复: 0

[技术交流] 离散化基础

[复制链接]
发表于 2022-8-26 21:29:08 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include <iostream>
#include <algorithm>
using namespace std;
const int MAX = 10001;
struct node
{
    int date;  //数值
    int rank;  //排名
    int index; //下标
};
node a[MAX];
bool comp1(node x, node y)
{
    return x.date < y.date; //自定义比较函数
}
bool comp2(node x, node y)
{
    return x.index < y.index; //自定义比较函数
}
int main()
{
    int n;
    cin >> n;
    for (int i = 1; i <= n; i++)
    {
        cin >> a[i].date;
        a[i].index = i;
    }
    sort(a + 1, a + 1 + n, comp1); //根据数值排序,求rank
    for (int i = 1; i <= n; i++)
    {
        a[i].rank = i;
    }
    sort(a + 1, a + 1 + n, comp2); //根据下标排序,回到原顺序
    for (int i = 1; i <= n; i++)
    {
        cout << a[i].rank << " ";
    }
    return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-16 23:41

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表