zoukankan      html  css  js  c++  java
  • PAT甲级——A1023 Have Fun with Numbers

    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

    大数运算, 用字符实现加减

     1 #include <iostream>
     2 #include <algorithm>
     3 #include <string>
     4 using namespace std;
     5 //会溢出,不能使用简单的加减
     6 int main()
     7 {
     8     string a, b = "", res;
     9     cin >> a;
    10     int k = 0;
    11     for (int i = a.length() - 1; i >= 0; --i)
    12     {
    13         k = k + (a[i] - '0') + (a[i] - '0');
    14         b += k % 10 + '0';
    15         k /= 10;
    16     }
    17     if (k > 0)
    18         b += k + '0';
    19     res.assign(b.rbegin(), b.rend());    
    20     sort(a.begin(), a.end());
    21     sort(b.begin(), b.end());
    22     if (a == b)
    23         cout << "Yes" << endl;
    24     else
    25         cout << "No" << endl;
    26     for (auto c : res)
    27         cout << c;
    28     cout << endl;
    29     return 0;
    30 }


  • 相关阅读:
    javascript 操作 excel 全攻略
    ASP.NET中上传并读取Excel文件数据
    创意无限!一组网页边栏过渡动画【附源码下载】
    jQuery一些常用特效方法使用实例
    jQuery的deferred对象详解
    Jquery 数组操作
    10 款精美的 CSS3 全新特效
    20 个用于处理页面滚动效果的 jQuery 插件
    Linux-exec命令试验驱动(12)
    动态规划-数正方形(详解)
  • 原文地址:https://www.cnblogs.com/zzw1024/p/11204413.html
Copyright © 2011-2022 走看看