解题思路:贱命一条就是干
注意事项:无
参考代码:
#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 人评分
DNA (C语言描述,数据结构)浏览:909 |
WU-C语言程序设计教程(第三版)课后习题11.11 (C++代码)(想学链表的可以看看)浏览:1464 |
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:651 |
字符逆序 (C语言代码)浏览:506 |
C二级辅导-统计字符 (C语言代码)浏览:514 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:383 |
整除问题 (C语言代码)浏览:594 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:606 |
【计算直线的交点数】 (C语言代码)浏览:986 |
小O的数字 (C语言代码)浏览:1490 |