JAVA在ACM/各类在线笔试题中的使用

一、Java之ACM注意点

1. 类名称必须采用public class Main方式命名

2. 在有些OJ系统上,即便是输出的末尾多了一个“ ”,程序可能会输出错误,所以在我看来好多OJ系统做的是非常之垃圾

3. 有些OJ上的题目会直接将OI上的题目拷贝过来,所以即便是题目中有输入和输出文件,可能也不需要,因为在OJ系统中一般是采用标准输入输出,不需要文件

4. 在有多行数据输入的情况下,一般这样处理,

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. static Scanner in = new Scanner(System.in);  
  2. while(in.hasNextInt())  
  3. 或者是  
  4. while(in.hasNext())  

5. 有关System.nanoTime() 函数的使用,该函数用来 返回最准确的可用系统计时器的当前值,以毫微秒为单位。

 

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. long startTime = System.nanoTime();  
  2. // ... the code being measured ...  
  3. long estimatedTime = System.nanoTime() - startTime;  

二、Java之输入输出处理

由于ACM竞赛题目的输入数据和输出数据一般有多组(不定),并且格式多种多样,所以,如何处理题目的输入输出是对大家的一项最基本的要求。这也是困扰初学者的一大问题。

1. 输入:

格式1Scanner sc = new Scanner (new BufferedInputStream(System.in));

格式2Scanner sc = new Scanner (System.in);

在读入数据量大的情况下,格式1的速度会快些。

读一个整数: int n = sc.nextInt()相当于 scanf("%d", &n); 或 cin >> n; 

读一个字符串:String s = sc.next(); 相当于 scanf("%s", s); 或 cin >> s; 

读一个浮点数:double t = sc.nextDouble(); 相当于 scanf("%lf", &t); 或 cin >> t; 

读一整行: String s = sc.nextLine(); 相当于 gets(s); 或 cin.getline(...); 

判断是否有下一个输入可以用sc.hasNext()sc.hasNextInt()sc.hasNextDouble()sc.hasNextLine()

1:读入整数

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. Input  输入数据有多组,每组占一行,由一个整数组成。   
  2. Sample Input   
  3. 56  
  4. 67  
  5. 100  
  6. 123   
  7.    
  8. import java.util.Scanner;  
  9. public class Main {  
  10. public static void main(String[] args) {  
  11. Scanner sc =new Scanner(System.in);  
  12. while(sc.hasNext()){  //判断是否结束  
  13. int score = sc.nextInt();//读入整数  
  14. 。。。。  
  15. }  
  16. }  
  17. }  
  18.    


2:读入实数

 

输入数据有多组,每组占2行,第一行为一个整数N,指示第二行包含N个实数。

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. Sample Input  
  2. 4   
  3. 56.9  67.7  90.5  12.8   
  4. 5   
  5. 56.9  67.7  90.5  12.8   
  6.    
  7. import java.util.Scanner;  
  8. public class Main {  
  9. public static void main(String[] args) {  
  10. Scanner sc =new Scanner(System.in);  
  11. while(sc.hasNext()){  
  12. int n = sc.nextInt();  
  13. for(int i=0;i<n;i++){  
  14. double a = sc.nextDouble();  
  15. 。。。。。。  
  16. }  
  17. }  
  18. }  
  19. }  
  20.    


3:读入字符串【杭电2017 字符串统计

输入数据有多行,第一行是一个整数n,表示测试实例的个数,后面跟着n行,每行包括一个由字母和数字组成的字符串。

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. Sample Input    
  2. 2  
  3. asdfasdf123123asdfasdf  
  4. asdf111111111asdfasdfasdf  
  5.    
  6. import java.util.Scanner;  
  7. public class Main {  
  8. public static void main(String[] args) {  
  9. Scanner sc = new Scanner(System.in);  
  10. int n = sc.nextInt();  
  11. for(int i=0;i<n;i++){  
  12. String str = sc.next();  
  13. ......  
  14. }  
  15. }  
  16. }  
  17. import java.util.Scanner;  
  18. public class Main {  
  19. public static void main(String[] args) {  
  20. Scanner sc = new Scanner(System.in);  
  21. int n = Integer.parseInt(sc.nextLine());  
  22. for(int i=0;i<n;i++){  
  23. String str = sc.nextLine();  
  24. ......  
  25. }  
  26. }  
  27. }  
  28.    


