当前位置:   article > 正文

Have Fun with Numbers_超过unsigned long,输入中有数字不在结果中,但结果数字都在输入里

超过unsigned long,输入中有数字不在结果中,但结果数字都在输入里
Notice that the number 123456789 is a 9-digit number consisting exactly the numbers from 1 to 9, with no duplication. Double it we will obtain 246913578, which happens to be another 9-digit number consisting exactly the numbers from 1 to 9, only in a different permutation. Check to see the result if we double it again!
Now you are suppose to check if there are more numbers with this property. That is, double a given number with k digits, you are to tell if the resulting number consists of only a permutation of the digits in the original number.
Input Specification:
Each input contains one test case. Each case contains one positive integer with no more than 20 digits.
Output Specification:
For each test case, first print in a line "Yes" if doubling the input number gives a number that consists of only a permutation of the digits in the original number, or "No" if not. Then in the next line, print the doubled number.
Sample Input:
1234567899
Sample Output:
Yes

2469135798

可以说是第一次做这种全英文的题目,在题意的读取理解上还是有问题的。(以后还是要多记单词啊微笑)。

题目的大体意思是有一个位数不超过20位的数字,你先把他加倍一下,即*2;得到一个别的数。你对新得到的数字进行检查看看是否存在的数字以及该数字出现的次数与为加倍的相比相不相同,如果相同输出Yes 不同输出No,并且无论时yes或no都要在最后输出你加倍后得到的数。

思路:在这里位数最大为20,超出了long long int 的范围,所以我们要采用字符串输入。但要注意将字符串转化为int型的方法。因为字符串都是ASCII码的值,所以要这样做:

  1. for(i=0; l[i]!='\0'; i++)
  2. {
  3. if(l[i]!='\0')
  4. {
  5. a[i]=l[i]-'0';减去0的ascii码就是你想要得到的数字;
  6. b[i]=a[i]*2;
  7. }
  8. }

另外还需特别注意的就是进位问题,具体步骤看如下代码吧:(要注意输出yes的前提是位数要相同,如果b[0]大于9了说明加倍后的数比原来的多了一位就可以直接输出no了)AC代码如下:

  1. 测试点 提示 结果 耗时 内存
  2. 0 跟sample完全一样,超过long,但unsigned long可以;有2个重复数字 答案正确 3 ms 512KB
  3. 1 long可以,答案是No,位数不匹配 答案正确 2 ms 384KB
  4. 2 10个数字全出现,unsigned long可以,答案Yes 答案正确 2 ms 512KB
  5. 3 超过unsigned long,输入中有数字不在结果中,但结果数字都在输入里 答案正确 2 ms 508KB
  6. 4 最长串,10个数字全出现 答案正确 2 ms 512KB
  7. 5 最长串全是9 答案正确 3 ms 380KB
  8. 代码
  9. #include<bits/stdc++.h>
  10. #include<cstdio>
  11. #include<algorithm>
  12. using namespace std;
  13. int main()
  14. {
  15. char l[21];//因为最大数值超出long long int的范围,所以采用字符串输入;
  16. int a[21],b[22];//用来记录转换的值;
  17. int n=0,i,j;//标记数的长度;
  18. scanf("%s",l);
  19. for(i=0; l[i]!='\0'; i++)
  20. {
  21. if(l[i]!='\0')
  22. {
  23. a[i]=l[i]-'0';
  24. b[i]=a[i]*2;
  25. n++; //记录输入数据的位数;
  26. }
  27. }
  28. for(i=n-1; i>0; i--) //进位;
  29. {
  30. for(j=i; j>0; j--)
  31. {
  32. if(b[j]>9)
  33. {
  34. b[j]-=10;
  35. b[j-1]+=1;
  36. }
  37. }
  38. }
  39. //判别;
  40. int a1[10]= {0,0,0,0,0,0,0,0,0,0};
  41. int a2[10]= {0,0,0,0,0,0,0,0,0,0};
  42. if(b[0]>9)
  43. printf("No\n");
  44. else
  45. {
  46. for(i=1; i<10; i++)
  47. {
  48. for(j=0; j<10; j++)
  49. {
  50. if(a[j]==i)
  51. a1[i]++;
  52. if(b[j]==i)
  53. a2[i]++;
  54. }
  55. }
  56. for(i=1;i<10;i++)
  57. {
  58. if(a1[i]==a2[i]);
  59. else
  60. break;
  61. }
  62. if(i==10)
  63. printf("Yes\n");
  64. else
  65. printf("No\n");
  66. }
  67. for(i=0;i<n;i++)
  68. printf("%d",b[i]);
  69. }
up up up!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/342868
推荐阅读
  

闽ICP备14008679号