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

首頁 > 學院 > 開發(fā)設計 > 正文

1024. Palindromic Number (25)

2019-11-10 18:05:25
字體:
來源:轉載
供稿:網友

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; }
上一篇:Ruby 基礎語法

下一篇:洛谷

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 滦平县| 菏泽市| 壤塘县| 武山县| 昌宁县| 根河市| 沅陵县| 广水市| 宁晋县| 大关县| 广丰县| 甘洛县| 炉霍县| 肇州县| 甘德县| 壤塘县| 洛扎县| 景东| 原阳县| 曲阳县| 汾阳市| 筠连县| 香河县| 古交市| 灵璧县| 来宾市| 韶山市| 金寨县| 景谷| 松江区| 乌兰浩特市| 五家渠市| 连州市| 乾安县| 抚宁县| 鸡西市| 榆林市| 措勤县| 将乐县| 酉阳| 永胜县|