3:读入字符串【杭电2005 第几天?

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. 给定一个日期,输出这个日期是该年的第几天。   
  2. Input  输入数据有多组,每组占一行,数据格式为YYYY/MM/DD组成  
  3. 1985/1/20  
  4. 2006/3/12  
  5. import java.util.Scanner;  
  6. public class Main {  
  7. public static void main(String[] args) {  
  8. Scanner sc = new Scanner(System.in);  
  9. int[] dd = {0,31,28,31,30,31,30,31,31,30,31,30,31};  
  10. while(sc.hasNext()){  
  11. int days = 0;  
  12. String str = sc.nextLine();  
  13. String[] date = str.split("/");  
  14. int y = Integer.parseInt(date[0]);  
  15. int m = Integer.parseInt(date[1]);  
  16. int d = Integer.parseInt(date[2]);  
  17. if((y%400 == 0 || (y%4 == 0 && y%100 !=0)) && m>2) days ++;  
  18. days += d;  
  19. for(int i=0;i<m;i++){  
  20. days += dd[i];  
  21. }  
  22. System.out.println(days);  
  23. }  
  24. }  
  25. }  


 

2. 输出  

函数:

System.out.print(); 

System.out.println(); 

System.out.format();

System.out.printf();  

 

杭电1170Balloon Comes!

Give you an operator (+,-,*, / --denoting addition, subtraction, multiplication, division respectively) and two positive integers, your task is to output the result. 

Input

Input contains multiple test cases. The first line of the input is a single integer T (0<T<1000) which is the number of test cases. T test cases follow. Each test case contains a char C (+,-,*, /) and two integers A and B(0<A,B<10000).Of course, we all know that A and B are operands and C is an operator. 

Output

For each case, print the operation result. The result should be rounded to 2 decimal places If and only if it is not an integer.

Sample Input

4

+ 1 2

- 1 2

* 1 2

/ 1 2

Sample Output

3

-1

2

0.50

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. import java.util.Scanner;  
  2. public class Main {  
  3. public static void main(String[] args) {  
  4. Scanner sc =new Scanner(System.in);  
  5. int n = sc.nextInt();  
  6. for(int i=0;i<n;i++){  
  7. String op = sc.next();  
  8. int a = sc.nextInt();  
  9. int b = sc.nextInt();  
  10. if(op.charAt(0)=='+'){  
  11. System.out.println(a+b);  
  12. }else if(op.charAt(0)=='-'){  
  13. System.out.println(a-b);  
  14. }else if(op.charAt(0)=='*'){  
  15. System.out.println(a*b);  
  16. }else if(op.charAt(0)=='/'){  
  17. if(a % b == 0) System.out.println(a / b);  
  18. else System.out.format("%.2f", (a / (1.0*b))). Println();  
  19. }  
  20. }  
  21. }  
  22. }  


