zoukankan      html  css  js  c++  java
  • PTA (Advanced Level) 1024 Palindromic Number

    Palindromic Number

      A number that will be the same when it is written forwards or backwards is known as a Palindromic Number. For example, 1234321 is a palindromic number. All single digit numbers are palindromic numbers.

      Non-palindromic numbers can be paired with palindromic ones via a series of operations. First, the non-palindromic number is reversed and the result is added to the original number. If the result is not a palindromic number, this is repeated until it gives a palindromic number. For example, if we start from 67, we can obtain a palindromic number in 2 steps: 67 + 76 = 143, and 143 + 341 = 484.

      Given any positive integer N, you are supposed to find its paired palindromic number and the number of steps taken to find it.

    Input Specification:

      Each input file contains one test case. Each case consists of two positive numbers N and K, where N (≤) is the initial numer and K (≤) is the maximum number of steps. The numbers are separated by a space.

    Output Specification:

      For each test case, output two numbers, one in each line. The first number is the paired palindromic number of N, and the second number is the number of steps taken to find the palindromic number. If the palindromic number is not found after K steps, just output the number obtained at the Kth step and Kinstead.

    Sample Input 1:

    67 3
    

    Sample Output 1:

    484
    2
    

    Sample Input 2:

    69 3
    

    Sample Output 2:

    1353
    3

    题目解析
      本题给出两个数字n与k,n代表未转换数字,k代表最大转换步数,如果n不是回文数字屎就执行将n反转,n + 反转后的数字,若n还不是回文数字则继续执行上述操作,直到n为回文数字或执行次数超过最大转换步数为止。

      本题数据可能超过int范围,既然既要判断回文又要反转数字,那么索性之间用处理大数的方法——用字符串记录数字。

      之后模拟出加法操作与反转操作,判断执行后的数组是否为回文串即可。

    AC代码

     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 const int MAX = 1e3;
     4 struct Number{  //记录数字
     5     int num[MAX];   //存储数字的每一位(为了方便加法运算倒序存储)
     6     int len;    //存储数字位数
     7     Number(){   //构造函数
     8         memset(num, 0, sizeof(num));    //初始化num每一位都为0
     9         len = 0;    //位数为0
    10     }
    11 };
    12 Number toNumber(string temp){   //字符串转化为Number
    13     Number a;
    14     a.len = temp.size();
    15     for(int i = 0; i < a.len; i++)  //倒序存储
    16         a.num[i] = temp[a.len - i - 1] - '0';
    17     return a;
    18 }
    19 Number add(Number a, Number b){ //加法函数
    20     Number c;
    21     int carry = 0;  //进位
    22     for(int i = 0; i < a.len || i < b.len; i++){    //以较长的长度为界限(当然本题两个数长度相等,其实以任意一个为界都可以)
    23         int temp = a.num[i] + b.num[i] + carry; //两个位置相加后加上进位
    24         c.num[c.len++] = temp % 10; //记录新数字的对应位
    25         carry = temp / 10;  //计算新的进位
    26     }
    27     if(carry != 0)  //若最高位有进位
    28         c.num[c.len++] = carry;
    29     return c;
    30 }
    31 Number reversed(Number a){  //反转函数
    32     Number b;
    33     for(int i = a.len - 1; i >= 0; i--){
    34         b.num[b.len++] = a.num[i];
    35     }
    36     return b;
    37 
    38 }
    39 bool judgePalindromic(Number a){    //判断回文
    40     for(int i = 0; i < a.len / 2; i++){
    41         if(a.num[i] != a.num[a.len - i - 1])    //从两端像中间匹配,若失匹返回false
    42             return false;
    43     }
    44     return true;
    45 }
    46 int main()
    47 {
    48     string str;
    49     int k;
    50     cin >> str >> k;    //输入数字与最大转化次数
    51     Number n = toNumber(str);   //将数字转化为Number型
    52     int cnt = 0;    //cnt记录当前转化次数
    53     while(cnt < k && !judgePalindromic(n)){ //转化次数超限或成功转化为回文时结束循环
    54         Number temp = reversed(n);  //反转
    55         n = add(n, temp);   //相加
    56         cnt++;  //转化次数加1
    57     }
    58     for(int i = n.len - 1; i >= 0; i--) //输出转化后的数字
    59         printf("%d", n.num[i]);
    60     printf("
    ");
    61     printf("%d
    ", cnt);    //输出转化次数
    62     return 0;
    63 }
  • 相关阅读:
    sql server 纵横表的转换
    url参数的编码解码Demo
    SqlServer 列的增加和删除
    asp.net下ajax.ajaxMethod使用方法(转)
    js中document.all 的用法
    cookie跨域,跨目录访问及单点登录。
    错误记录:html隐藏域的值存字符串时出错
    .NET下用C#实现邮箱激活功能
    js与C#服务端 json数据交互
    sqlserver数据可空插入报错
  • 原文地址:https://www.cnblogs.com/suvvm/p/10311682.html
Copyright © 2011-2022 走看看