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: February 2009
Poj Solution 1011
http://poj.org/problem?id=1011 import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.Arrays; import java.util.StringTokenizer; public class Main { static boolean[] used; static int len; static int[] s; static int sum; static int max; static int parts; public static void main(String[] args) throws Exception { BufferedReader … Continue reading
Posted in poj
Leave a comment
Poj Solution 1010
http://poj.org/problem?id=1010 //* @author: 82638882@163.com import java.util.*; public class Main { public static void main(String[] args) { Scanner in=new Scanner(System.in); while(in.hasNext()) { int[] arr=new int[100]; int n=0; while(true) { int a=in.nextInt(); if(a==0)break; arr[n++]=a; } Arrays.sort(arr,0,n); while(true) { int a=in.nextInt(); if(a==0)break; int … Continue reading
Posted in poj
Leave a comment
Poj Solution 1009
http://poj.org/problem?id=1009 //* @author popop0p0popo import java.util.*; import java.io.*; public class Main{ public static void main(String[] args){ Scanner scanner=new Scanner(new BufferedReader(new InputStreamReader(System.in))); int n,dtf,m,mn,cp,cpl; int[][] dt; while (true){ n=scanner.nextInt(); if (n==0){ break; } System.out.println(n); dt=new int[2][10000]; dtf=0; while (true){ dt[0][dtf]=scanner.nextInt(); dt[1][dtf]=scanner.nextInt(); … Continue reading
Posted in poj
Leave a comment
Poj Solution 1008
http://poj.org/problem?id=1008 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int times = scan.nextInt(); System.out.println(times); int day; int day2; int t_day = 0; int t_month; String month; String month2; int year; int … Continue reading
Posted in poj
Leave a comment
Poj Solution 1007
http://poj.org/problem?id=1007 import java.util.*; class DNA { private String str = null; private int sortNum = 0; public DNA(String input) { str = input; int num = 0; for(int i = 0; i < str.length()-1; i++) { for(int j = i+1; … Continue reading
Posted in poj
Leave a comment
Poj Solution 1006
http://poj.org/problem?id=1006 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int k = 0; while (scan.hasNext()) { int p = scan.nextInt(); int e = scan.nextInt(); int i = scan.nextInt(); int d = … Continue reading
Posted in poj
Leave a comment
Poj Solution 1005
http://poj.org/problem?id=1005 #include <stdio.h> #include <stdlib.h> #include <math.h> #define M_PI 3.14159265358979323846 #define DEBUG 0 int main(void) { if(DEBUG) freopen("in","r",stdin); int year,n,i=1; double x,y,radius,area; scanf("%d",&n); while(n–){ scanf("%lf%lf",&x,&y); radius=x*x+y*y; area=M_PI*radius/2.0; year=(int)ceil(area/50); printf("Property %d: ",i++); printf("This property will begin eroding in year %d.n",year); } … Continue reading
Posted in poj
Leave a comment
Poj Solution 1004
http://poj.org/problem?id=1004 #include <iostream> using namespace std; int main(){ double d,t; while(cin>>d){ t+=d; } cout<<"$"<<t/12; return 0; }
Posted in poj
Leave a comment
Poj Solution 1003
http://poj.org/problem?id=1003 #include <stdio.h> #include <stdlib.h> #define DEBUG 0 int main(void) { if(DEBUG) freopen("in","r",stdin); float c; while(scanf("%f",&c)&&c!=0){ int i=2; float rs=0; while(rs<c){ rs+=1.0/i; i++; } printf("%d card(s)n",i-2); } return 0; }
Posted in poj
Leave a comment
Poj Solution 1002
http://poj.org/problem?id=1002 #include<stdio.h> #include<stdlib.h> #include<string.h> #include<ctype.h> typedef struct BSTNode { char phoneName[9]; int times; struct BSTNode *lchild,*rchild; }BSTNode,*BSTree; int count; void InsertBST(BSTree &t, char name[])//二叉排序树的插入,注意里面的BSTree &t { BSTree p,f; p = t;//指向树根 while(p) { if(strcmp(name,p->phoneName) == 0)//树中已有name值了,无需插入 { p->times++; count=1; return; … Continue reading
Posted in poj
Leave a comment
Poj Solution 1001
http://poj.org/problem?id=1001 #include <iostream> #include <string.h> using namespace std ; char R[10] , Num[160] ; int n , L , Point , i , j , l , k ; int f[160] , c[160] , A[160] ; int x , y … Continue reading
Posted in poj
Leave a comment
Poj Solution 1000
http://poj.org/problem?id=1000 #include<stdio.h> int main(){ int a,b; scanf("%d%d",&a,&b); printf("%dn",a+b); return 0; }
Posted in poj
Leave a comment