3. 规格化的输出:
函数:
// 这里0指一位数字,#指除0以外的数字(如果是0,则不显示),四舍五入.
    DecimalFormat fd = new DecimalFormat("#.00#");
    DecimalFormat gd = new DecimalFormat("0.000");
    System.out.println("x =" + fd.format(x));
    System.out.println("x =" + gd.format(x));

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. public static void main(String[] args) {  
  2.     NumberFormat   formatter   =   new   DecimalFormat( "000000");   
  3.         String  s  =   formatter.format(-1234.567);     //   -001235   
  4.         System.out.println(s);  
  5.         formatter   =   new   DecimalFormat( "##");   
  6.         s   =   formatter.format(-1234.567);             //   -1235   
  7.         System.out.println(s);  
  8.         s   =   formatter.format(0);                      //   0   
  9.         System.out.println(s);  
  10.         formatter   =   new   DecimalFormat( "##00");   
  11.         s   =   formatter.format(0);                     //   00   
  12.         System.out.println(s);  
  13.    
  14.         formatter   =   new   DecimalFormat( ".00");   
  15.         s   =   formatter.format(-.567);               //   -.57   
  16.         System.out.println(s);  
  17.         formatter   =   new   DecimalFormat( "0.00");   
  18.         s   =   formatter.format(-.567);              //   -0.57   
  19.         System.out.println(s);  
  20.         formatter   =   new   DecimalFormat( "#.#");   
  21.         s   =   formatter.format(-1234.567);         //   -1234.6   
  22.         System.out.println(s);  
  23.         formatter   =   new   DecimalFormat( "#.######");   
  24.         s   =   formatter.format(-1234.567);        //   -1234.567   
  25.         System.out.println(s);  
  26.         formatter   =   new   DecimalFormat( ".######");   
  27.         s   =   formatter.format(-1234.567);       //   -1234.567   
  28.         System.out.println(s);  
  29.         formatter   =   new   DecimalFormat( "#.000000");   
  30.         s   =   formatter.format(-1234.567);      //   -1234.567000   
  31.         System.out.println(s);  
  32.           
  33.         formatter   =   new   DecimalFormat( "#,###,###");   
  34.         s   =   formatter.format(-1234.567);      //   -1,235   
  35.         System.out.println(s);  
  36.         s   =   formatter.format(-1234567.890);  //   -1,234,568   
  37.         System.out.println(s);  
  38.    
  39.         //   The   ;   symbol   is   used   to   specify   an   alternate   pattern   for   negative   values   
  40.         formatter   =   new   DecimalFormat( "#;(#) ");   
  41.         s   =   formatter.format(-1234.567);     //   (1235)   
  42.         System.out.println(s);  
  43.    
  44.         //   The   '   symbol   is   used   to   quote   literal   symbols   
  45.         formatter   =   new   DecimalFormat( " '# '# ");   
  46.         s   =   formatter.format(-1234.567);        //   -#1235   
  47.         System.out.println(s);  
  48.         formatter   =   new   DecimalFormat( " 'abc '# ");   
  49.         s   =   formatter.format(-1234.567);      // - abc 1235  
  50.         System.out.println(s);  
  51.    
  52. formatter   =   new   DecimalFormat( "#.##%");   
  53.         s   =   formatter.format(-12.5678987);    
  54.         System.out.println(s);  
  55. }  


4. 字符串处理 String

String 类用来存储字符串,可以用charAt方法来取出其中某一字节,计数从0开始: 

String a = "Hello"; // a.charAt(1) = 'e' 

substring方法可得到子串,如上例 

System.out.println(a.substring(0, 4)) // output "Hell" 

注意第2个参数位置上的字符不包括进来。这样做使得 s.substring(a, b) 总是有 b-a个字符。 

字符串连接可以直接用 号,如 

String a = "Hello"; 

String b = "world"; 

System.out.println(a + ", " + b + "!"); // output "Hello, world!" 

如想直接将字符串中的某字节改变,可以使用另外的StringBuffer类。 

5. 高精度
BigIntegerBigDecimal可以说是acmer选择java的首要原因。
函数:add, subtract, divide, mod, compareTo等,其中加减乘除模都要求是BigInteger(BigDecimal)BigInteger(BigDecimal)之间的运算,所以需要把int(double)类型转换为BigInteger(BigDecimal),用函数BigInteger.valueOf().

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. import java.io.BufferedInputStream;  
  2. import java.math.BigInteger;  
  3. import java.util.Scanner;  
  4. public class Main {  
  5. public static void main(String[] args)   {  
  6. Scanner cin = new Scanner (new BufferedInputStream(System.in));  
  7.         int a = 123, b = 456, c = 7890;  
  8.         BigInteger x, y, z, ans;  
  9.         x = BigInteger.valueOf(a);   
  10.         y = BigInteger.valueOf(b);   
  11.         z = BigInteger.valueOf(c);  
  12.         ans = x.add(y); System.out.println(ans);  
  13.         ans = z.divide(y); System.out.println(ans);  
  14.         ans = x.mod(z); System.out.println(ans);  
  15.         if (ans.compareTo(x) == 0) System.out.println("1");  
  16.     }  
  17. }  



