• 【PAT(甲级)】1069 The Black Hole of Numbers(易错点)


    For any 4-digit integer except the ones with all the digits being the same, if we sort the digits in non-increasing order first, and then in non-decreasing order, a new number can be obtained by taking the second number from the first one. Repeat in this manner we will soon end up at the number 6174 -- the black hole of 4-digit numbers. This number is named Kaprekar Constant.

    For example, start from 6767, we'll get:

    7766 - 6677 = 1089
    9810 - 0189 = 9621
    9621 - 1269 = 8352
    8532 - 2358 = 6174
    7641 - 1467 = 6174
    ... ...

    Given any 4-digit number, you are supposed to illustrate the way it gets into the black hole.

    Input Specification:

    Each input file contains one test case which gives a positive integer N in the range (0,104).

    Output Specification:

    If all the 4 digits of N are the same, print in one line the equation N - N = 0000. Else print each step of calculation in a line until 6174 comes out as the difference. All the numbers must be printed as 4-digit numbers.

    Sample Input 1:

    6767

    Sample Output 1:

    7766 - 6677 = 1089
    9810 - 0189 = 9621
    9621 - 1269 = 8352
    8532 - 2358 = 6174

    Sample Input 2:

    2222

    Sample Output 2:

    2222 - 2222 = 0000

    解题思路:

    就是字符串和数字之间来回转换,直到相减为6174为止,思路还是很简单的,需要注意的是这些数字永远都是4位的。

    易错点:

    测试点2,3,4都是因为忽略了数字永远都是4位的,降序排序的数字应该后补0,升序排序的数字应该前补0,直到数字为4位。

    代码:

    1. #include
    2. using namespace std;
    3. map<int,int> turn_int(string a){
    4. map<int,int> r;int f=0,s=0;
    5. sort(a.begin(),a.end());
    6. for(int i = 0;isize();i++){
    7. f=f*10+a[i]-'0';
    8. s=s*10+a[a.size()-1-i]-'0';
    9. }
    10. int times = a.size();
    11. while(times<4){// 当输入的字符串小于4位的时候,降序排序的那个数字需要后补0
    12. s*=10;
    13. times++;
    14. }
    15. r[f] = s;
    16. return r;
    17. }
    18. int main(){
    19. string N;
    20. cin>>N;
    21. int flag = 0;
    22. map<int,int> number;
    23. number = turn_int(N);
    24. auto i = number.begin();
    25. while(i->second - i->first != 6174){
    26. if(i->first == i->second) {
    27. printf("%04d - %04d = 0000\n",i->second,i->first);
    28. flag = 1;
    29. break;
    30. }
    31. printf("%04d - %04d = %04d\n",i->second,i->first,i->second-i->first);
    32. number = turn_int(to_string(i->second-i->first));
    33. i = number.begin();
    34. }
    35. if(flag == 0) printf("%04d - %04d = %04d\n",i->second,i->first,i->second-i->first);;
    36. return 0;
    37. }

  • 相关阅读:
    TCP习题总结
    Python中的元组
    【C++基础】13. 结构体
    04.shiro会话管理
    5年开发经验,看完这份37W字Java高性能架构,终于拿到架构师薪资
    [IAGC] Kafka消费者组的负载均衡策略
    PHP毕业设计项目作品源码选题(8)电影院售票系统毕业设计毕设作品开题报告
    Synchronized锁升级原理与过程深入剖析
    机器学习实战:用efficientdet训练自己的数据集
    别再把Tableau、PowerBI吹上天了,在中国根本用不起来,看看为啥
  • 原文地址:https://blog.csdn.net/weixin_55202895/article/details/126877876