• 【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. }

  • 相关阅读:
    P02014186陈镐镐
    6_ROS话题消息(Topic)
    人类历史上第一个人工神经元模型为mp模型有何不提出
    使用 Jenkins + Github + dokcer-compose 部署项目-实战篇
    MySQL进阶实战11,查询缓存
    【信息安全】-虚拟专用网络
    什么是国内生产总值(GDP)
    【arduino】时间相关函数
    来看看单阶段目标检测算法趴
    LVS+Keepalived NGINX+Keepalived 高可用群集实战部署
  • 原文地址:https://blog.csdn.net/weixin_55202895/article/details/126877876