码迷,mamicode.com
首页 > 其他好文 > 详细

zoj 2001 Adding Reversed Numbers

时间:2017-03-08 22:45:08      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:using   cas   igp   nes   any   and   system   ace   number   

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 }

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

 

zoj 2001 Adding Reversed Numbers

标签:using   cas   igp   nes   any   and   system   ace   number   

原文地址:http://www.cnblogs.com/qinduanyinghua/p/6523244.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!