首页 > 代码库 > HDU 5050 Divided Land ( JAVA )
HDU 5050 Divided Land ( JAVA )
HDU 5050 - Chinese Girls‘ Amusement ( JAVA or 高精度 )
题意不用再解释做法是求两个二进制数的最大公约数字然后以二进制输出
import java.io.*;import java.math.BigInteger;import java.util.*;public class Main { static PrintWriter out = new PrintWriter(new BufferedWriter( new OutputStreamWriter(System.out))); public static void main(String[] args) throws IOException { Scan scan = new Scan(); int t = scan.nextInt(); for (int c = 1; c <= t; c++) { String s = scan.next(); BigInteger a = new BigInteger(s,2); s = scan.next(); BigInteger b = new BigInteger(s,2); out.println("Case #" + c + ": " + a.gcd(b).toString(2)); } out.flush(); } private static double max(double d, double e) { if (d - e > 0) return d; return e; }}class Scan { BufferedReader buffer; StringTokenizer tok; Scan() { buffer = new BufferedReader(new InputStreamReader(System.in)); } boolean hasNext() { while (tok == null || !tok.hasMoreElements()) { try { tok = new StringTokenizer(buffer.readLine()); } catch (Exception e) { return false; } } return true; } String next() { if (hasNext()) return tok.nextToken(); return null; } String nextLine() { String s = null; try { s = buffer.readLine(); } catch (Exception e) { return null; } return s; } char nextChar() { try { return ((char) buffer.read()); } catch (Exception e) { } return ‘\0‘; } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); }}
从大牛哪里学来了模板,,速度之快就不用多说了
学习了,JAVA模板还是很重要的,高精度模板也是
HDU 5050 Divided Land ( JAVA )
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。