可以。
創(chuàng)新互聯(lián)建站堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的宏偉網(wǎng)站設(shè)計(jì)、移動媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
參加比賽選手代碼的主類名必須是Main,否則會被判為無效代碼。
注意不要使用package語句。
如果代碼中引用了類庫,在提交時(shí)必須將import語句中與程序的其他部分同時(shí)提交,只允許使用Java自帶的類庫。
用in.hasNextLine()來判斷是否還有數(shù)據(jù)可以讀 返回false的話就break掉while循環(huán)
首先藍(lán)橋杯練習(xí)題類名必須為Main 規(guī)定在1秒內(nèi)運(yùn)行完代碼,你用遞歸方法調(diào)用效率很低的,方法的開銷是很大的。換一種方法
先說一下Java對于ACM的一些優(yōu)點(diǎn)吧:
(1) 對于熟悉C/C++的程序員來說Java 并不難學(xué),兩周時(shí)間基本可以搞定一般的編程,再用些時(shí)間了解一下Java庫就行了。Java的語法和C++非常類似,可以說是C++的升級版,只是更加強(qiáng)調(diào)面向?qū)ο笏枷攵?。(個(gè)人見解。。。)
(2) 在一般比賽中,Java程序會有額外的時(shí)間和空間,但真正進(jìn)行大規(guī)模運(yùn)算時(shí)Java并不比C/C++慢,輸入輸出效率比較低而已
(3) Java 代碼簡單且功能強(qiáng)大,有些像高精度之類的算法用Java實(shí)現(xiàn)起來更為簡潔方便(ACM真正比賽時(shí)是講究做題速度的,任何題只要能過就行,而不必過于要求程序的速度有多高,不超時(shí)就好)。
***小技巧:某些題目用Java超時(shí)的話可以用Java打表然后用C/C++提交
(4) 用Java不易犯細(xì)微的錯誤,比如C/C++中的指針, “if (n = m) ... ” 等。
(5) 目前Eclipse已成基本配置,寫Java程序反而比C/C++更方便調(diào)試。在具體競賽時(shí)也算多一種選擇。
關(guān)于ACM中應(yīng)用的一些問題:
(1) JDK 1.5.0 及其以上版本提供的Scanner類為輸入提供了良好的基礎(chǔ),很好地優(yōu)化Java的輸入問題。
代碼如下:
import java.io.* import java.util.*
public class Main {
public static void main(String args[])
{
Scanner cin = new Scanner(new BufferedInputStream(System.in));
}
}
也可以直接 Scanner cin = new Scanner(System.in); 加Buffer可能會快一些。
(2) 讀一個(gè)整數(shù): int n = cin.nextInt(); 相當(dāng)于 scanf("%d", n); 或 cin n;
讀一個(gè)字符串:String s = cin.next(); 相當(dāng)于 scanf("%s", s); 或 cin s;
讀一個(gè)浮點(diǎn)數(shù):double t = cin.nextDouble(); 相當(dāng)于 scanf("%lf", t); 或 cin t;
讀一整行: String s = cin.nextLine(); 相當(dāng)于 gets(s); 或 cin.getline(...);
判斷是否有下一個(gè)輸入可以用 cin.hasNext() 或 cin.hasNextInt() 或 cin.hasNextDouble()
(3) 輸出一般可以直接用 System.out.print() 和 System.out.println(),前者不輸出換行,而后者輸出。
System.out.println(n); // n 為 int 型 同一行輸出多個(gè)整數(shù)可以用
System.out.println(new Integer(n).toString() + " " + new Integer(m).toString());
//也可重新定義:
static PrintWriter cout = new PrintWriter(new BufferedOutputStream(System.out));
cout.println(n);
(4)對于輸出浮點(diǎn)數(shù)保留幾位小數(shù)的問題,可以使用DecimalFormat類,
import java.text.*;
DecimalFormat f = new DecimalFormat("#.00#");
DecimalFormat g = new DecimalFormat("0.000");
double a = 123.45678, b = 0.12;
System.out.println(f.format(a));
System.out.println(f.format(b));
System.out.println(g.format(b));
大數(shù):
BigInteger 和 BigDecimal 是在java.math包中已有的類,前者表示整數(shù),后者表示浮點(diǎn)數(shù)
import java.math.* // 需要引入 java.math 包
BigInteger a = BigInteger.valueOf(100);
BigInteger b = BigInteger.valueOf(50);
BigInteger c = a.add(b) // c = a + b;
//主要有以下方法可以使用:
BigInteger add(BigInteger other)
BigInteger subtract(BigInteger other)
BigInteger multiply(BigInteger other)
BigInteger divide(BigInteger other)
BigInteger mod(BigInteger other)
int compareTo(BigInteger other)
static BigInteger valueOf(long x)
//輸出數(shù)字時(shí)直接使用 System.out.println(a) 即可
字符串:
String 類用來存儲字符串,可以用charAt方法來取出其中某一字節(jié),計(jì)數(shù)從0開始:
String a = "Hello"; // a.charAt(1) = 'e'
用substring方法可得到子串,如上例
System.out.println(a.substring(0, 4)) // output "Hell"
注意第2個(gè)參數(shù)位置上的字符不包括進(jìn)來。這樣做使得 s.substring(a, b) 總是有 b-a個(gè)字符。
字符串連接可以直接用 + 號,如
String a = "Hello";
String b = "world";
System.out.println(a + ", " + b + "!"); // output "Hello, world!"
如想直接將字符串中的某字節(jié)改變,可以使用另外的StringBuffer類。
調(diào)用遞歸(或其他動態(tài)方法)
在主類中 main 方法必須是 public static void 的,在 main 中調(diào)用非static類時(shí)會有警告信息,
可以先建立對象,然后通過對象調(diào)用方法:
public class Main {
void dfs(int a)
{
if () return;
dfs(a+1);
}
public static void main(String args[])
{
Main e = new Main();
e.dfs(0);
}
}
其他注意的事項(xiàng):
(1) Java 是面向?qū)ο蟮恼Z言,思考方法需要變換一下,里面的函數(shù)統(tǒng)稱為方法,不要搞錯。
(2) Java 里的數(shù)組有些變動,多維數(shù)組的內(nèi)部其實(shí)都是指針,所以Java不支持fill多維數(shù)組。
數(shù)組定義后必須初始化,如 int[] a = new int[100];
(3) 布爾類型為 boolean,只有true和false二值,在 if (...) / while (...) 等語句的條件中必須為boolean類型。
在C/C++中的 if (n % 2) ... 在Java中無法編譯通過。
(4) 下面在java.util包里Arrays類的幾個(gè)方法可替代C/C++里的memset、qsort/sort 和 bsearch:
Arrays.fill()
Arrays.sort()
Arrays.binarySearch()
雖然Java功能很強(qiáng)大,但不能完全依賴他,畢竟C和C++還是ACM/ICPC的主流語言,適當(dāng)?shù)厥褂貌拍苡行岣弑荣愔械某煽?。?!?/p>
附:
例題:POJ 1001
1import java.io.*;
2import java.util.*;
3import java.math.BigDecimal;
4
5public class Main {
6
7public static void main(String args[])
8{
9 Scanner cin = new Scanner(System.in);
10
11 BigDecimal num;
12 int n;
13 String r;
14
15 while(cin.hasNextBigDecimal())
16 {
17 num = cin.nextBigDecimal();
18 n = cin.nextInt();
19 num = num.pow(n);
20 r = num.stripTrailingZeros().toPlainString();
21 if(r.startsWith("0.")) r = r.substring(1);
22
23 System.out.println(r);
24 }
25}
26}
package computer;
import java.util.Arrays;import java.util.Random;
import java.util.Scanner;
public class SerachFunction {
public static int[] allnum=new int[20];
// picture ...like a picture
public void picOne(){
System.out.println("************");
System.out.println("1.選擇排序");
System.out.println("2.冒泡排序");
System.out.println("3.插入排序");
System.out.println("4.全排列");
System.out.println("5.數(shù)字分解為數(shù)字和");
System.out.println("6.殺死小朋友問題");
System.out.println("7.階乘");
System.out.println("8.雙色球");
System.out.println("9.100-1000的水仙花數(shù)");
System.out.println("10.正數(shù)分解因數(shù)");
System.out.println("11.恐怖的事情 千萬不要輸入11");
System.out.println("輸入-1退出");
System.out.println("輸入-2查看問題注釋");
System.out.println("************");
}
public void picTwo(){
System.out.println("注意輸入單個(gè)字符參數(shù)(根據(jù)選項(xiàng)輸入,多個(gè)參數(shù)以逗號分割): ");
}
public void picThree(){
System.out.println("5號問題為輸入某一數(shù)字 出現(xiàn)這個(gè)數(shù)字可由哪些數(shù)字相加而得");
System.out.println("6號問題為9(輸入)個(gè)已編號的小朋友圍一圈報(bào)數(shù)1,2,3報(bào)到3的拖出去xx問剩下的小朋友是幾號");
}
public void picFour(){
System.out.println("0_0~");
System.out.println("恐怖的事情發(fā)生了...說了不要點(diǎn)...");
System.out.println("樓主累死了....");
}
// main
public static void main(String[] args){
SerachFunction fc=new SerachFunction();
fc.inputFunction();
}
public void inputFunction(){ //接受指令并調(diào)用相關(guān)函數(shù)
int command;
char[] params;
Scanner sc=new Scanner(System.in);
while(true){
picOne();
if((command=sc.nextInt())==-1){
break;
}
picTwo();
params=getParamsArray(sc.next());
System.out.println();
switch(command){
case 1:
selectSort(params);
break;
case 2:
bubbleSort(params);
break;
case 3:
insertionSort(params);
break;
case 4:
fullArray(params,0);
break;
case 5:
resolveNum(getQuondam(params),0);
break;
case 6:
killChildren(getQuondam(params));
break;
case 7:
factorial(getQuondam(params),1);
break;
case 8:
twoColorBall();
break;
case 9:
daffodil();
break;
case 10:
int all=0;
primeFactor(getQuondam(params),0);
break;
case 11:
picFour();
break;
case -2:
picThree();
break;
}
System.out.println("Y(^_^)Y");
}
System.out.println("(*^_^*)");
}
/*
* com function
* */
public char[] getParamsArray(String params){
params=params.replaceAll(",","");
return params.toCharArray();
}//to get char[] params
// 選擇排序
public void selectSort(char[] params){
for(int i=0;iparams.length-1;i++){
for(int m=i+1;mparams.length;m++){
if(params[i]params[m]){
changePlace(params,m,i);
}
}
}
showChar(params);
System.out.println("選擇排序結(jié)束");
}
//冒泡排序
public void bubbleSort(char[] params){
for(int i=params.length-1;i0;i--){
for(int m=0;mi;m++){
if(params[m]params[m+1]){
changePlace(params,m,m+1);
}
}
}
showChar(params);
System.out.println("冒泡排序結(jié)束");
}
//插入排序
public void insertionSort(char[] params){
for(int i=1;iparams.length;i++){
for(int m=i-1;m=0;m--){
if(params[m+1]params[m]){
changePlace(params,m+1,m);
}
}
}
showChar(params);
System.out.println("插入排序結(jié)束");
}
//全排列
public void fullArray(char[] params,int begin){
if(begin==params.length){
showChar(params);
}
for(int i=begin;iparams.length;i++){
if(begin=params.length){
changePlace(params,begin,i);
fullArray(params,begin+1);
changePlace(params,begin,i);
}
}
}
//數(shù)字分解為數(shù)字和
public void getAllNum(int[] num,int end){
System.out.print("分解方式:");
for(int i=0;iend;i++){
System.out.print(num[i]);
if(i+1!=end){
System.out.print(',');
}
}
System.out.println("");
}
public int getArrayT(int[] num,int end){
int tot=0;
for(int i=0;iend;i++){
tot+=num[i];
}
return tot;
}
public boolean getShoud(int[] num,int end){
for(int i=0;iend;i++){
if(i+1end){
if(num[i+1]num[i]){
return false;
}
}
}
return true;
}
public void resolveNum(int num,int begin){
if(getArrayT(allnum,begin)==num){
if(getShoud(allnum,begin)){
getAllNum(allnum,begin);
}
}
for(int i=1;i=num;i++){
if(getArrayT(allnum,begin)=num){
allnum[begin]=i;
resolveNum(num,begin+1);
}
}
}
// 殺死小朋友
public void killChildren(int child){
int alivechild=child;
int num=0;
int index=0;
boolean[] childisdead=new boolean[child];
Arrays.fill(childisdead,true);
while(alivechild!=1){
if(childisdead[index]){
num++;
if(num%3==0){
alivechild--;
childisdead[index]=false;
num=0;
}
}
index++;
if(index==child)
index=0;
}
for(int i=0;ichildisdead.length;i++){
if(childisdead[i])
System.out.println((int)(i+1)+"號小朋友還活著");
}
}
//階乘
public void factorial(int end,long output){
if(end==1){
System.out.println(output);
return;
}
output=output*end;
factorial(end-1,output);
}
//two color ball;
public void twoColorBall(){
int[] redball=new int[6];
int blueball=(int)(Math.random()*15+1);
int index=0;
while(true){
boolean bol=true;
int red=(int)(Math.random()*32+1);
for(int i=0;i=index;i++){
if(red==redball[index]){
bol=false;
}
}
if(bol){
redball[index]=red;
index++;
}
if(index==6){
break;
}
}
System.out.print("紅色:");
for(int i=0;i6;i++){
System.out.print(redball[i]+",");
}
System.out.println("");
System.out.println("藍(lán)色:"+blueball);
}
//水仙花
public void daffodil(){
int hundreds=0,decade=0,unit=0;
System.out.print("水仙花數(shù):");
for(int i=100;i1000;i++){
hundreds=i/100;
decade=(i%100)/10;
unit=(i%100)%10;
hundreds=hundreds*hundreds*hundreds;
decade=decade*decade*decade;
unit=unit*unit*unit;
if(i==(hundreds+decade+unit)){
System.out.print(i+",");
}
}
System.out.println("");
}
//分解為因數(shù)
public void getPriShow(int[] num,int end){
System.out.print("分解方式:");
for(int i=0;iend;i++){
System.out.print(num[i]);
if(i+1!=end){
System.out.print('*');
}
}
System.out.println("");
}
public void primeFactor(int num,int begin){
if(num==1){
if(getShoud(allnum,begin)){
getPriShow(allnum,begin);
}
return;
}
for(int i=2;i=num;i++){
if(num%i==0){
allnum[begin]=i;
primeFactor(num/i,begin+1);
}
}
}
//展示char數(shù)組
public void showChar(char[] params){
for(int i=0;iparams.length;i++){
System.out.print(params[i]);
if(i+1!=params.length){
System.out.print(',');
}
}
System.out.println("");
}
//兩數(shù)換位置
public void changePlace(char[] params,int begin,int end){
int act;
act=params[begin];
params[begin]=params;
params=(char) act;
}
//得到原數(shù)
public int getQuondam(char[] num){
return Integer.parseInt(String.valueOf(num));
}
}
//水仙花水的那個(gè)就是