• zoj 2001 Adding Reversed Numbers


    Adding Reversed Numbers

    Time Limit: 2 Seconds      Memory Limit: 65536 KB

    The Antique Comedians of Malidinesia prefer comedies to tragedies. Unfortunately, most of the ancient plays are tragedies. Therefore the dramatic advisor of ACM has decided to transfigure some tragedies into comedies. Obviously, this work is very hard because the basic sense of the play must be kept intact, although all the things change to their opposites. For example the numbers: if any number appears in the tragedy, it must be converted to its reversed form before being accepted into the comedy play.

    Reversed number is a number written in arabic numerals but the order of digits is reversed. The first digit becomes last and vice versa. For example, if the main hero had 1245 strawberries in the tragedy, he has 5421 of them now. Note that all the leading zeros are omitted. That means if the number ends with a zero, the zero is lost by reversing (e.g. 1200 gives 21). Also note that the reversed number never has any trailing zeros.

    ACM needs to calculate with reversed numbers. Your task is to add two reversed numbers and output their reversed sum. Of course, the result is not unique because any particular number is a reversed form of several numbers (e.g. 21 could be 12, 120 or 1200 before reversing). Thus we must assume that no zeros were lost by reversing (e.g. assume that the original number was 12).


    Input

    The input consists of N cases. The first line of the input contains only positive integer N. Then follow the cases. Each case consists of exactly one line with two positive integers separated by space. These are the reversed numbers you are to add.


    Output

    For each case, print exactly one line containing only one integer - the reversed sum of two reversed numbers. Omit any leading zeros in the output.


    Sample Input

    3
    24 1
    4358 754
    305 794


    Sample Output

    34
    1998
    1

    方法一:直接模拟:

     1 #include <iostream>
     2 #include <cstdio>
     3 using namespace std;
     4 int reverse_num(int a){
     5     int t = a, s = 0;
     6     while(t){
     7         s = s * 10 + t % 10;
     8         t /= 10;
     9     }
    10     return s;
    11 }
    12 
    13 int main(){
    14     int t, a, b;
    15     cin >> t;
    16     while(t--){
    17         cin >> a >> b;
    18         int sum = reverse_num(a) + reverse_num(b);
    19         while(sum % 10 == 0){
    20             sum /= 10;
    21         }
    22         while(sum){
    23             cout << sum % 10;
    24             sum /= 10;
    25         }
    26         cout << endl;
    27     }
    28     //system("pause");
    29     return 0;
    30 }

    方法二:为了避免反转,可以将两个数的高位开始对齐相加,设置进位标志,不好判断所得结果长度的话,可以直接用一个容器装。(这种方法可以处理大整数,将两个数看成字符串)

     未能ac,来日再改

     1 #include <iostream>
     2 #include <string>
     3 #include <vector>
     4 using namespace std;
     5 int main(){
     6     int n, t, i, a, b;
     7     string s1, s2, temp;
     8     vector<int> v;
     9     cin >> n;
    10     while(n--){
    11         v.clear();
    12         cin >> s1 >> s2;
    13         int len1 = s1.length(), len2 = s2.length();
    14         //让s1的长度更长
    15         if(len1 < len2){
    16             temp = s1;
    17             s1 = s2;
    18             s2 = temp;
    19         }
    20         int flag = 0;
    21         
    22         for(i = 0; i < len1 && i < len2; i++){
    23             a = s1[i] - '0';
    24             b = s2[i] - '0';
    25             t = a + b + flag;
    26             flag = t / 10;
    27             v.push_back(t % 10);
    28         }
    29         while(i < len1){
    30             a = s1[i] - '0';
    31             t = a + flag;
    32             flag = t / 10;
    33             v.push_back(t % 10);
    34             i++;
    35         }
    36         if(flag == 1)
    37             v.push_back(flag);
    38         while(1){
    39                  vector<int>::iterator it = v.end() - 1;
    40                  if(*it == 0) v.erase(it);
    41                  else break;
    42         }
    43         int j = 0;
    44         while(v[j] == 0){
    45                    j++;
    46         }
    47         int len_v = v.size();
    48         for(; j < len_v; j++){
    49             cout << v[j];
    50         }
    51         cout << endl;  
    52     }
    53     return 0;
    54 }
  • 相关阅读:
    Collections与Arrays
    TreeMap
    HashMap
    单列集合的体系
    泛型的上下限
    09年最受关注的十大Visual Studio插件
    编码中的硬回车与软回车
    无法打开包括文件:'atlrx.h'的解决办法[原]
    【转】Notepad++,Eclipse和Visual Studio 2005常用快捷键对比
    【转】printf格式控制(你所不知道的printf妙用)
  • 原文地址:https://www.cnblogs.com/qinduanyinghua/p/6523244.html
Copyright © 2020-2023  润新知