• PAT 1024 Palindromic Number(高精度加法)


    1024 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 (≤1010) is the initial numer and K (≤100) 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 K instead.

    Sample Input 1:

    67 3
    

    Sample Output 1:

    1. 484
    2. 2

    Sample Input 2:

    69 3
    

    Sample Output 2:

    1. 1353
    2. 3

    总结:这题还是比较简单的,没太大的难度,直接模拟过程就可以,两个数相加使用高精度加法计算,翻转使用 algorithm 头文件的 reverse 函数即可,一开始写的时候直接用的 int 相加,这就导致了运行时出错,是因为爆 int 了,加入 n 是一个 10^9 的数,k=100,那么会超出 int 的表示范围

    代码:

    1. #include
    2. #include
    3. #include
    4. using namespace std;
    5. vector<int> add(vector<int> &a,vector<int> &b){
    6. vector<int> c;
    7. int t=0;
    8. for(int i=0;isize();i++){
    9. t+=a[i]+b[i];
    10. c.push_back(t%10);
    11. if(t>=10) t=1;
    12. else t=0;
    13. }
    14. if(t) c.push_back(1);
    15. return c;
    16. }
    17. int main(){
    18. int k,cot=0;
    19. string n,t;
    20. cin >> n >> k;
    21. while(cot
    22. string s;
    23. t=n;
    24. reverse(t.begin(),t.end());
    25. if(t==n) break;//比较是否是回文数字
    26. vector<int> a,b;//将两个数的每个数字都用vector存储起来进行加法运算
    27. for(int i=n.size()-1;i>=0;i--) a.push_back(n[i]-'0');
    28. for(int i=t.size()-1;i>=0;i--) b.push_back(t[i]-'0');
    29. auto c=add(a,b);
    30. for(int i=c.size()-1;i>=0;i--) s+=(c[i]+'0');
    31. n=s;
    32. cot++;
    33. }
    34. cout << n << endl << cot << endl;
    35. return 0;
    36. }

    依照惯例,还是看看大佬的代码!

    还是依旧的那么简短、易懂!

    学习:直接使用 string 做大运算!

    1. #include
    2. #include
    3. using namespace std;
    4. string s;
    5. void add(string t){
    6. int c=0;
    7. //低位存高位的值,如果没有进位的话,其实算出来的结果都是对称的,但是有了进位可能不对称
    8. //有进位就会把进位往高位偏移,加上最后一个进位,然后反转就是正常的顺序了
    9. for(int i=0;isize();i++){
    10. s[i]=s[i]+t[i]+c-'0';
    11. c=0;
    12. if(s[i]>'9'){
    13. s[i]-=10;
    14. c=1;
    15. }
    16. }
    17. if(c) s+='1';
    18. reverse(s.begin(),s.end());
    19. }
    20. int main(){
    21. int k,cot=0;
    22. cin >> s >> k;
    23. while(cot
    24. string t=s;
    25. reverse(t.begin(),t.end());
    26. if(s==t) break;
    27. add(t);
    28. cot++;
    29. }
    30. cout << s << endl << cot << endl;
    31. return 0;
    32. }

    好好学习,天天向上!

    我要考研

    2022.11.2

    1. #include
    2. #include
    3. #include
    4. using namespace std;
    5. vector<int> add(vector<int> &a,vector<int> &b){
    6. vector<int> c;
    7. int t=0;
    8. for(int i=0;isize();i++){
    9. t+=a[i]+b[i];
    10. c.push_back(t%10);
    11. t/=10;
    12. }
    13. if(t) c.push_back(1);
    14. return c;
    15. }
    16. bool judge(vector<int> &a){
    17. for(int i=0;isize()/2;i++)
    18. if(a[i]!=a[a.size()-i-1]) return false;
    19. return true;
    20. }
    21. int main(){
    22. string s;
    23. int k,cot=0;
    24. cin >> s >> k;
    25. vector<int> a;
    26. for(int i=s.size()-1;i>=0;i--) a.push_back(s[i]-'0');
    27. while(cot
    28. if(judge(a)){
    29. for(int i=a.size()-1;i>=0;i--) printf("%d",a[i]);
    30. printf("\n%d\n",cot);
    31. return 0;
    32. }
    33. vector<int> b(a);
    34. for(int i=0;isize();i++) b[i]=a[a.size()-1-i];
    35. auto c=add(a,b);
    36. a=c;
    37. cot++;
    38. }
    39. for(int i=a.size()-1;i>=0;i--) printf("%d",a[i]);
    40. printf("\n%d\n",cot);
    41. return 0;
    42. }

  • 相关阅读:
    Python 实现行为驱动开发 (BDD) 自动化测试详解
    stable diffusion实践操作-LyCORIS
    字节测开耗时三碗蛋炒饭写下的web自动化测试全流程
    8月算法训练------第十六天(字符串)解题报告
    神经网络控制系统的应用,神经网络的输入输出
    Web前端---表格和表单
    禁用和开启笔记本电脑的键盘功能,最快的方式
    微信小程序
    winform窗体、控件的简单封装,重做标题栏
    4.cuBLAS开发指南中文版--CUDA 数据类型引用
  • 原文地址:https://blog.csdn.net/weixin_50679551/article/details/126837629