6. 进制转换
String st = Integer.toString(num, base); // num当做10进制的数转成base进制的st(base <= 35).
int num = Integer.parseInt(st, base); // st当做base进制,转成10进制的int(parseInt有两个参数,第一个为要转的字符串,第二个为说明是什么进制).  
BigInter m = new BigInteger(st, base); // st是字符串,basest的进制.
7. 数组排序
函数:Arrays.sort();

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. public class Main {  
  2. public static void main(String[] args)    {  
  3.         Scanner cin = new Scanner (new BufferedInputStream(System.in));  
  4.         int n = cin.nextInt();  
  5.         int a[] = new int [n];  
  6.         for (int i = 0; i < n; i++) a[i] = cin.nextInt();  
  7.         Arrays.sort(a);  
  8.         for (int i = 0; i < n; i++) System.out.print(a[i] + " ");  
  9.     }  
  10. }  

8. 其他注意的事项

(1) Java 是面向对象的语言,思考方法需要变换一下,里面的函数统称为方法,不要搞错。

(2) Java 里的数组有些变动,多维数组的内部其实都是指针,所以Java不支持fill多维数组。 
     数组定义后必须初始化,如 int[] a = new int[100];

(3) 布尔类型为 boolean,只有true和false二值,在 if (...) / while (...) 等语句的条件中必须为boolean类型。 
     在C/C++中的 if (n % 2) ... 在Java中无法编译通过。

(4) 下面在java.util包里Arrays类的几个方法可替代C/C++里的memset、qsort/sort 和 bsearch:

Arrays.fill() 
Arrays.sort() 
Arrays.binarySearch()   


原帖地址:http://blog.csdn.net/shijiebei2009/article/details/17305223


===================================================================================================================

Java:
1.先输入数组长度n,在输入n个数字

import java.util.Scanner;
Scanner sc=new Scanner(System.in);
int n;
 n=sc.nextInt();
int a[]=new int[n];
for(int i=0;i<n;i++){
  a[i]=sc.nextInt();
}
2.输入不定长数组:
import java.util.ArrayList;
import java.util.Scanner;
Scanner sc=new Scanner(System.in);
ArrayList<Integer> a=new ArrayList<Integer>();
while(sc.hasNextLine()){
int e=sc.nextInt();
if(e==0) break;
a.add(e);
        }
3.数字转字符串
String s = String.valueOf( value);
  字符串转数字
int num = Integer.parseInt(str);
===================================================================================================================


1、基本定义

import java.util.*;

import java.io.*;

public class Main 

{

public static void main(String[] args)

{

Scanner cin1 = new Scanner(System.in);

Scanner cin2 = new Scanner(new BufferedInputStream(System.in));

}

}

使用cin2进行输入的时候可能会比cin1快一些。



2、输入具体数据

1)输入一个整数:int n = cin.nextInt();

2)输入一个字符串:String s = cin.next();

3)输入一个浮点数:double f = cin.nextDouble();

4)读入一整行:String s = cin.nextLine();

判断是否有下一个输入,可以用cin.hasNext()cin.hasNextInt()cin.hasNextDouble()等进行判断。



3、基本输出

1System.out.print();  //类似于cout<<…….;

2System.out.println();  //类似于cout<<……<<endl;

3System.out.printf();  //类似于Cprintf的功能

样例:

  1. import java.io.*;  
  2. import java.math.*;  
  3. import java.util.*;  
  4. import java.text.*;  
  5.   
  6. public class Main {  
  7.     public static void main(String[] args) {  
  8.         Scanner cin = new Scanner(new BufferedInputStream(System.in));  
  9.         int a;  
  10.         double b;  
  11.         a = 12345;  
  12.         b = 1.234567;  
  13.         System.out.println(a + " " + b);  
  14.         System.out.printf("%d %10.5f\n", a, b);  
  15.         // 输入b为字宽为10,右对齐,保留小数点后5位,四舍五入.  
  16.     }  
  17. }  

输出结果:

12345 1.234567

12345    1.23457



4、要求具体精度的输出

1)可以使用上面介绍的System.out.printf();

2)对于输出浮点数要保留几位小数的问题,可以使用DecimalFormat类解决

  1. import java.util.*;  
  2. import java.text.*;  
  3.   
  4. public class Main {  
  5.     public static void main(String[] args) {  
  6.         DecimalFormat f = new DecimalFormat("#.00#");  
  7.         DecimalFormat g = new DecimalFormat("0.000");  
  8.         // 这里的0指一位数字,#指除0以外的数字  
  9.         double a = 123.456789, b = 0.123456;  
  10.         System.out.println(f.format(a));  
  11.         System.out.println(f.format(b));  
  12.         System.out.println(g.format(a));  
  13.         System.out.println(g.format(b));  
  14.     }  
  15. }  

