Meta
-
Recent Posts
Recent Comments
- MorrissMar on 隆宪叁年-五一
- tEVFSJtRNq on A man in his twenties (in hex)
- MorrissMar on 隆宪叁年-五一
- ZEzPRbkFJG on A man in his twenties (in hex)
- MorrissMar on 隆宪叁年-五一
Archives
- May 2024
- April 2023
- February 2023
- January 2023
- December 2022
- November 2022
- September 2022
- June 2022
- July 2021
- January 2021
- February 2020
- September 2019
- March 2018
- February 2018
- August 2016
- July 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- May 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- April 2014
- March 2014
- February 2014
- January 2014
- December 2013
- November 2013
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
Categories
Monthly Archives: October 2015
Poj Solution 3321
http://poj.org/problem?id=3321 //* @author: import java.io.*; import java.util.Arrays; import java.util.StringTokenizer; class cin { static BufferedReader in=new BufferedReader(new InputStreamReader(System.in)); static StringTokenizer st; static int leave=0; static int nextInt() throws IOException { while(leave==0) { st=new StringTokenizer(in.readLine()); leave=st.countTokens(); } leave–; return Integer.parseInt(st.nextToken()); } static … Continue reading
Posted in poj
Leave a comment
Poj Solution 3307
http://poj.org/problem?id=3307 //* @author import java.util.*; public class Main{ public static void main(String args[]){ int k,n; Scanner in=new Scanner(System.in); k=in.nextInt(); init(); while(k–>0){ n=in.nextInt(); System.out.printf("%dn",s[n]); } } static int MAX=80000; static long s[]=new long[MAX]; //���ڴ洢������� static long d2[]=new long[MAX]; //�洢���к���������2�ҷ��������� static long … Continue reading
Posted in poj
Leave a comment
Poj Solution 3302
http://poj.org/problem?id=3302 //* @author ������<hongxp11@163.com> import java.util.Scanner; public class Main { /** * @param args */ public static boolean isSubsequence(String s1, String s2) { int len = s2.length(); int index = -1; int i = 0; for (i = 0; i … Continue reading
Posted in poj
Leave a comment
Poj Solution 3300
http://poj.org/problem?id=3300 //* @author: ccQ.SuperSupper import java.io.*; import java.util.*; public class Main { static final int N = 20; static int n,m; static double front[] = new double[N],rear[] = new double[N],cnt[]=new double[N*N]; static double Get_Num(StreamTokenizer cin)throws Exception{ cin.nextToken(); return cin.nval; } … Continue reading
Posted in poj
Leave a comment
Poj Solution 3299
http://poj.org/problem?id=3299 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); while (scan.hasNext()) { double temperature = 0, dewpoint = 0, humidex = 0; String[] ss = scan.nextLine().split(" "); String sa = ss[0]; … Continue reading
Posted in poj
Leave a comment
Poj Solution 3298
http://poj.org/problem?id=3298 // author:M.J import java.util.*; import java.io.*; public class Main{ public static void main(String[] args){ Scanner in = new Scanner(new BufferedInputStream(System.in)); int T = in.nextInt(); while(T > 0){ T–; int n = in.nextInt(); int k = in.nextInt(); n–; int curr … Continue reading
Posted in poj
Leave a comment
Poj Solution 3295
http://poj.org/problem?id=3295 //* @author: import java.util.Scanner; import java.util.Stack; public class Main { public static void main(String[] args) { new Main().init(); } public void init() { Scanner sc = new Scanner(System.in); char[] s; boolean flag; while (!sc.hasNextInt()) { flag = true; s … Continue reading
Posted in poj
Leave a comment
Poj Solution 3286
http://poj.org/problem?id=3286 //* @author: 82638882@163.com import java.io.*; public class Main { static long[] a=new long[]{ 1,10,100,1000,10000,100000,1000000,10000000,100000000,1000000000 }; static long[] b=new long[]{ 0,1,11,192,2893,38894,488895,5888896,68888897,788888898 }; static long[] c=new long[]{ 0,1,20,300,4000,50000,600000,7000000,80000000,900000000 }; public static void main(String[] args) throws IOException { InputStreamReader is=new InputStreamReader(System.in); BufferedReader … Continue reading
Posted in poj
Leave a comment
Poj Solution 3282
http://poj.org/problem?id=3282 //* @author: import java.util.Scanner; import java.util.Arrays; public class Main{ public static void main(String args[]){ Scanner sc=new Scanner(System.in); int sl,sr,left,right; int nn=sc.nextInt(); while((nn–)!=0) { int l=sc.nextInt(); int n=sc.nextInt(); l*=100;sl=0;sr=0;left=0;right=0; for (int i=1;i<=n;i++) { int t=sc.nextInt(); char s[]=sc.next().toCharArray(); if (s[0]==’l’) { … Continue reading
Posted in poj
Leave a comment
Poj Solution 3278
http://poj.org/problem?id=3278 import java.io.BufferedInputStream; import java.util.LinkedList; import java.util.Scanner; public class Main { public static final int MAX = 200000; public static void main(String[] args) { Scanner scan = new Scanner(new BufferedInputStream(System.in)); if (scan.hasNext()) { int n = scan.nextInt(); int k = … Continue reading
Posted in poj
Leave a comment
Poj Solution 3273
http://poj.org/problem?id=3273 //* @author: 82638882@163.com import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in=new Scanner(System.in); int a=in.nextInt(); int b=in.nextInt(); int[] c=new int[a]; int total=0; int min=0; for(int i=0;i< a;i++) { c[i]=in.nextInt(); total+=c[i]; if(c[i]>min) min=c[i]; } int … Continue reading
Posted in poj
Leave a comment
Poj Solution 3268
http://poj.org/problem?id=3268 import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); int x = sc.nextInt(); int[][] map1 = new int[n + 1][n + … Continue reading
Posted in poj
Leave a comment
Poj Solution 3267
http://poj.org/problem?id=3267 import java.util.*; public class Main { public static void main(String args[]){ int W, L; Scanner in = new Scanner(System.in); W = in.nextInt(); L = in.nextInt(); String msg = in.next(); String[] words = new String[W]; int i, j; for(i = … Continue reading
Posted in poj
Leave a comment