国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 邵武市| 额尔古纳市| 浑源县| 松原市| 池州市| 砚山县| 高安市| 麻江县| 惠安县| 积石山| 灌云县| 宁波市| 周宁县| 丹寨县| 施秉县| 全南县| 尚义县| 江西省| 高邑县| 镇康县| 中阳县| 同德县| 炉霍县| 江安县| 通山县| 灵山县| 县级市| 福泉市| 松潘县| 亳州市| 沅陵县| 利川市| 东港市| 广南县| 濉溪县| 肃北| 济南市| 图们市| 宝坻区| 庆元县| 金湖县|