[ACM] ZOJ Martian Addition)
Martian Addition Time Limit: 2 Seconds Memory Limit: 65536 KB In the 22nd Century, scientists have discovered intelligent residents live on the Mars. martians are very fond of mathematics. every year, they wocould hold an Arithmetic Contest on Mars (ACM ). the task of the contest is to calculate the sum of two 100-digit numbers, and the winner is the one who uses least time. this year they also invite people on Earth to join the contest.
As the only delegate of Earth, you're sent to Mars to demonstrate the power of mankind. fortunately you have taken your laptop computer with you which can help you do the job quickly. now the remaining problem is only to write a short program to calculate the sum of 2 given numbers. however, before you begin to program, you remember that the Martians use a 20-based number system as they usually have 20 fingers.
Input:
You're given several pairs of Martian numbers, each number on a line.
Martian number consists of digits from 0 to 9, and lower case letters from a to j (lower case letters starting from a to present 10, 11,..., 19 ).
The length of the given number is never greater than 100.
Output:
For each pair of numbers, write the sum of the 2 numbers in a single line.
Sample Input:
1234567890abcdefghij99999jjjjj9999900001
Sample Output:
bdfi02467jiiiij00000
Source: Zhejiang University Local Contest 2002, Preliminary
Solution:
Calculate the sum of two 20-digit numbers and use an array to simulate addition.
Code:
# Include
# Include
# Include
# Include
# Include
Using namespace std; map
Change; char num [105]; int add1 [105]; int add2 [105]; int ans [105]; int jin [105]; void prepare () {change [0] = '0'; change [1] = '1'; change [2] = '2'; change [3] = '3 '; change [4] = '4'; change [5] = '5'; change [6] = '6'; change [7] = '7 '; change [8] = '8'; change [9] = '9'; change [10] = 'a'; change [11] = 'B '; change [12] = 'C'; change [13] = 'D'; change [14] = 'E'; change [15] = 'F '; change [16] = 'G'; change [17] = 'H'; change [18] = 'I'; change [19] = 'J ';} int main () {prepare () ; While (cin> num) {memset (add1, 0, sizeof (add1); memset (add2, 0, sizeof (add2); memset (jin, 0, sizeof (jin); int len1 = strlen (num); int t = 0; for (int I = len1-1; I> = 0; -- I) {if (! (Num [I]> = '0' & num [I] <= '9') add1 [t ++] = num [I]-87; elseadd1 [t ++] = num [I]-'0';} cin> num; int len2 = strlen (num); t = 0; for (int I = len2-1; I> = 0; -- I) {if (! (Num [I]> = '0' & num [I] <= '9') add2 [t ++] = num [I]-87; elseadd2 [t ++] = num [I]-'0';} // The input is processed. // for (int I = 0; I
= 20) {ans [I] = temp-20; jin [I + 1] = 1;} else ans [I] = temp;} if (ans [len]) cout <
= 0; I --) cout <