【PAT】1024. Palindromic Number (25)

来源:互联网 发布:js中的原型对象 编辑:程序博客网 时间:2024/05/07 18:39

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<iostream>#include<vector>#include<string.h>using namespace std;bool isPalindromic(vector<int> a){int i,j;bool flag = true;for(i=0,j=a.size()-1; i<=j; i++,j--){if(a[i] != a[j]){flag = false;break;}}return flag;}void show(vector<int> input){int i;for(i=input.size()-1; i>=0; i--){cout<<input[i];}cout<<endl;}int main(){vector<int> input;int k;char s[11];scanf("%s %d",s,&k);int len = strlen(s);int i;for(i=0; i<len; i++)input.push_back(s[i] - '0');if(isPalindromic(input)){show(input);  //输出cout<<"0"<<endl;}else{int len_temp = len;for(i=1; i<=k; i++){int t = 0;int end = len_temp - 1;intstart = 0;int j = 0;vector<int> vec_temp;for(; start<len_temp && end>=0; start++,end--,j++){vec_temp.push_back(t + input[start] + input[end]);if(vec_temp[j] >= 10){vec_temp[j] -= 10;t = 1;}elset = 0;}if(t > 0)vec_temp.push_back(1);len_temp = vec_temp.size();input.assign(vec_temp.begin(),vec_temp.end());if(isPalindromic(input))break;}show(input);if(i>k) cout<<k<<endl;elsecout<<i<<endl;}return 0;}

解法二:

#include <iostream>#include <vector>#include <string>#include <algorithm>using namespace std;int main(int argc, char** argv) {int N,K;string str;cin>>str>>K;int i;vector<int> origin;for(i=str.size()-1; i>=0; i--){origin.push_back(str[i]-'0');} int step;for( step = 0; step<K; step++){vector<int> change(origin);reverse(change.begin(), change.end());bool isSame = true;for(i=0; i<origin.size(); i++){if(origin[i] != change[i]){isSame = false;}}if(isSame){break;}int last = 0;for(i=0; i<origin.size(); i++){int tmp = origin[i] + change[i] + last;origin[i] = tmp%10;last = tmp/10;}if(last != 0){origin.push_back(last);}}reverse(origin.begin(), origin.end());for(i=0; i<origin.size(); i++){printf("%d",origin[i]);}printf("\n%d\n",step); return 0;}


原创粉丝点击