吴浩


私信TA

用户名:dotcpp0607253

访问量:50

签 名:

2022405535

等  级
排  名 72737
经  验 166
参赛次数 0
文章发表 2
年  龄 0
在职情况 学生
学  校 吉首大学
专  业

  自我简介:

解题思路:贱命一条就是干

注意事项:无

参考代码:

#include <stdio.h>

#include <stdlib.h>


#define max 1000005


struct Node {

    int a;

    int b;

};


struct Node s[max];


int sum(int a) {

    int m = 0;

    while (a > 0) {

        m += a % 10;

        a /= 10;

    }

    return m;

}


int cmp(const void *pa, const void *pb) {

    struct Node *x = (struct Node *)pa;

    struct Node *y = (struct Node *)pb;


    if (x->b < y->b) {

        return -1;

    } else if (x->b > y->b) {

        return 1;

    } else {

        if (x->a < y->a) {

            return -1;

        } else if (x->a > y->a) {

            return 1;

        }

    }

    return 0;

}


void solve() {

    int n, m;

    scanf("%d %d", &n, &m);


    for (int i = 1; i <= n; i++) {

        s[i].a = i;

        s[i].b = sum(i);

    }


    qsort(s + 1, n, sizeof(struct Node), cmp);


//  for (int i = 1; i <= n; i++) {//输出测试

//      printf("%d %d\n", s[i].a, s[i].b);

//  }


    printf("%d\n", s[m].a);

}


int main() {

    int t = 1;

    //scanf("%d", &t);

    while (t--) solve();

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »