解题思路:
创建结构体用number存储数值,len存储各各数位相加的结果。根据题意定义小于运算,然后可以直接使用c++内置的sort函数进行排序。
注意事项:
参考代码:
#include<bits/stdc++.h> using namespace std; struct node{ int number; int len; }; bool operator < (node& A, node& B) { if(A.len<B.len)return true; else if (A.len == B.len && A.number < B.number) return true; else return false; } struct node line[1000005]; int main() { int i,j,m,n; cin >> n >> m; for(i=1;i<=n;i++) { line[i].number=i; line[i].len=0; } for(i=1;i<=n;i++) { int ink = line[i].number; while(ink>0) { line[i].len = line[i].len + (ink % 10); ink = ink / 10; } } sort(line+1,line+n+1); cout << line[m].number << endl; return 0; }
0.0分
2 人评分
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:387 |
母牛的故事 (C语言代码)浏览:992 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:688 |
完数 (C语言代码)浏览:757 |
The 3n + 1 problem (C语言代码)浏览:603 |
有关字符,字符串的输入输出函数说明浏览:498 |
复数求和 (C语言代码)浏览:995 |
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:985 |
C语言程序设计教程(第三版)课后习题6.10 (C语言代码)浏览:538 |
10月月赛题解浏览:554 |