PAT甲级1024

来源:互联网 发布:淘宝网怎么添加客服 编辑:程序博客网 时间:2024/05/20 16:42

1024. Palindromic Number (25)

时间限制
400 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

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:
4842
Sample Input 2:
69 3
Sample Output 2:
13533

#include<cstdio>#include<algorithm>#include<cstring>#include<vector>#include<queue>using namespace std;bool checkPalindromic(deque<char>dq){int i = 0, j = dq.size() - 1;while (i <= j){if (dq[i] != dq[j])return false;i++; j--;}return true;}int main(){char N[20];int K;scanf("%s %d", N, &K);int len = strlen(N);deque<char> dq,dq1,dq2;for (int i = 0; i < len; i++){dq.push_back(N[i]);}dq1 = dq2 = dq;reverse(dq2.begin(), dq2.end());int i = 1;int t, carry = 0;if (checkPalindromic(dq)){for (int i = 0; i < dq.size(); i++){printf("%c", dq[dq.size() - 1 - i]);}printf("\n%d", 0);return 0;}//若本身就是回文数,则不需进行计算了while (i <=K){for (int j = 0; j < dq.size(); j++){t = dq1[j] - '0' + dq2[j] - '0' + carry;carry = 0;if (t >= 10){dq[j] = '0' + t - 10;carry = 1;}elsedq[j] = '0' + t;}if (carry){dq.push_back('1');carry = 0;}if (checkPalindromic(dq)){break;}else{dq1 = dq2 = dq;reverse(dq2.begin(), dq2.end());i++;}}if (i > K){for (int i = 0; i < dq.size(); i++){printf("%c", dq[dq.size() - 1 - i]);}printf("\n%d",K);}else{for (int i = 0; i < dq.size(); i++){printf("%c", dq[dq.size() - 1 - i]);}printf("\n%d", i);}return 0;}

0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 初一数学没救了怎么办 五年级英语不好怎么办 三年级孩子学习差怎么办 孩子三年级学习成绩差怎么办 三年级字写不好怎么办 7小孩表达能力差怎么办 孩子考了低分怎么办 初一考300分怎么办 小学三年级成绩不好怎么办 五年级考几分怎么办 思想晚熟的人怎么办 孩子学不好数学怎么办 做作业速度慢怎么办 孩子碎头发太多怎么办 孩子碎发太多怎么办 孩子的作业太多怎么办 爸爸是乙肝孩子怎么办 孩子出生没有奶怎么办 顺产后没有奶水怎么办 还在经常逃课怎么办 老板不重视自己怎么办 孩子不听话爱撒谎怎么办 老师针对我孩子怎么办 小孩动不动就哭怎么办 孩子太拧应该怎么办 孩子贪玩不爱学习怎么办 高二了还不学怎么办 小朋友不喜欢上幼儿园怎么办 一岁半的宝宝不听话怎么办 老公是个窝囊废怎么办 幼儿园老师不喜欢家长怎么办 老师讨厌学生了怎么办 一个舍友很讨厌怎么办 家长对老师不满怎么办 教师被家长辱骂怎么办 如果老师喜欢自己怎么办 孩子不思进取逃避学习怎么办 老师拿孩子泄愤怎么办 老师对小孩不好怎么办 孩子被老师骂怎么办 孩子幼儿园被打怎么办