输出结果:

123.457

.123

123.457

0.123



5、字符串的处理

1String

Java中字符串String是不可以修改的,要修改只能转换为字符数组。

String st = "abcdefg";

char[] ch;

ch = st.toCharArray(); // 字符串转换为字符数组.



6、高精度问题



7、大数问题   

Java中有两个类BigDecimal(表示浮点数)和BigInteger(表示整数)

使用这两个类的时候需要加上import java.math.*;

Ⅰ基本函数:

1valueOf(parament);  将参数转换为指定类型

例如:

int a = 3;

BigInteger b = BigInteger.valueOf(a);

b = 3

String s = “1234”;

BigInteger b = BigInteger.valueOf(s);

b = 1234

2add();   //大数加法

例如:

BigInteger a = new BigInteger(“11”);

BigInteger b = new BigInteger(“22”);

a.add(b);

a = 33

3substract();    //减法

4multiply();     //乘法

5divided();      //相除取整

6remainder();    //取余

7pow();         //a.pow(b) = a ^ b

8gcd();         //最大公约数

9abs();         //绝对值

10negate();      //取反数

11mod();      //a.mod(b) = a % b = a.remainder(b)

12max();   min();

13public int compareTo();    //比较

14boolean equals();        //比较是否相等

15BigIntergerde 构造函数

一般用到以下两种:

BigInteger(String val);

将指定字符串转换为十进制表示形式;

BigInteger(String val,int radix);

将指定基数的 BigInteger 的字符串表示形式转换为 BigInteger

例如:

BigInteger b = new BigInteger("1010",2);

System.out.println(b);

输出:10



.基本常量:

A=BigInteger.ONE    //=1

B=BigInteger.TEN     //=10

C=BigInteger.ZERO    //=0


.基本操作

1. 读入:

  1. while(cin.hasNext()) //等同于!=EOF  
  2. {  
  3.     int n;  
  4.     BigInteger m;  
  5.     n=cin.nextInt(); //读入一个int;  
  6.     m=cin.BigInteger();//读入一个BigInteger;  
  7.     System.out.print(m.toString());  
  8.     System.out.print(m);  
  9. }  

.运用

四则预算:

  1. import java.util.Scanner;  
  2. import java.math.*;  
  3. import java.text.*;  
  4.   
  5. public class Main {  
  6.     public static void main(String args[]) {  
  7.         Scanner cin = new Scanner(System.in);  
  8.         BigInteger a, b;  
  9.         int c;  
  10.         char op;  
  11.         String s;  
  12.         while (cin.hasNext()) {  
  13.             a = cin.nextBigInteger();  
  14.             s = cin.next();  
  15.             op = s.charAt(0);  
  16.             if (op == '+') {  
  17.                 b = cin.nextBigInteger();  
  18.                 System.out.println(a.add(b));  
  19.             } else if (op == '-') {  
  20.                 b = cin.nextBigInteger();  
  21.                 System.out.println(a.subtract(b));  
  22.             } else if (op == '*') {  
  23.                 b = cin.nextBigInteger();  
  24.                 System.out.println(a.multiply(b));  
  25.             } else {  
  26.                 BigDecimal a1, b1, eps;  
  27.                 // 浮点数  
  28.                 String s1, s2, temp;  
  29.                 s1 = a.toString();  
  30.                 a1 = new BigDecimal(s1);  
  31.                 b = cin.nextBigInteger();  
  32.                 s2 = b.toString();  
  33.                 b1 = new BigDecimal(s2);  
  34.                 c = cin.nextInt();  
  35.                 // 接收精度控制,即保留几位小数的问题  
  36.                 eps = a1.divide(b1, c, 4);  
  37.                 if (c != 0) {  
  38.                     temp = "0.";  
  39.                     for (int i = 0; i < c; i++)  
  40.                         temp += "0";  
  41.                     DecimalFormat gd = new DecimalFormat(temp);  
  42.                     System.out.println(gd.format(eps));  
  43.                 } else  
  44.                     System.out.println(eps);  
  45.             }  
  46.         }  
  47.     }  


  • 0
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值