Competitive/Collaborative Programming Class

ICPC Computer Programming Contest Prep

Problem Solving in Computer Science

Fall 2014 -- CSC 2700 Section 01

[Isaac's Home Page ]  [Mailing List ]  [Class Page ]  [Normal ]  

week02/c/numer_619.java

/* Class:   CSC 2700 Programming Competitions
 * Prof:    Isaac Traxler
 * Name:    Matthew Gavin
 * Problem: 619 - Numerically Speaking
 *
 * Note: Even though this code was AC, it's functionally wrong because 'a' starts at 0x61, not 0x60
 *        which is a problem when going from a number to the word.
 */ 

import java.util.*;
import java.math.*;
import java.text.*;

public class numer_619
{
    private static DecimalFormat com = new DecimalFormat("#,###");
    public static void main(String[] args)
    {
        BigInteger num, num2;
        BigInteger base = new BigInteger("26");
        Scanner input = new Scanner(System.in);
        String line = new String();
        
        line = input.nextLine();
        while (line.compareTo("*") != 0)
        {
            if (Character.isDigit(line.charAt(0)))
            {
                //get the string answer
                StringBuilder ans = new StringBuilder();
                num = new BigInteger(line);
                num2 = new BigInteger(line);
                while (num.compareTo(BigInteger.ZERO) != 0)
                {
                    ans.insert(0, (char)((num.mod(base).intValue()+0x60)));
                    num = num.divide(base);
                }
                for (int i = ans.length()+1; i < 23; ++i)
                    ans.append(" ");
                System.out.print(ans.toString());
                System.out.println(com.format(num2).toString());
            }
            else
            {
                //get the number value
                num = new BigInteger("0");
                StringBuilder ans = new StringBuilder(line);
                for (int i = line.length()-1, exp = 0; i >= 0; --i, ++exp)
                {
                    BigInteger h = new BigInteger(Integer.toString(((int)(line.charAt(i))-0x60)));
                    num = num.add(h.multiply(base.pow(exp)));
                }
                for (int i = ans.length()+1; i < 23; ++i)
                    ans.append(" ");
                System.out.print(ans.toString());
                System.out.println(com.format(num).toString());
            }
            
            line = input.nextLine();
        }
    }
}

The statements and opinions included in these pages are those of only. Any statements and opinions included in these pages are not those of Louisiana State University or the LSU Board of Supervisors.
© 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014