1024. Palindromic Number (25),palindromicnumber

來源:互聯網
上載者:User

1024. Palindromic Number (25),palindromicnumber

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;    for(i=0, j=a.size()-1; i<=j; i++, j--) {        if(a[i] != a[j])            return false;    }    return true;}void print(vector<int> input) {    int i;    for(i=input.size()-1; i>=0; i--) {        cout<<input[i];    }    cout<<endl;}int main() {    vector<int> input;    char s[11];    int k, i;    cin>>s>>k;    int len = strlen(s);    for(i=0; i<len; i++) {        input.push_back(s[i] - '0');    }    if(isPalindromic(input)) {        print(input);        cout<<"0"<<endl;    } else {        int len_temp = len;        for(i=1; i<=k; i++) {            int end = len_temp - 1;            int start = 0;            int j = 0;            int t = 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;                } else {                    t = 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;        }        print(input);        if(i>k)            cout<<k<<endl;        else            cout<<i<<endl;    }    return 0;}


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.