国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

1024. Palindromic Number (25)

2019-11-09 20:07:07
字體:
來源:轉載
供稿:網友

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: 484 2 Sample Input 2: 69 3 Sample Output 2: 1353 3

#include<cstdio>#include<cstring>struct bign{ int d[100]; int len; bign(){ memset(d,0,sizeof(d)); len=0; }}; bign change(char a[]){ bign c; c.len=strlen(a); for(int i=0;i<c.len;i++){ c.d[i]=a[c.len-1-i]-'0'; } return c; } bign add(bign a,bign b){ bign c; int carry=0,i; for(i=0;i<a.len||i<b.len;i++){ int temp=a.d[i]+b.d[i]+carry; c.d[i]=temp%10; carry=temp/10; } if(carry){ c.d[i++]=carry; } c.len=i; return c; } bign reverse(bign a){ for(int i=0;i<a.len/2;i++){ int t=a.d[i]; a.d[i]=a.d[a.len-1-i]; a.d[a.len-1-i]=t; } return a; } bool isPalin(bign b){ for(int i=0;i<b.len/2;i++){ if(b.d[i]!=b.d[b.len-1-i]){ return false; } } return true; } void PRint(bign a){ for(int i=a.len-1;i>=0;i--){ printf("%d",a.d[i]); } printf("/n"); }int main(){ char str[20]; int k; scanf("%s %d",str,&k); bign a=change(str); int step=0; while(step<k&&isPalin(a)==false){ a=add(a,reverse(a)); step++; } print(a); printf("%d/n",step); return 0; }
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 乌兰浩特市| 广安市| 九江市| 南华县| 长子县| 武穴市| 民和| 绥棱县| 美姑县| 屏东市| 维西| 安岳县| 高青县| 库伦旗| 武山县| 蒙自县| 怀集县| 缙云县| 聂荣县| 定远县| 千阳县| 桐城市| 许昌县| 马关县| 泸西县| 文山县| 陵水| 乌拉特中旗| 长沙县| 清徐县| 昌宁县| 涿州市| 诸暨市| 万年县| 新乡市| 丹巴县| 四子王旗| 涿州市| 安陆市| 郎溪县| 大理市|