首页 > 代码库 > Java 解决一些ACM中大数问题
Java 解决一些ACM中大数问题
大数中算术运算结果的首选标度
运算 | 结果的首选标度 |
---|---|
加 | max(addend.scale(), augend.scale()) |
减 | max(minuend.scale(), subtrahend.scale()) |
乘 | multiplier.scale() + multiplicand.scale() |
除 | dividend.scale() - divisor.scale() |
Problem D: Integer Inquiry
Time Limit: 1 Sec Memory Limit: 128 MBSubmit: 59 Solved: 18
[Submit][Status][Web Board]
Description
One of the first users of BIT‘s new supercomputer was Chip Diller. He extended his exploration of powers of 3 to go from 0 to 333 and he explored taking various sums of those numbers.
``This supercomputer is great,‘‘ remarked Chip. ``I only wish Timothy were here to see these results.‘‘ (Chip moved to a new apartment, once one became available on the third floor of the Lemon Sky apartments on Third Street.)
Input
The input will consist of at most 100 lines of text, each of which contains a single VeryLongInteger. Each VeryLongInteger will be 100 or fewer characters in length, and will only contain digits (no VeryLongInteger will be negative).
The final input line will contain a single zero on a line by itself.
Output
Your program should output the sum of the VeryLongIntegers given in the input.
Sample Input
1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678900
Sample Output
370370367037037036703703703670
HINT
大数相加,遇到输入0时输出结果,直到读到EOF(文件结尾)为止
代码:
1 import java.math.BigInteger; 2 import java.util.Scanner; 3 4 public class Main{ 5 public static void main(String[] args) { 6 Scanner s=new Scanner(System.in); 7 BigInteger a,b=new BigInteger("0"); 8 while(s.hasNext()){ 9 a=s.nextBigInteger(); //接收输入10 if(!(a.toString()==("0"))) //判定是否等于011 b=b.add(a); 12 if(a.toString()==("0")){13 System.out.println(b);14 b=new BigInteger("0");15 }16 } 17 }18 }
Problem E: Product
Time Limit: 1 Sec Memory Limit: 128 MBSubmit: 38 Solved: 25
[Submit][Status][Web Board]
Description
The problem is to multiply two integers X, Y. (0<=X,Y<10250)
Input
The input will consist of a set of pairs of lines. Each line in pair contains one multiplyer.
Output
For each input pair of lines the output line should consist one integer the product.
Sample Input
12122222222222222222222222222
Sample Output
144444444444444444444444444
HINT
两个大数相乘,直到读到EOF(文件结尾)为止
代码:
1 import java.math.BigInteger; 2 import java.util.Scanner; 3 4 public class Main { 5 public static void main(String[] args) { 6 Scanner s=new Scanner(System.in); 7 while(s.hasNext()){ 8 BigInteger a=s.nextBigInteger(); 9 BigInteger b=s.nextBigInteger();10 BigInteger c=a.multiply(b);11 System.out.println(c);12 }13 }14 }
Problem F: Exponentiation
Time Limit: 1 Sec Memory Limit: 128 MBSubmit: 9 Solved: 6
[Submit][Status][Web Board]
Description
Problems involving the computation of exact values of very large magnitude and precision are common. For example, the computation of the national debt is a taxing experience for many computer systems.
This problem requires that you write a program to compute the exact value of Rn where R is a real number ( 0.0 < R < 99.999) and n is an integer such that $0 < n \le 25$.
Input
The input will consist of a set of pairs of values for R and n. The R value will occupy columns 1 through 6, and the n value will be in columns 8 and 9.
Output
The output will consist of one line for each line of input giving the exact value of Rn. Leading zeros and insignificant trailing zeros should be suppressed in the output.
Sample Input
95.123 120.4321 205.1234 156.7592 998.999 101.0100 12
Sample Output
548815620517731830194541.899025343415715973535967221869852721.0000000514855464107695612199451127676715483848176020072635120383542976301346240143992025569.92857370126648804114665499331870370751166629547672049395302429448126.76412102161816443020690903717327667290429072743629540498.1075960194566517745610440100011.126825030131969720661201
HINT
大数a的n次幂,直到读到EOF(文件结尾)为止,其中忽略小数后面的0
代码:
1 import java.math.BigDecimal; 2 import java.util.Scanner; 3 4 public class Problem_F_Exponentiation { 5 6 public static void main(String[] args) { 7 Scanner s=new Scanner(System.in); 8 BigDecimal a; 9 int b;10 String c;11 while(s.hasNext()){12 a=s.nextBigDecimal();13 b=s.nextInt();;14 a=a.pow(b).stripTrailingZeros(); //stripTrailingZeros将所得结果小数部分尾部的0去除15 c=a.toPlainString(); //toPlainString将所得大数结果不以科学计数法显示,并转化为字符串16 if(c.charAt(0)==‘0‘) //用charAt()判定首位字符是否为017 c=c.substring(1);18 System.out.println(c);19 }20 }21 }
Problem G: If We Were a Child Again
Time Limit: 1 Sec Memory Limit: 128 MBSubmit: 7 Solved: 6
[Submit][Status][Web Board]
Description
The Problem
The first project for the poor student was to make a calculator that can just perform the basic arithmetic operations.
But like many other university students he doesn’t like to do any project by himself. He just wants to collect programs from here and there. As you are a friend of him, he asks you to write the program. But, you are also intelligent enough to tackle this kind of people. You agreed to write only the (integer) division and mod (% in C/C++) operations for him.
Input
Input is a sequence of lines. Each line will contain an input number. One or more spaces. A sign (division or mod). Again spaces. And another input number. Both the input numbers are non-negative integer. The first one may be arbitrarily long. The second number n will be in the range (0 < n < 231).
Output
A line for each input, each containing an integer. See the sample input and output. Output should not contain any extra space.
Sample Input
110 / 10099 % 102147483647 / 21474836472147483646 % 2147483647
Sample Output
1912147483646
HINT
大数求余与整除运算
代码:
1 import java.math.BigInteger; 2 import java.util.Scanner; 3 public class Main { 4 public static void main(String[] args) { 5 Scanner s=new Scanner(System.in); 6 BigInteger a,b,t=new BigInteger("1"); 7 String c; 8 while(s.hasNext()){ 9 a=s.nextBigInteger();10 c=s.next();11 b=s.nextBigInteger();12 if(c.equals("%")) t=a.mod(b); 13 if(c.equals("/")) t=a.divide(b);14 System.out.println(t);15 }16 }17 }
Java 解决一些ACM中大数问题