代码搜索:Problem

找到约 10,000 项符合「Problem」的源代码

代码结果 10,000
www.eeworm.com/read/266537/11220240

c globetrotter.c

/* Contest : Ulm Local Contest 1997 * Problem G : Globetrotter * Method : Vector Geometry * Author : Mark Dettinger * Date : June 13, 1997 */ #include #include
www.eeworm.com/read/266537/11220244

c binomial2.c

/* Contest : Ulm Local Contest 1997 * Problem B : Binomial Showdown * Method : Pascal's Triangle * Author : Mark Dettinger * Date : June 3, 1997 */ #include #include
www.eeworm.com/read/266537/11220278

c catan.c

/* University of Ulm Local Contest 1998 * Problem C : The Settlers of Catan * Author : Mark Dettinger * Algorithm : Backtracking */ #include #include #define DBG(x) FIL
www.eeworm.com/read/266537/11220279

c team.c

/* University of Ulm Local Contest 1998 * Problem D : Team Queue * Author : Mark Dettinger * Algorithm : Implement a queue of queues */ #include #include #define MAXTEAMS
www.eeworm.com/read/266535/11220362

c dream.c

/* Problem Mondriaan's Dream * Algorithm Dynamic Programming, Backtracking * Runtime O(r * (sqrt(2)+1)^c) * Author Walter Guttmann * Date 14.12.1999 */ #include static dou
www.eeworm.com/read/266535/11220446

c globe.c

// Problem Global Roaming // Algorithm 3D-Geometry // Runtime O(n) // Author Marc Meister // Date 02.07.2001 #include #include #include using namespace std; t
www.eeworm.com/read/266535/11220605

java grid.java

// Problem Paths on a Grid // Algorithm Binomial Coefficients // Runtime O(n) // Author Walter Guttmann // Date 26.12.2001 import java.io.*; import java.math.*; public class grid { sta
www.eeworm.com/read/266535/11220626

java allinall.java

// Problem All in All // Algorithm Greedy // Runtime O(n) // Author Walter Guttmann // Date 26.12.2001 import java.io.*; public class allinall { public static void main (String[] arg)
www.eeworm.com/read/266534/11220716

pas contest.pas

(* Problem Fixed Partition Contest Management ** Algorithm Brute Force ** Runtime O(m^n*n^2) ** Author Walter Guttmann ** Date 22.02.2003 *) program contest; var f: Text; avgtime: Re
www.eeworm.com/read/266534/11220722

txt fold.hs.txt

-- Problem Fold -- Algorithm Dynamic Programming -- Runtime O(n^4) -- Author Walter Guttmann -- Date 21.04.2003 main :: IO () main = readFile "fold.in" >>= mapM_ solve . words solve :: S