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: September 2011
Poj Solution 1934
http://poj.org/problem?id=1934 #include <stdio.h> #include <vector> #include <string.h> #include <algorithm> #include <set> using namespace std; int ans[81][81]; int from[81][81]; char route1[100],route2[100]; int n,m; void doit() { int i,j; for( i=0; i<=n; i++) ans[i][0] = 0; for( j=0; j<=m; j++) ans[0][j] = … Continue reading
Posted in poj
Leave a comment
Poj Solution 1928
http://poj.org/problem?id=1928 //* @author: 82638882@163.com import java.io.*; import java.util.Arrays; public class Main { public static void main(String[] args) throws IOException { InputStreamReader is=new InputStreamReader(System.in); BufferedReader in=new BufferedReader(is); int a=Integer.parseInt(in.readLine()); while((a–)!=0) { String[] ss=in.readLine().split(" "); int cow=Integer.parseInt(ss[0]); int cul=Integer.parseInt(ss[1]); int sum=Integer.parseInt(ss[2])-2; my[] … Continue reading
Posted in poj
Leave a comment
Poj Solution 1927
http://poj.org/problem?id=1927 /* @author: */ import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int k = 1; double l1, l2, l3, s, c, p, R, ctg1, ctg2, ctg3, len, r, ls, area; … Continue reading
Posted in poj
Leave a comment
Poj Solution 1925
http://poj.org/problem?id=1925 #include"stdio.h" #include"math.h" #include"memory.h" int x[5010],h[5010]; int pos[1000001]; int n; void init() { int i; scanf( "%d", &n ); for( i=0; i<n; i++ ) scanf( "%d %d", x+i, h+i ); memset( pos, -1, sizeof(int)*(x[n-1]+1) ); } void doit() { int … Continue reading
Posted in poj
Leave a comment
Poj Solution 1923
http://poj.org/problem?id=1923 import java.util.Scanner; public class Main { static int com(int a) { return a*(a-1)/2; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); long line[][]=new long[101][10001]; int i,j,k,p,q,cs=0; long max,tmp; for(i=1;i<=100;i++) line[i][0]=i+1; for(i=2;i<=100;i++) for(j=1;j<=com(i);j++) { max=0; for(k=1;k<=i-1;k++) … Continue reading
Posted in poj
Leave a comment
Poj Solution 1922
http://poj.org/problem?id=1922 import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner s = new Scanner(System.in); while(true) { int n = s.nextInt(); if(n == 0) System.exit(-1); double min = 1000000000; while(n > 0) { int v = s.nextInt(); int … Continue reading
Posted in poj
Leave a comment
Poj Solution 1916
http://poj.org/problem?id=1916 #include <iostream> #include <string.h> using namespace std; int a[1030][1030]; int main() { int test,d,n,i,max,j,temp,x,y,now; cin>>test; while(test–) { cin>>d; cin>>n; memset(a,0,sizeof(a)); for(i=0;i<n;i++) { cin>>x>>y; cin>>a[x][y]; } max=-1; for(i=1;i<1025;i++) { a[i][0]+=a[i-1][0]; a[0][i]+=a[0][i-1]; } temp=2*d+1; for(i=1;i<1025;i++) for(j=1;j<1025;j++) { a[i][j]+=a[i-1][j]+a[i][j-1]-a[i-1][j-1]; if(i>=temp&&j>=temp) { now=a[i][j]-a[i-temp][j]-a[i][j-temp]+a[i-temp][j-temp]; … Continue reading
Posted in poj
Leave a comment
Poj Solution 1915
http://poj.org/problem?id=1915 import java.io.BufferedInputStream; import java.util.LinkedList; import java.util.Scanner; public class Main { private static int[][] directions = new int[][]{ {-2, -1}, {-2, 1}, {-1, -2}, {-1, 2}, {1, -2}, {1, 2}, {2, -1}, {2, 1}}; static void BreadthFirstSearch(int startX, int startY, … Continue reading
Posted in poj
Leave a comment
Poj Solution 1914
http://poj.org/problem?id=1914 //* @author popop0p0popo import java.util.*; import java.io.*; import java.text.*; import java.math.*; public class Main{ public static void main(String[] args){ Scanner scanner=new Scanner(new BufferedReader(new InputStreamReader(System.in))); int n=scanner.nextInt(); BigInteger[][] a; BigInteger[] b; BigInteger aa,aa1,aa2,aa3; for (int i=0;i< n ;i++ ){ a=new … Continue reading
Posted in poj
Leave a comment
Poj Solution 1909
http://poj.org/problem?id=1909 //* @author: ccQ.SuperSupper import java.util.*; import java.io.*; class node{ int init_have; int sum_have; int nodes; Vector son = new Vector(); } public class Main { static int N = 10000+100; public static void main(String []args) throws Exception{ int n,i,j,ans,cnt,sons,root; … Continue reading
Posted in poj
Leave a comment
Poj Solution 1906
http://poj.org/problem?id=1906 //* @author: import java.math.BigInteger; import java.util.Scanner; public class Main { public static void main(String[]args){ BigInteger dat[]=new BigInteger[100]; dat[0]=BigInteger.ONE; BigInteger tr=new BigInteger("3"); for(int i=1;i< 100;i++){ dat[i]=dat[i-1].multiply(tr); } long N; int t; boolean first; Scanner cin=new Scanner(System.in); while(cin.hasNext()){ N=cin.nextLong(); if(N==0) break; … Continue reading
Posted in poj
Leave a comment