├── .gitignore ├── ACM-ICPC region ├── ACM-ICPC unknown │ ├── pa │ │ └── .project │ ├── paa │ │ ├── .cproject │ │ ├── .project │ │ ├── Debug │ │ │ ├── makefile │ │ │ ├── objects.mk │ │ │ ├── paa │ │ │ ├── sources.mk │ │ │ └── src │ │ │ │ ├── paa.d │ │ │ │ ├── paa.o │ │ │ │ └── subdir.mk │ │ └── src │ │ │ └── paa.cpp │ ├── pb │ │ ├── .cproject │ │ ├── .project │ │ ├── Debug │ │ │ ├── makefile │ │ │ ├── objects.mk │ │ │ ├── pb │ │ │ ├── sources.mk │ │ │ └── src │ │ │ │ ├── pb.d │ │ │ │ ├── pb.o │ │ │ │ └── subdir.mk │ │ └── src │ │ │ └── pb.cpp │ ├── pc │ │ ├── .cproject │ │ ├── .project │ │ ├── Debug │ │ │ ├── makefile │ │ │ ├── objects.mk │ │ │ ├── pc │ │ │ ├── sources.mk │ │ │ └── src │ │ │ │ ├── pc.d │ │ │ │ ├── pc.o │ │ │ │ └── subdir.mk │ │ └── src │ │ │ └── pc.cpp │ ├── pd │ │ ├── .cproject │ │ ├── .project │ │ ├── Debug │ │ │ ├── makefile │ │ │ ├── objects.mk │ │ │ ├── pd │ │ │ ├── pd.in │ │ │ ├── sources.mk │ │ │ └── src │ │ │ │ ├── pd.d │ │ │ │ ├── pd.o │ │ │ │ └── subdir.mk │ │ └── src │ │ │ └── pd.cpp │ ├── pd_1 │ │ ├── .cproject │ │ ├── .project │ │ ├── Debug │ │ │ ├── makefile │ │ │ ├── objects.mk │ │ │ ├── pd_1 │ │ │ ├── sources.mk │ │ │ └── src │ │ │ │ ├── pd_1.d │ │ │ │ ├── pd_1.o │ │ │ │ └── subdir.mk │ │ └── src │ │ │ ├── pd_1.cpp │ │ │ ├── pd_1.exe │ │ │ └── pd_1.o │ ├── pe │ │ ├── .cproject │ │ ├── .project │ │ ├── Debug │ │ │ ├── makefile │ │ │ ├── objects.mk │ │ │ ├── pe │ │ │ ├── sources.mk │ │ │ └── src │ │ │ │ ├── pe.d │ │ │ │ ├── pe.o │ │ │ │ └── subdir.mk │ │ └── src │ │ │ └── pe.cpp │ ├── pg │ │ ├── .cproject │ │ ├── .project │ │ ├── Debug │ │ │ ├── makefile │ │ │ ├── objects.mk │ │ │ ├── sources.mk │ │ │ └── src │ │ │ │ ├── pg.d │ │ │ │ ├── pg.o │ │ │ │ └── subdir.mk │ │ └── src │ │ │ └── pg.cpp │ └── ph │ │ ├── .cproject │ │ ├── .project │ │ ├── Debug │ │ ├── makefile │ │ ├── objects.mk │ │ ├── ph │ │ ├── sources.mk │ │ └── src │ │ │ ├── ph.d │ │ │ ├── ph.o │ │ │ └── subdir.mk │ │ └── src │ │ └── ph.cpp ├── ACM-ICPC-Regionals-Daejeon │ ├── pA.cpp │ ├── pB.cpp │ ├── pC.cpp │ ├── pD.cpp │ ├── pFF.cpp │ ├── pG.cpp │ ├── pJ.cpp │ └── pf.cpp ├── ACM-ICPC[Regionals2009][Phuket] │ ├── pa.cpp │ ├── pb.cpp │ ├── pc.cpp │ ├── pc.exe │ └── pc.o ├── ACM-ICPC[Regionals2011][Dalian] │ └── 新增資料夾 │ │ ├── pa.cpp │ │ ├── pa.exe │ │ ├── pa.o │ │ ├── pc.cpp │ │ ├── pc.exe │ │ ├── pc.o │ │ ├── pc_dfs.cpp │ │ ├── pc_dfs.exe │ │ ├── pc_dfs.o │ │ ├── pd.cpp │ │ ├── pd.exe │ │ ├── pd.o │ │ ├── pe.cpp │ │ ├── pe.exe │ │ ├── pe.o │ │ ├── pf.cpp │ │ ├── pf.exe │ │ ├── pf.o │ │ ├── pl.cpp │ │ ├── pll.cpp │ │ ├── pll.exe │ │ ├── pll.o │ │ ├── plll.cpp │ │ ├── plll.exe │ │ └── plll.o └── ACM-ICPC[Regionals2011][Phuket] │ ├── pa.cpp │ ├── pa.exe │ ├── pa.o │ ├── pb.cpp │ ├── pb.exe │ ├── pb.o │ ├── pc.cpp │ ├── pc.exe │ ├── pc.o │ ├── pd.cpp │ ├── pd.exe │ ├── pd.o │ ├── pg.cpp │ ├── pg.exe │ ├── pg.o │ ├── pi.cpp │ ├── pi.exe │ ├── pi.o │ ├── pj.c │ ├── pj.cpp │ ├── pj.exe │ ├── pj.o │ ├── pxx.c │ ├── pxx.cpp │ ├── pxx.exe │ ├── pxx.o │ ├── testpE.cpp │ ├── testpE.exe │ ├── testpE.o │ ├── trashpH.cpp │ ├── trashpH.exe │ └── trashpH.o ├── OnlineJudge ├── BZOJ │ ├── BZOJ - 2038.cpp │ ├── BZOJ - 2555 SubString.cpp │ ├── BZOJ - 3065.cpp │ ├── BZOJ - 3685.cpp │ ├── BZOJ 1036 - ZJOI2008 Count.cpp │ ├── BZOJ 1047 - [HAOI2007]理想的正方形.cpp │ ├── BZOJ 2049 - 洞穴.cpp │ ├── BZOJ 2631 - tree.cpp │ └── BZOJ 2759 - 一個動態樹好題.cpp ├── HDU OJ │ ├── 4288 Coder.cpp │ ├── 4289 Control.cpp │ ├── 4291 A Short problem.cpp │ ├── 4296 Buildings.cpp │ ├── 4454 Stealing a Cake.cpp │ ├── 4455 Substring.cpp │ ├── 4460 Friend Chains.cpp │ ├── 4461 The Power of Xiangqi.cpp │ ├── 4462 Scaring the Birds.cpp │ ├── 4463 Outlets.cpp │ ├── HDU - 5307.cpp │ ├── HDU - 5307[FFT].cpp │ └── HDU - 5307[NTT].CPP ├── HackerRank │ ├── SQL │ │ ├── Basic Select - Higher Than 75 Marks.sql │ │ ├── Basic Select - Japanese Cities' Detail.sql │ │ ├── Basic Select - Japanese Cities' Name.sql │ │ ├── Basic Select - Select by ID.sql │ │ ├── Basic Select - Weather Observation Station 1.sql │ │ ├── Basic Select - Weather Observation Station 10.sql │ │ ├── Basic Select - Weather Observation Station 11.sql │ │ ├── Basic Select - Weather Observation Station 12.sql │ │ ├── Basic Select - Weather Observation Station 3.sql │ │ ├── Basic Select - Weather Observation Station 4.sql │ │ ├── Basic Select - Weather Observation Station 5.sql │ │ ├── Basic Select - Weather Observation Station 6.sql │ │ ├── Basic Select - Weather Observation Station 7.sql │ │ ├── Basic Select - Weather Observation Station 8.sql │ │ └── Basic Select - Weather Observation Station 9.sql │ └── SUST IUPC Selection Contest for IIUCians │ │ └── Query-Problem.cpp ├── JudgeGirl │ ├── 10. Power.c │ ├── 100. Snake Order │ │ ├── main.c │ │ ├── snake.c │ │ └── snake.h │ ├── 10017. Fast Dynamic Nearest Neighbors Search.c │ ├── 10019 - String Trim.cpp │ ├── 10020. Tricky Quadratic Function.c │ ├── 10025. Fast Image Match │ │ ├── FFT.c │ │ ├── brute.c │ │ ├── brute_parallel.c │ │ ├── brute_parallel2.c │ │ └── brute_parallel3.c │ ├── 10026. Fast N-Queen │ │ ├── 10026. Fast N-Queen-omp-balanced.cpp │ │ ├── brute.cpp │ │ ├── brute_parallel.c │ │ ├── collapse │ │ │ ├── README.md │ │ │ └── main.c │ │ ├── pin.cpp │ │ └── testdata.bat │ ├── 10027. Fast Sudoku │ │ ├── 10027. Fast Sudoku_bfs.c │ │ ├── BFS-DFS-parallel-opt.cpp │ │ ├── BFS-DFS-parallel-task.c │ │ ├── BFS-DFS-parallel.c │ │ ├── DLX-optimize.c │ │ ├── DLX-parallel.c │ │ ├── README.md │ │ ├── dlx.c │ │ └── testdata.bat │ ├── 10028. Fast Page Rank │ │ ├── main.c │ │ ├── main_parallel.c │ │ ├── pin.cpp │ │ ├── test.c │ │ ├── testdata.bat │ │ └── testdata2.bat │ ├── 10030. Real Fake Thing.c │ ├── 10031. Fast 64-bits Modular Arithmetic.c │ ├── 10032. String Subset.c │ ├── 10038. Fast Covering Problem │ │ ├── 10038. Fast Covering Problem-DLX.c │ │ └── DLX-reduce.c │ ├── 10039. Baby Boos.c │ ├── 10040. Dictionary & Substring.c │ ├── 10066. Gal Game II (Monte Carlo method) │ │ ├── pin.cpp │ │ ├── sampling.c │ │ └── sampling_std.c │ ├── 10067. Median from Hard Disk │ │ ├── main.c │ │ ├── median_2pass.c │ │ ├── median_binary_search.c │ │ └── pin.cpp │ ├── 10068. Sort from Hard Disk │ │ ├── main2.cpp │ │ ├── pin.cpp │ │ ├── sort.c │ │ └── sort2.c │ ├── 10069. Build a Binary Search Tree (Simple Object System Ver.) │ │ ├── basic_node.c │ │ ├── bst_node.c │ │ ├── bst_node2.c │ │ ├── main.c │ │ ├── node.h │ │ ├── object.c │ │ ├── object.h │ │ └── pin.cpp │ ├── 10078. Matryoshka Doll │ │ ├── 1.in │ │ ├── 1.out │ │ ├── doll.c │ │ ├── doll.h │ │ ├── judge │ │ ├── main.c │ │ ├── send.lst │ │ ├── source.lst │ │ ├── special │ │ └── subtasks.py │ ├── 10079. Tiny Command Tool │ │ ├── 1.in │ │ ├── 1.out │ │ ├── judge │ │ ├── main.c │ │ ├── send.lst │ │ ├── source.lst │ │ ├── special │ │ ├── subtasks.py │ │ ├── tct.c │ │ └── tct.h │ ├── 10080. Fast Matrix Multiplication (pthread) │ │ ├── Makefile │ │ ├── main.c │ │ ├── matrix.c │ │ ├── matrix.h │ │ ├── special │ │ └── subtasks.py │ ├── 10081. Fast Game of Life │ │ ├── 10081. Fast Game of Life-bit.c │ │ ├── 10081. Fast Game of Life-unloop-balance.c │ │ ├── 10081. Fast Game of Life-unloop.cpp │ │ ├── 10081. Fast Game of Life.cpp │ │ ├── life.c │ │ ├── pin.cpp │ │ └── testdata.bat │ ├── 10082. Fast Find Prime Number │ │ ├── 10082. Fast Find Prime Number-cheat-improve.c │ │ ├── 10082. Fast Find Prime Number-cheat-omp.c │ │ ├── 10082. Fast Find Prime Number-cheat.c │ │ ├── 10082. Fast Find Prime Number-omp-improve.c │ │ ├── 10082. Fast Find Prime Number.c │ │ ├── basic.c │ │ ├── pin.cpp │ │ └── prime-squence.c │ ├── 10083. Line Word Count │ │ ├── judge │ │ ├── main.c │ │ ├── partition.cpp │ │ ├── pin.cpp │ │ ├── send.lst │ │ ├── special │ │ ├── subtasks.py │ │ └── test.c │ ├── 10084. Prefix Sum │ │ ├── Makefile │ │ ├── judge │ │ ├── pin │ │ ├── pin.cpp │ │ ├── presum-pthread.c │ │ ├── presum-seq.c │ │ ├── secret.c │ │ ├── secret2.c │ │ ├── send.lst │ │ ├── source.lst │ │ ├── special │ │ ├── subtasks.py │ │ └── utils.h │ ├── 10085. Parallel Count │ │ ├── Makefile │ │ ├── job.c │ │ ├── job2.c │ │ ├── main.c │ │ ├── sum.c │ │ └── utils.h │ ├── 10086. RedBlue Computation │ │ ├── Makefile │ │ ├── main-grid.c │ │ ├── main.c │ │ └── pin.c │ ├── 10087. Sparse Matrix Multiplication │ │ ├── README.md │ │ ├── SpMV-26-SOA-opt.cpp │ │ ├── SpMV-26-SOA.cpp │ │ ├── SpMV-26.cpp │ │ ├── SpMV-SOA.cpp │ │ └── SpMV.cpp │ ├── 10088. Prefix Sum (OpenMP) │ │ ├── Makefile │ │ ├── judge │ │ ├── prefixsum-openmp.c │ │ ├── prefixsum-openmp.s │ │ ├── prefixsum-pthread.c │ │ ├── secret.c │ │ ├── secret.s │ │ ├── send.lst │ │ ├── source.lst │ │ ├── special │ │ ├── subtasks.py │ │ └── utils.h │ ├── 10089. Print Platform Information (OpenCL).cpp │ ├── 10089. Print Platform Information (OpenCL) │ │ └── main.c │ ├── 10090. Dot Product (OpenCL) │ │ ├── main.c │ │ ├── main2.c │ │ ├── opt-allOnGPU │ │ │ ├── main.c │ │ │ └── vecdot.cl │ │ ├── opt-clEnqueueWriteBuffer │ │ │ ├── main2.c │ │ │ └── vecdot.cl │ │ ├── opt-kernel │ │ │ ├── main2.c │ │ │ └── vecdot.cl │ │ └── vecdot.cl │ ├── 10091. Fast Matrix Multiplication (OpenCL) │ │ ├── foo.cl │ │ ├── main.c │ │ ├── nvprof.sh │ │ ├── nvvp.cfg │ │ └── opt-group │ │ │ ├── main.c │ │ │ └── matrixmul.cl │ ├── 10092. OpenCL Build Program Debug │ │ └── main2.c │ ├── 10093. Fast Matrix Chain Multiplication (OpenMP) │ │ └── main.c │ ├── 10094. Fast 01 Knapsack Problem │ │ ├── SPMD │ │ │ ├── README.md │ │ │ └── main.c │ │ ├── meet-in-middle │ │ │ └── main.c │ │ └── single-parallel │ │ │ └── main.c │ ├── 10095. Matrix Calculator (OpenCL) │ │ ├── 2-device-indep │ │ │ ├── main.c │ │ │ └── matrix-lib.cl │ │ ├── main.c │ │ └── matrix-lib.cl │ ├── 10096. Fast Game of Life (OpenCL) │ │ ├── full-local-mem │ │ │ ├── game-of-life.cl │ │ │ └── main.c │ │ ├── part-local-mem │ │ │ ├── game-of-life.cl │ │ │ └── main.c │ │ └── warp-opt │ │ │ └── main.c │ ├── 10110. Longest Common Subsequence (OpenMP) │ │ ├── main-3-array.cpp │ │ ├── main-sequence.cpp │ │ ├── main-ya-2-array-omp-opt.c │ │ ├── main-ya-2-array-omp.c │ │ └── main-ya-2-array.c │ ├── 10111. Longest Common Subsequence II (OpenMP) │ │ ├── main-3-array-omp.cpp │ │ ├── main-ya-2-array-omp-shared-opt.c │ │ └── main-ya-2-array-omp.c │ ├── 10112. Longest Common Subsequence (CUDA) │ │ ├── main-full-gpu.cu │ │ └── main-gpu-cpu.cu │ ├── 10113. Longest Common Subsequence II (CUDA) │ │ ├── main-gpu-cpu-adaptive-opt.cu │ │ └── main-gpu-cpu.cu │ ├── 10120. Hello, MIC testing.c │ ├── 10121. Fast Matrix Multiplication (MIC) │ │ ├── main.c │ │ ├── matrix.c │ │ └── matrix.h │ ├── 10122. Sparse Matrix Multiplication (MIC).cpp │ ├── 10123. Fast Game of Life (MIC).cpp │ ├── 10124. Longest Common Subsequence (MIC).cpp │ ├── 10125. Longest Common Subsequence II (MIC).cpp │ ├── 10126. Fast Dynamic Programming Computing I (MIC).cpp │ ├── 10127. Fast Dynamic Programming Computing II (MIC).cpp │ ├── 10164. Fast 01 Knapsack Problem on PC │ │ ├── README.md │ │ ├── data-par │ │ │ └── main.c │ │ └── task-par │ │ │ └── main.c │ ├── 10165. Kuku Clique │ │ ├── Makefile │ │ ├── brute-opt.cpp │ │ ├── brute.cpp │ │ ├── pin.cpp │ │ └── rtree.cpp │ ├── 103. Triangular Matrix Solver.cpp │ ├── 104. Material Composition.c │ ├── 106. Divisible.cpp │ ├── 109. Tree Path Printing │ │ ├── main.c │ │ ├── node.c │ │ └── node.h │ ├── 12. Up and Down.cpp │ ├── 128. City Roads │ │ ├── intersection.cpp │ │ ├── intersection.h │ │ └── main.cpp │ ├── 129. A Zig Zag Array │ │ ├── main.c │ │ ├── prepare_array.c │ │ └── prepare_array.h │ ├── 13. Print a Repeated Pattern.cpp │ ├── 130. Similar Strings.cpp │ ├── 132. Color Countries.c │ ├── 133. Word Count with Struct │ │ ├── main.c │ │ └── source.c │ ├── 134. Reconstruct A Binary Tree.c │ ├── 136. Convert a Binary Grade File to HTML.c │ ├── 137. Student Grades.c │ ├── 14. Print the Sequence Backward.cpp │ ├── 15. Print Backward to 1.cpp │ ├── 16. Even and Odd.cpp │ ├── 17. Column Average.cpp │ ├── 18. Larger than Neighbors.cpp │ ├── 190. Function Evaluation │ │ ├── evaluate_f.c │ │ ├── evaluate_f.h │ │ └── main.c │ ├── 191. Characters, Words, and Tokens │ │ ├── count.c │ │ └── count.h │ ├── 195. Tic-Tac-Toe.cpp │ ├── 20000. Longest Common Subsequence (Design Strategies for Computer Algorithms) │ │ ├── LCS.cpp │ │ └── Makefile │ ├── 20001. 2-Dimensional Linear Programming (Design Strategies for Computer Algorithms) │ │ └── main.c │ ├── 20005. 01 Knapsack Problem (Design Strategies for Computer Algorithms) │ │ ├── README.md │ │ ├── main-opt.cpp │ │ └── main.cpp │ ├── 20006. 2-Dimensional Closest Pair Problem (Design Strategies for Computer Algorithms).cpp │ ├── 20006. 2-Dimensional Closest Pair Problem[KD].cpp │ ├── 20007. Fast Travelling Salesman Problem │ │ ├── README.md │ │ ├── main-opt-dir.cpp │ │ ├── main-opt.cpp │ │ └── main.cpp │ ├── 20008. Fast Multiple Knapsack Problem │ │ ├── main-NW-opt-cache-queue.cpp │ │ ├── main-NW-opt-cache.cpp │ │ ├── main-NW.cpp │ │ └── main-NWlogC.cpp │ ├── 20014. Department Store │ │ ├── Makefile │ │ ├── main.c │ │ └── main2.c │ ├── 20015. Range Sum Absolute Value Query.cpp │ ├── 20016. Labeling String (CUDA) │ │ ├── Makefile │ │ ├── labeling-own.cu │ │ ├── labeling-test.cu │ │ ├── labeling.cu │ │ ├── labeling.h │ │ └── main.cu │ ├── 20017. Very Fast Dot Product (OpenCL) │ │ ├── Makefile │ │ ├── main.c │ │ ├── main2.c │ │ ├── main3.c │ │ ├── utils.h │ │ ├── vecdot-main2.cl │ │ ├── vecdot.cl │ │ └── vecdot.cl-main2 │ ├── 20018. Square Root of Vector Elements (SIMD) │ │ ├── Makefile │ │ ├── VSQRT.c │ │ ├── VSQRT.h │ │ ├── main-perf.c │ │ └── main.c │ ├── 20019. CooperativeSeparate Dot Product │ │ ├── Makefile │ │ ├── main-task.c │ │ ├── main.c │ │ ├── main2.c │ │ ├── main3.c │ │ ├── utils.h │ │ ├── vecdot-main2.cl │ │ ├── vecdot.cl │ │ └── vecdot.cl-main2 │ ├── 20020. Dot Product (SIMD) │ │ ├── Makefile │ │ ├── pin.cpp │ │ ├── test-avx.c │ │ ├── test-sse.c │ │ └── test.c │ ├── 20021. Dynamic Range Sum (SIMD) │ │ ├── DRS.c │ │ ├── DRS.h │ │ ├── Makefile │ │ ├── main-perf.c │ │ └── main.c │ ├── 20023.c │ ├── 20026. Segment Intersections │ │ ├── brute.cpp │ │ ├── dc-project-fast.cpp │ │ └── sweep-project-fast.cpp │ ├── 20027. SubString │ │ ├── brute.cpp │ │ ├── pin.cpp │ │ ├── rabin-karp.cpp │ │ ├── sam-kmp.cpp │ │ └── sam.cpp │ ├── 20028. Counting Distinct Odd-SubArray │ │ ├── brute.cpp │ │ ├── gen.sh │ │ ├── main.cpp │ │ ├── main2.cpp │ │ ├── main3.cpp │ │ ├── pin.cpp │ │ └── ptt.py │ ├── 202. Mixed Fractions.c │ ├── 203. Bouncing Balls.cpp │ ├── 204. Homework 4.cpp │ ├── 206. Card Shuffling │ │ ├── card.c │ │ ├── card.h │ │ └── main.c │ ├── 208. Print a Bitmap.c │ ├── 21. Maximum in Matrix │ │ ├── main.c │ │ ├── max.c │ │ └── max.h │ ├── 210. SQL Database.c │ ├── 210. SQL Database_v2.c │ ├── 215. Chicken, Rabbit and Crab.cpp │ ├── 218. Sum of Selections.cpp │ ├── 22. Negative and Positive │ │ ├── main.cpp │ │ ├── posneg.c │ │ └── posneg.h │ ├── 220. Sentence Count.cpp │ ├── 221. Typesetting.cpp │ ├── 222. Bookshelf.c │ ├── 222. Bookshelf_v2.c │ ├── 223. Tiles.c │ ├── 224. Supervisors and Subordinates │ │ ├── Makefile │ │ ├── employee.c │ │ ├── employee.h │ │ └── main.c │ ├── 225. Friends.c │ ├── 225. Friends_fast.c │ ├── 225. Friends_simple.c │ ├── 23. Maximum in Pointer Array │ │ ├── main.c │ │ ├── max.c │ │ └── max.h │ ├── 230. The Knapsack.c │ ├── 232. What day is Today.cpp │ ├── 234. Factorization.cpp │ ├── 235. Pachingo.cpp │ ├── 236. Least Common Multiplier.c │ ├── 236. Least Common Multiplier.cpp │ ├── 238. Subset Sum.c │ ├── 239. Daily Expense.c │ ├── 24. Vowel, Consonant, and Digit.cpp │ ├── 240. Square, Diamond, and Rectangle.c │ ├── 241. Origin in Quadrilateral.c │ ├── 242. Three Circles.cpp │ ├── 243. House of Mirrors.cpp │ ├── 244. Lottery.cpp │ ├── 248. Mine Field.c │ ├── 249. Company.c │ ├── 251. Company, Again │ │ ├── employee.c │ │ ├── employee.h │ │ └── main.c │ ├── 253. Time Object │ │ ├── main.c │ │ ├── time.c │ │ └── time.h │ ├── 256. One Count Sorting.c │ ├── 260. String Fusion.cpp │ ├── 261. Puzzle Equation.c │ ├── 262. Maximum Number of Consecutive 1's.cpp │ ├── 262. Maximum Number of Consecutive 1's_v2.c │ ├── 264. Byte Frequency Count.c │ ├── 265. Minimum Containing Box.cpp │ ├── 266. Edit Eistance.c │ ├── 267. Traveling Distance.c │ ├── 269. Memory Allocation │ │ ├── main.c │ │ ├── memory.c │ │ └── memory.h │ ├── 27. Surface Area and Volume of a Box.cpp │ ├── 270. A Simple BASIC Interpreter.cpp │ ├── 271. Multiply Polynomials.cpp │ ├── 275. Set │ │ ├── main.c │ │ ├── set.c │ │ └── set.h │ ├── 276. Abbreviation.cpp │ ├── 277. Digits.cpp │ ├── 28. Sum of Squares with Recursion.cpp │ ├── 281. Number of 1s.cpp │ ├── 282. Maximum number of 1s for long long.c │ ├── 283. Chicken, Rabbit, and Crab in a Cage.cpp │ ├── 29. From One Corner to Another.c │ ├── 3. Print Two Numbers.cpp │ ├── 30. From One Corner to Another with Obstacles.cpp │ ├── 32. Longest Double Palindrome.c │ ├── 33. Intersections.cpp │ ├── 36. Calender.cpp │ ├── 37. Metal value │ │ ├── main.cpp │ │ ├── value.c │ │ └── value.h │ ├── 38. Witchcraft.c │ ├── 4. Add Three Numbers.cpp │ ├── 44. Library Fine │ │ ├── book.h │ │ ├── date.h │ │ ├── library.c │ │ ├── main.c │ │ └── main2.c │ ├── 46. Play with Words.c │ ├── 46. Play with Words.cpp │ ├── 46. Play with Words_v2.c │ ├── 46. Play with Words_v3.c │ ├── 47. Play with Words Too_v2.c │ ├── 47. Play with Words Too_v4.c │ ├── 47. Play with Words, Too.c │ ├── 49. Sum, Maximum and Minimum.cpp │ ├── 5. Surface Area and Volume.cpp │ ├── 50. Overlap Area.cpp │ ├── 50000. Alternating Sequence.c │ ├── 50001. Vehicle.c │ ├── 50002. Game of Life.cpp │ ├── 50003. Turtle Graphics.cpp │ ├── 50004. 15 - puzzle.cpp │ ├── 50005. Pattern Recognotion.c │ ├── 50006. Expression │ │ ├── eval.c │ │ ├── eval.h │ │ ├── gen.cpp │ │ └── main.c │ ├── 50007. Yard, Foot, and Inch │ │ ├── length.c │ │ ├── length.h │ │ └── main.c │ ├── 50008. Pointer Chasing │ │ ├── main.c │ │ ├── pin.cpp │ │ ├── setmatrix.c │ │ └── setmatrix.h │ ├── 50009. Snake Order │ │ ├── main.c │ │ ├── snake.c │ │ └── snake.h │ ├── 50010. Word Editor_brute.c │ ├── 50010. Word Editor_online.c │ ├── 50010. Word Editor_online_compress.c │ ├── 50011. Spell Checker_brute.c │ ├── 50011. Spell Checker_da_trie.c │ ├── 50011. Spell Checker_trie.c │ ├── 50012. Block Mover │ │ ├── blockmover.c │ │ ├── blockmover.h │ │ ├── blockmover2.c │ │ ├── blockmover3.c │ │ ├── blockmover4.c │ │ └── main.c │ ├── 50013. Bingo │ │ ├── bingo.c │ │ ├── bingo.h │ │ ├── bingo2.c │ │ ├── bingo3.c │ │ └── main.c │ ├── 50014. Selection │ │ ├── 50014.-Selection.c │ │ ├── main.c │ │ ├── subset.c │ │ ├── subset.h │ │ ├── subsetv2.c │ │ └── subsetv3.c │ ├── 50015. Words │ │ ├── main.c │ │ ├── main_fast.c │ │ ├── main_fast2.c │ │ └── main_v2.c │ ├── 50016. 15-Puzzle │ │ ├── main.c │ │ ├── main_origin.c │ │ ├── main_origin2.c │ │ └── main_origin3.c │ ├── 50017. Expression │ │ ├── expression.c │ │ ├── expression.h │ │ ├── expression2.c │ │ └── main.c │ ├── 50018. Map │ │ ├── main.c │ │ ├── maintest.c │ │ ├── map.c │ │ └── map.h │ ├── 50019. Medicine │ │ ├── main.c │ │ ├── maintest.c │ │ ├── medicine.c │ │ └── medicine.h │ ├── 50020. Generic Index Array │ │ ├── array.c │ │ ├── array.h │ │ ├── main.c │ │ └── main_test.cpp │ ├── 50021. Polynomial │ │ ├── main.c │ │ ├── maintest.c │ │ ├── polynomial.c │ │ ├── polynomial.h │ │ └── polynomial2.c │ ├── 50022. Matrix │ │ ├── main.c │ │ ├── main2.c │ │ └── special.c │ ├── 50023. Combination Lock │ │ ├── locker.c │ │ ├── locker.h │ │ ├── main.c │ │ └── maintest.c │ ├── 50024. Grade │ │ └── main.c │ ├── 50025. Independent People │ │ ├── main.c │ │ └── special.c │ ├── 50026. A Better Word Count │ │ ├── 50026. A Better Word Count.c │ │ ├── 50026. A Better Word Count_v2.c │ │ └── main.c │ ├── 50027. File Sorter │ │ ├── main.c │ │ └── main_strcpy.c │ ├── 50034. See-saw │ │ ├── main-advanced.cpp │ │ └── main-basic.cpp │ ├── 50036. Pick up Numbers.c │ ├── 50039. Inner Product and Outer Product.cpp │ ├── 50040. Magic Number.cpp │ ├── 50041. Mountains.c │ ├── 50042. Highest Mountain.c │ ├── 50043. Mosaics.c │ ├── 50044. Caterpillar in Panic │ │ ├── 50044. Caterpillar in Panic.c │ │ ├── 50044. Caterpillar in Panic_bit.c │ │ ├── 50044. Caterpillar in Panic_char.c │ │ ├── 50044. Caterpillar in Panic_char_io.c │ │ └── 50044. Caterpillar in Panic_dd.c │ ├── 50045. Mines and Black Holes.c │ ├── 50047. Game of Cell │ │ ├── Makefile │ │ ├── game_of_cell.c │ │ ├── game_of_cell.h │ │ ├── game_of_cell_unloop.c │ │ └── main.c │ ├── 50049. Matrix Multiplication │ │ ├── main.c │ │ ├── matrix_multiplication.c │ │ └── matrix_multiplication.h │ ├── 50051. Valid License Plates.c │ ├── 50052. K-means Algorithm.c │ ├── 50053. The Most Popular Author.c │ ├── 50054. A Hash Table.c │ ├── 50055. Waiting Time at Supermarket.c │ ├── 50056. How Much Money Can You Make.c │ ├── 50057. Consecutive 0's and 1's.cpp │ ├── 50058. Word Selection │ │ ├── 0.in │ │ ├── 0.out │ │ ├── Makefile │ │ ├── gen.sh │ │ └── main.c │ ├── 50059. Binary Representation.cpp │ ├── 50060. Traveling Salesman_dp.c │ ├── 50061. Donation.c │ ├── 50062. Merge Book Information │ │ ├── 0.in │ │ ├── 0.out │ │ ├── Makefile │ │ ├── book.c │ │ ├── book.h │ │ ├── gen.sh │ │ └── main.c │ ├── 50063. Friend Distance │ │ ├── README.md │ │ ├── main-linked-list-bitwise.c │ │ └── main-linked-list.c │ ├── 50064. Merge Sort │ │ ├── main-opt.c │ │ └── main.c │ ├── 50065. Move the Car │ │ ├── Makefile │ │ ├── car.c │ │ ├── car.h │ │ └── main.c │ ├── 50066. Hotel Manager │ │ ├── Makefile │ │ ├── main.c │ │ ├── reservation.c │ │ └── reservation.h │ ├── 50067. Walk in a File.c │ ├── 50068. Tree Traversal │ │ ├── Makefile │ │ ├── main.c │ │ ├── tree.c │ │ └── tree.h │ ├── 50069. Hangman │ │ ├── Makefile │ │ ├── hangman.c │ │ ├── hangman.h │ │ ├── main.c │ │ ├── ta_hangman.c │ │ └── ta_main.c │ ├── 50070. Elevator │ │ ├── Makefile │ │ ├── elevator.c │ │ ├── elevator.h │ │ ├── main.c │ │ ├── ta_elevator.c │ │ └── ta_main.c │ ├── 50071. Attraction Order │ │ ├── attraction.h │ │ └── main.cpp │ ├── 50072. City Grids │ │ ├── City_Grid.c │ │ └── City_Grid.h │ ├── 50073. Wealth Histogram.cpp │ ├── 50074. Tree Statistics │ │ ├── Makefile │ │ ├── main.c │ │ ├── trace.c │ │ └── trace.h │ ├── 50078. Parallelogram.c │ ├── 50079. Apple Pile.cpp │ ├── 50080. Scan The Blocks.cpp │ ├── 50081. Robot Simulation.c │ ├── 50082. Two Machines.c │ ├── 50083. Buckets and Balls.c │ ├── 50084. Machines and Jobs.cpp │ ├── 50085. Tank Simulation.cpp │ ├── 50086. Students and Party.c │ ├── 50087. See-Saw.c │ ├── 50088. Mountain Travelers │ │ ├── main.c │ │ ├── travel.c │ │ └── travel.h │ ├── 50089. Buckets and Balls, Again │ │ ├── main.c │ │ ├── placement.c │ │ └── placement.h │ ├── 50090. Count Pointers │ │ ├── Makefile │ │ ├── count.c │ │ ├── count.h │ │ ├── main.c │ │ └── main2.c │ ├── 50091. Two-level Table │ │ ├── Makefile │ │ ├── constructTable.c │ │ ├── constructTable.h │ │ └── main.c │ ├── 50092. Pointer Chasing │ │ ├── 0.in │ │ ├── chasing.c │ │ ├── chasing.h │ │ └── main.c │ ├── 50093. String Substitution.c │ ├── 50094. Word Learning.c │ ├── 50095. Lines of Words.c │ ├── 50096. Hamming Distance.c │ ├── 50097. Conveyor Belt │ │ ├── Makefile │ │ ├── main.c │ │ ├── transmission.c │ │ └── transmission.h │ ├── 50098. Disjoint Clubs.c │ ├── 50099. Seesaw Chandelier.cpp │ ├── 50100. Impact Factor │ │ ├── compute.c │ │ ├── compute.h │ │ └── main.c │ ├── 50101. Component and Parts │ │ ├── componentPart.c │ │ ├── componentPart.h │ │ └── main.c │ ├── 50102. File Addition.c │ ├── 50103. File Mirroring and Shifting.c │ ├── 50104. Students and Clubs.c │ ├── 50105. Seesaw Chandelier Tree │ │ ├── construct.c │ │ ├── construct.h │ │ └── main.c │ ├── 50106. Construct a Binary Search Tree │ │ ├── construct.c │ │ ├── construct.h │ │ └── main.c │ ├── 50107. Height and Weight.cpp │ ├── 50108. Sequence to Binary Tree │ │ ├── construct.c │ │ ├── construct.h │ │ └── main.c │ ├── 50109. H-index.c │ ├── 50110. Tree Operations │ │ ├── main1.c │ │ ├── main2.c │ │ ├── main3.c │ │ ├── operations.c │ │ └── operations.h │ ├── 50111. Hamiltonian Cycle.cpp │ ├── 50112. Apartments and Friends.c │ ├── 50113. Ternary Search Tree │ │ ├── construct.c │ │ ├── construct.h │ │ └── main.c │ ├── 50114. Simple Polygon.cpp │ ├── 50115. Depth of Water.cpp │ ├── 50116. Play with digits.cpp │ ├── 50117. Divide a number.cpp │ ├── 50118. Connect Integers.cpp │ ├── 50119. Paper Scissors Stone.cpp │ ├── 50120. Consecutive 1's.cpp │ ├── 50121. Push Stones.cpp │ ├── 50122. Knights' Tour.cpp │ ├── 50123. Magic Square.cpp │ ├── 50124. Knights Tour with Functions │ │ ├── main.c │ │ ├── main_nextMove.c │ │ ├── main_validMoveNum.c │ │ ├── nextMove.c │ │ ├── nextMove.h │ │ ├── validMoveNum.c │ │ └── validMoveNum.h │ ├── 50125. Consecutive 1s with Function │ │ ├── findLength.c │ │ ├── findLength.h │ │ ├── main.c │ │ └── main_test.c │ ├── 50126. Line Up Numbers │ │ ├── main.c │ │ └── merge.c │ ├── 50127. Connect the Numbers │ │ ├── constructPointerArray.c │ │ ├── constructPointerArray.h │ │ └── main.c │ ├── 50128. Split a List │ │ ├── main.c │ │ ├── split.c │ │ └── split.h │ ├── 53. Permutation.c │ ├── 54. Number of Appearance.cpp │ ├── 55. The Robots.cpp │ ├── 58. Lakes.c │ ├── 6. Print Three Digits.cpp │ ├── 65. Expression Tree.c │ ├── 7. 3, 5, and 7.cpp │ ├── 72. Fill the Array │ │ ├── fill_array.c │ │ ├── fill_array.h │ │ └── main.c │ ├── 73. 3n, 3n + 1, and 3n + 2.cpp │ ├── 74. Mn, Mn + 1, ... Mn + M - 1.cpp │ ├── 75. Count Letters.cpp │ ├── 76. Strings.c │ ├── 77. Get the i-th Element in a List │ │ ├── main.c │ │ ├── node.c │ │ └── node.h │ ├── 8. Triangle Length.cpp │ ├── 80. Triangle.c │ ├── 85. Sort Dates.c │ ├── 87. Merge Lists │ │ ├── main.c │ │ ├── node.c │ │ └── node.h │ ├── 88. AB Numbers.cpp │ ├── 89. File Encoding.c │ ├── 9. Score of an Integer.c │ ├── 93. Heap │ │ ├── heap.c │ │ ├── heap.h │ │ └── main.c │ ├── 94. Tree Traversal.c │ ├── 96. Cow and House.cpp │ ├── 97. Bicycle and Parking Lot.cpp │ ├── 98. Food Ingredients in Common.cpp │ ├── 99. Bingo.cpp │ ├── GPGPU-Programming │ │ ├── 0.in │ │ ├── Makefile │ │ ├── PoissonImage │ │ │ ├── lab3 │ │ │ │ ├── Makefile │ │ │ │ ├── diff-img.py │ │ │ │ ├── lab3.h │ │ │ │ ├── lab3.pdf │ │ │ │ ├── lab3_test.zip │ │ │ │ ├── main.cu │ │ │ │ ├── ouput.jpg │ │ │ │ ├── pgm.cpp │ │ │ │ ├── pgm.h │ │ │ │ └── ppm2jpg.py │ │ │ └── utils │ │ │ │ ├── SyncedMemory.h │ │ │ │ └── Timer.h │ │ ├── README.md │ │ ├── main.cu │ │ └── pin.cpp │ └── fastgdb │ │ ├── Makefile │ │ ├── main.c │ │ └── test.in ├── KHCode │ ├── README.md │ └── 第四題 瘦身遊戲.cpp ├── LeetCodeOJ │ ├── 228. Summary Ranges.cpp │ ├── 1 - Two Sum │ │ └── 1 - Two Sum.cpp │ ├── 10 - Regular Expression Matching │ │ └── 10 - Regular Expression Matching.cpp │ ├── 101 - Symmetric Tree │ │ └── LeetCode - Symmetric Tree.cpp │ ├── 102 - Binary Tree Level Order Traversal.cpp │ ├── 103. Binary Tree Zigzag Level Order Traversal.cpp │ ├── 105. Construct Binary Tree from Preorder and Inorder Traversal.cpp │ ├── 106. Construct Binary Tree from Inorder and Postorder Traversal.cpp │ ├── 107 - Binary Tree Level Order Traversal II │ │ └── Binary Tree Level Order Traversal II.cpp │ ├── 108. Convert Sorted Array to Binary Search Tree.cpp │ ├── 109. Convert Sorted List to Binary Search Tree.cpp │ ├── 11 - Container With Most Water │ │ └── 11 - Container With Most Water.cpp │ ├── 110 - Balanced Binary Tree.cpp │ ├── 112. Path Sum.cpp │ ├── 113. Path Sum II.cpp │ ├── 114. Flatten Binary Tree to Linked List.cpp │ ├── 115 - Distinct Subsequences.cpp │ ├── 117 - Populating Next Right Pointers in Each Node II.cpp │ ├── 118 - Pascal's Triangle.cpp │ ├── 119. Pascal's Triangle II.cpp │ ├── 12 - Integer to Roman │ │ └── 12 - Integer to Roman.cpp │ ├── 120. Triangle.cpp │ ├── 121 - Best Time to Buy and Sell Stock.cpp │ ├── 122 - Best Time to Buy and Sell Stock II.cpp │ ├── 123 - Best Time to Buy and Sell Stock III.cpp │ ├── 124 - Binary Tree Maximum Path Sum.cpp │ ├── 125. Valid Palindrome.cpp │ ├── 126 - Word Ladder II.cpp │ ├── 127. Word Ladder.cpp │ ├── 129. Sum Root to Leaf Numbers.cpp │ ├── 13 - Roman to Integer │ │ └── 13 - Roman to Integer.cpp │ ├── 130. Surrounded Regions.cpp │ ├── 131. Palindrome Partitioning.cpp │ ├── 132. Palindrome Partitioning II.cpp │ ├── 133. Clone Graph.cpp │ ├── 134 - Gas Station │ │ └── Gas Station Total.cpp │ ├── 137. Single Number II.cpp │ ├── 138. Copy List with Random Pointer.cpp │ ├── 14 - Longest Common Prefix │ │ └── 14 - Longest Common Prefix.cpp │ ├── 141 - Linked List Cycle │ │ └── LeetCode - Linked List Cycle.cpp │ ├── 142 - Linked List Cycle II │ │ └── LeetCode - Linked List Cycle II.cpp │ ├── 143. Reorder List.cpp │ ├── 144. Binary Tree Preorder Traversal.cpp │ ├── 145. Binary Tree Postorder Traversal.cpp │ ├── 146 - LRU Cache.cpp │ ├── 147. Insertion Sort List.cpp │ ├── 148. Sort List.cpp │ ├── 15 - 3Sum │ │ └── 15 - 3Sum.cpp │ ├── 150. Evaluate Reverse Polish Notation.cpp │ ├── 151. Reverse Words in a String.cpp │ ├── 155. Min Stack.cpp │ ├── 16 - 3Sum Closest │ │ └── 16 - 3Sum Closest.cpp │ ├── 160. Intersection of Two Linked Lists.cpp │ ├── 162. Find Peak Element.cpp │ ├── 165. Compare Version Numbers.cpp │ ├── 166. Fraction to Recurring Decimal.cpp │ ├── 167. Two Sum II - Input array is sorted.cpp │ ├── 168. Excel Sheet Column Title.cpp │ ├── 169 - Majority Element │ │ └── Majority Element.cpp │ ├── 17 - Letter Combinations of a Phone Number │ │ └── 17 - Letter Combinations of a Phone Number.cpp │ ├── 171 - Excel Sheet Column Number.cpp │ ├── 172. Factorial Trailing Zeroes.c │ ├── 173. Binary Search Tree Iterator.cpp │ ├── 175. Combine Two Tables.sql │ ├── 176. Second Highest Salary.sql │ ├── 18 - 4Sum │ │ └── 18 - 4Sum.cpp │ ├── 187 - Repeated DNA Sequences │ │ └── Repeated DNA Sequences.cpp │ ├── 189. Rotate Array.cpp │ ├── 19 - Remove Nth Node From End of List │ │ └── 19 - Remove Nth Node From End of List.cpp │ ├── 190. Reverse Bits.cpp │ ├── 191 - Number of 1 Bits.cpp │ ├── 192. Word Frequency.sh │ ├── 193. Valid Phone Numbers.sh │ ├── 194. Transpose File.bash │ ├── 195. Tenth Line.bash │ ├── 198 - House Robber.cpp │ ├── 199. Binary Tree Right Side View.cpp │ ├── 2 - Add Two Numbers │ │ └── 2 - Add Two Numbers.cpp │ ├── 20 - Valid Parentheses │ │ └── 20 - Valid Parentheses.cpp │ ├── 200. Number of Islands.cpp │ ├── 201. Bitwise AND of Numbers Range.cpp │ ├── 203. Remove Linked List Elements.cpp │ ├── 204 - Count Primes │ │ ├── Count Primes.cpp │ │ └── Count Primes.py │ ├── 205 - Isomorphic Strings │ │ ├── Isomorphic Strings.cpp │ │ └── Isomorphic Strings.py │ ├── 206 - Reverse Linked List │ │ ├── Reverse Linked List.cpp │ │ └── Reverse Linked List.py │ ├── 207. Course Schedule.cpp │ ├── 208. Implement Trie (Prefix Tree).cpp │ ├── 209. Minimum Size Subarray Sum.cpp │ ├── 21 - Merge Two Sorted Lists.cpp │ ├── 210. Course Schedule II.cpp │ ├── 211. Add and Search Word - Data structure design.cpp │ ├── 212. Word Search II.cpp │ ├── 213. House Robber II.cpp │ ├── 214 - Shortest Palindrome.cpp │ ├── 217 - Contains Duplicate │ │ ├── Contains Duplicate.cpp │ │ └── Contains Duplicate.py │ ├── 218 - The Skyline Problem.cpp │ ├── 219 - Contains Duplicate II.cpp │ ├── 22 - Generate Parentheses.cpp │ ├── 220 - Contains Duplicate III.cpp │ ├── 222 - Count Complete Tree Nodes.cpp │ ├── 223 - Rectangle Area.cpp │ ├── 224. Basic Calculator.cpp │ ├── 225. Implement Stack using Queues │ │ ├── MyStack.java │ │ └── opt │ │ │ └── MyStack.java │ ├── 227. Basic Calculator II.cpp │ ├── 229. Majority Element II.cpp │ ├── 23 - Merge k Sorted Lists.cpp │ ├── 230. Kth Smallest Element in a BST.cpp │ ├── 231 - Power of Two.cpp │ ├── 232. Implement Queue using Stacks.js │ ├── 233 - Number of Digit One.cpp │ ├── 234. Palindrome Linked List │ │ └── Solution.java │ ├── 236. Lowest Common Ancestor of a Binary Tree.cpp │ ├── 237 - Delete Node in a Linked List.cpp │ ├── 238. Product of Array Except Self.cpp │ ├── 239 - Sliding Window Maximum.cpp │ ├── 24 - Swap Nodes in Pairs.cpp │ ├── 240. Search a 2D Matrix II.cpp │ ├── 241. Different Ways to Add Parentheses.cpp │ ├── 242 - Valid Anagram.cpp │ ├── 25 - Reverse Nodes in k-Group.cpp │ ├── 257. Binary Tree Paths.cpp │ ├── 26 - Remove Duplicates from Sorted Array.cpp │ ├── 260. Single Number III.cpp │ ├── 263 - Ugly Number.cpp │ ├── 264. Ugly Number II.cpp │ ├── 268. Missing Number.cpp │ ├── 27 - Remove Element.cpp │ ├── 278 - First Bad Version.cpp │ ├── 279 - Perfect Squares.cpp │ ├── 28 - Implement strStr().cpp │ ├── 29 - Divide Two Integers.cpp │ ├── 290. Word Pattern │ │ └── Solution.java │ ├── 292 - Nim Game.cpp │ ├── 297 - Serialize and Deserialize Binary Tree.cpp │ ├── 299. Bulls and Cows │ │ └── Solution.java │ ├── 3 - Longest Substring Without Repeating Characters │ │ └── 3 - Longest Substring Without Repeating Characters.cpp │ ├── 30 - Substring with Concatenation of All Words.cpp │ ├── 301 - Remove Invalid Parentheses.cpp │ ├── 31 - Next Permutation.cpp │ ├── 315 - Count of Smaller Numbers After Self.cpp │ ├── 32 - Longest Valid Parentheses.cpp │ ├── 321. Create Maximum Number.cpp │ ├── 326 - Power of Three.cpp │ ├── 327. Count of Range Sum-v2.cpp │ ├── 327. Count of Range Sum.cpp │ ├── 329. Longest Increasing Path in a Matrix │ │ └── Solution.java │ ├── 33 - Search in Rotated Sorted Array.cpp │ ├── 330 - Patching Array.cpp │ ├── 334 - Reverse String.cpp │ ├── 335. Self Crossing.cpp │ ├── 336. Palindrome Pairs.cpp │ ├── 338. Counting Bits.cpp │ ├── 34 - Search for a Range.cpp │ ├── 342 - Power of Four.cpp │ ├── 345 - Reverse Vowels of a String.cpp │ ├── 347. Top K Frequent Elements.cpp │ ├── 349 - Intersection of Two Arrays.cpp │ ├── 35 - Search Insert Position.cpp │ ├── 350 - Intersection of Two Arrays II.cpp │ ├── 352. Data Stream as Disjoint Intervals.cpp │ ├── 354 - Russian Doll Envelopes.cpp │ ├── 357. Count Numbers with Unique Digits.cpp │ ├── 36 - Valid Sudoku.cpp │ ├── 363 - Max Sum of Rectangle No Larger Than K.cpp │ ├── 365. Water and Jug Problem.cpp │ ├── 367. Valid Perfect Square.cpp │ ├── 37 - Sudoku Solver.cpp │ ├── 371 - Sum of Two Integers.cpp │ ├── 374. Guess Number Higher or Lower.cpp │ ├── 38 - Count and Say.cpp │ ├── 380. Insert Delete GetRandom O(1).cpp │ ├── 383 - Ransom Note.cpp │ ├── 387 - First Unique Character in a String.cpp │ ├── 389 - Find the Difference.cpp │ ├── 39 - Combination Sum.cpp │ ├── 391 - Perfect Rectangle.cpp │ ├── 396. Rotate Function.cpp │ ├── 397. Integer Replacement.cpp │ ├── 4 - Median of Two Sorted Arrays │ │ └── Median of Two Sorted Arrays.cpp │ ├── 40 - Combination Sum II.cpp │ ├── 401. Binary Watch │ │ └── Solution.java │ ├── 403. Frog Jump.cpp │ ├── 404. Sum of Left Leaves │ │ └── Solution.java │ ├── 405. Convert a Number to Hexadecimal │ │ └── Solution.java │ ├── 407. Trapping Rain Water II.cpp │ ├── 409. Longest Palindrome │ │ └── Solution.java │ ├── 41 - First Missing Positive.cpp │ ├── 42 - Trapping Rain Water.cpp │ ├── 43 - Multiply Strings.cpp │ ├── 43 - Multiply Strings[v2].cpp │ ├── 432. All Oone Data Structure.cpp │ ├── 44 - Wildcard Matching.cpp │ ├── 442. Find All Duplicates in an Array.cpp │ ├── 45 - Jump Game II.cpp │ ├── 46 - Permutations.cpp │ ├── 460. LFU Cache.cpp │ ├── 461. Hamming Distance.cpp │ ├── 462. Minimum Moves to Equal Array Elements II.cpp │ ├── 463. Island Perimeter.cpp │ ├── 464. Can I Win.cpp │ ├── 465. Optimal Account Balancing.cpp │ ├── 47 - Permutations II.cpp │ ├── 47 - Permutations II[v2].cpp │ ├── 475. Heaters.cpp │ ├── 48 - Rotate Image.cpp │ ├── 483. Smallest Good Base.cpp │ ├── 49 - Anagrams.cpp │ ├── 493. Reverse Pairs.cpp │ ├── 5 - Longest Palindromic Substring │ │ └── 5 - Longest Palindromic Substring.cpp │ ├── 50 - Pow(x, n).cpp │ ├── 504. Base 7.cpp │ ├── 506. Relative Ranks.cpp │ ├── 51 - N-Queens.cpp │ ├── 513. Find Bottom Left Tree Value.cpp │ ├── 517. Super Washing Machines.cpp │ ├── 52 - N-Queens II.cpp │ ├── 53 - Maximum Subarray.cpp │ ├── 530. Minimum Absolute Difference in BST.cpp │ ├── 532. K-diff Pairs in an Array.cpp │ ├── 537. Complex Number Multiplication.cpp │ ├── 538. Convert BST to Greater Tree.cpp │ ├── 539. Minimum Time Difference.cpp │ ├── 54 - Spiral Matrix.cpp │ ├── 541. Reverse String II.cpp │ ├── 542. 01 Matrix.cpp │ ├── 543. Diameter of Binary Tree.cpp │ ├── 55 - Jump Game.cpp │ ├── 563. Binary Tree Tilt.cpp │ ├── 564. Find the Closest Palindrome.cpp │ ├── 57 - Insert Interval.cpp │ ├── 58 - Length of Last Word.cpp │ ├── 59 - Spiral Matrix II.cpp │ ├── 593. Valid Square.java │ ├── 594. Longest Harmonious Subsequence.cpp │ ├── 598. Range Addition II.cpp │ ├── 599. Minimum Index Sum of Two Lists.cpp │ ├── 6 - ZigZag Conversion │ │ └── 6 - ZigZag Conversion.cpp │ ├── 60 - Permutation Sequence.cpp │ ├── 600. Non-negative Integers without Consecutive Ones.cpp │ ├── 601. Human Traffic of Stadium.sql │ ├── 605. Can Place Flowers.cpp │ ├── 606. Construct String from Binary Tree.cpp │ ├── 609. Find Duplicate File in System.cpp │ ├── 61 - Rotate List.cpp │ ├── 611. Valid Triangle Number.cpp │ ├── 617. Merge Two Binary Trees.cpp │ ├── 62 - Unique Paths.cpp │ ├── 621. Task Scheduler.cpp │ ├── 623. Add One Row to Tree.cpp │ ├── 624. Maximum Distance in Arrays.cpp │ ├── 625. Minimum Factorization.cpp │ ├── 628. Maximum Product of Three Numbers.cpp │ ├── 629. K Inverse Pairs Array.cpp │ ├── 63 - Unique Paths II.cpp │ ├── 630. Course Schedule III.cpp │ ├── 632. Smallest Range.cpp │ ├── 639. Decode Ways II.cpp │ ├── 64 - Minimum Path Sum.cpp │ ├── 640. Solve the Equation.java │ ├── 643. Maximum Average Subarray I.java │ ├── 644. Maximum Average Subarray II.java │ ├── 65 - Valid Number.cpp │ ├── 66 - Plus One.cpp │ ├── 663. Equal Tree Partition.cpp │ ├── 67 - Add Binary.cpp │ ├── 68 - Text Justification.cpp │ ├── 682. Baseball Game.cpp │ ├── 686. Repeated String Match.cpp │ ├── 687. Longest Univalue Path.cpp │ ├── 688. Knight Probability in Chessboard.cpp │ ├── 689. Maximum Sum of 3 Non-Overlapping Subarrays.cpp │ ├── 69 - Sqrt(x).cpp │ ├── 690. Employee Importance.cpp │ ├── 691. Stickers to Spell Word.cpp │ ├── 693. Binary Number with Alternating Bits.java │ ├── 695. Max Area of Island.java │ ├── 7 - Reverse Integer │ │ └── 7 - Reverse Integer.cpp │ ├── 70 - Climbing Stairs.cpp │ ├── 71. Simplify Path.cpp │ ├── 72 - Edit Distance.cpp │ ├── 73. Set Matrix Zeroes.cpp │ ├── 75. Sort Colors.cpp │ ├── 76 - Minimum Window Substring.cpp │ ├── 761 - Special Binary String.cpp │ ├── 778. Swim in Rising Water.cpp │ ├── 78. Subsets.cpp │ ├── 79. Word Search.cpp │ ├── 8 - String to Integer (atoi) │ │ └── 8 - String to Integer (atoi).cpp │ ├── 80. Remove Duplicates from Sorted Array II.cpp │ ├── 81. Search in Rotated Sorted Array II.cpp │ ├── 82. Remove Duplicates from Sorted List II.cpp │ ├── 83 - Remove Duplicates from Sorted List.cpp │ ├── 84 - Largest Rectangle in Histogram.cpp │ ├── 85 - Maximal Rectangle.cpp │ ├── 86. Partition List.cpp │ ├── 87 - Scramble String.cpp │ ├── 88. Merge Sorted Array │ │ └── Solution.java │ ├── 89. Gray Code.cpp │ ├── 9 - Palindrome Number │ │ └── 9 - Palindrome Number.cpp │ ├── 90. Subsets II.cpp │ ├── 91. Decode Ways.cpp │ ├── 92. Reverse Linked List II.cpp │ ├── 93. Restore IP Addresses.cpp │ ├── 94. Binary Tree Inorder Traversal.cpp │ ├── 95. Unique Binary Search Trees II.cpp │ ├── 96. Unique Binary Search Trees.cpp │ ├── 97 - Interleaving String.cpp │ └── 99 - Recover Binary Search Tree │ │ └── Recover Binary Search Tree.cpp ├── POJ │ ├── POJ - 1160-opt.cpp │ ├── POJ - 1160.cpp │ ├── POJ - 1785 Binary Search Heap Construction.cpp │ ├── POJ 1002 - 487-3279.cpp │ ├── POJ 1151 - Atlantis.cpp │ ├── POJ 1166.cpp │ ├── POJ 3225 - Help with Intervals.cpp │ └── [POJ] 2489 - Line Segments.cpp ├── Paiza │ ├── README.md │ ├── paiza - 「猫耳セット」ゲットチャレンジ!.cpp │ ├── paiza - メイド服セット.cpp │ ├── paiza - 猫セット.cpp │ ├── paiza- D030 都市名は何.cpp │ ├── paiza- D031 分から秒へ.cpp │ └── paiza- Vol.7「水着」ゲットチャレンジ.cpp ├── SPOJ │ ├── SPOJ - DSUBSEQ - Distinct Subsequences.cpp │ ├── SPOJ - DYNALCA - Dynamic LCA.cpp │ ├── SPOJ - LCS2 - Longest Common Substring II.cpp │ ├── SPOJ - QTREE6 - Query on a tree VI.cpp │ ├── SPOJ - QTREE6 - Query on a tree VI[LCT_clear].cpp │ ├── SPOJ - QTREE6 - Query on a tree VI[component_LCT_clear].cpp │ └── SPOJ - QTREE7 - Query on a tree VII.cpp ├── TIOJ │ └── TIOJ - 1475.cpp ├── Toph │ └── SUSTInterUPC2017 │ │ └── Toph - Counting Triplets.c ├── ZEROJUDGE │ ├── A174.c │ ├── BST(Descartes).cpp │ ├── a007.cpp │ ├── a048. 函數增減性.cpp │ ├── a054. 電話客服中心.cpp │ ├── a055. POJ 2182 Lost Cows.cpp │ ├── a056. NOI1999 Day1.2.釘子和小球.cpp │ ├── a058. MOD3.cpp │ ├── a059. 完全平方和.cpp │ ├── a063. SGU 187. Twist and whirl - want to cheat[splay_tree].cpp │ ├── a063.cpp │ ├── a064. SPOJ 4580.ABCDEF.cpp │ ├── a065. 提款卡密碼.cpp │ ├── a066. HNOI2002 營業額統計.cpp │ ├── a067. NOI1999 Day1.3.生日蛋糕.cpp │ ├── a068. E. 看動畫 加強版.cpp │ ├── a069. NOI1999 Day2.1.棋盤分割.cpp │ ├── a070. NOI1999 Day2.2.最優連通子集.cpp │ ├── a071. NOI1999 Day2.3. 內存分配.cpp │ ├── a072. NOI2010 Day1.2. 超級鋼琴.cpp │ ├── a073. POJ2832 How Many Pairs.cpp │ ├── a074. TOI2011 第五題 畫作問題.cpp │ ├── a077. NOI2000 Day1.1.瓷片項鍊.cpp │ ├── a080. NOI2000 Day2.1.單詞查找樹.cpp │ ├── a081. NOI2000 Day2.2.青蛙過河.cpp │ ├── a083. NOI2001 Day1.1.食物鏈.cpp │ ├── a084. NOI2001 Day1.2.反正切函數的應用.cpp │ ├── a094. NOI2003 Day1.1.木棒遊戲.cpp │ ├── a097. PARKET.cpp │ ├── a104. 排序.cpp │ ├── a111. 12149 - Feynman.cpp │ ├── a121. 質數又來囉.cpp │ ├── a126.cpp │ ├── a128. Sharing Chocolate.cpp │ ├── a128. Sharing ChocolateII.cpp │ ├── a130. 12015 - Google is Feeling Lucky.cpp │ ├── a131. 739 - Soundex Indexing.cpp │ ├── a132 10931 - Parity.cpp │ ├── a133. 10066 - The Twin Towers.cpp │ ├── a134. 948 - Fibonaccimal Base.cpp │ ├── a135. 12250 - Language Detection.cpp │ ├── a141. 柏森想要學妹!!!.cpp │ ├── a144. 整數分拆.cpp │ ├── a146. Sliding Window.cpp │ ├── a147. Print it all.cpp │ ├── a148. You Cannot Pass.cpp │ ├── a149. 乘乘樂.cpp │ ├── a158. 11827 - Maximum GCD.cpp │ ├── a159. 11743 - Credit Check.cpp │ ├── a160. 柏森想要下棋!!!.cpp │ ├── a164. 區間最大連續和.cpp │ ├── a165. Magic number.cpp │ ├── a168. 3901 - Editor.cpp │ ├── a169 POJ 3225 Help with Intervals.cpp │ ├── a170. 天才的小明.cpp │ ├── a171. 打印樹.cpp │ ├── a174. 上帝玩不玩骰子?.cpp │ ├── a175. 撒旦玩不玩骰子?(AVL).cpp │ ├── a175. 撒旦玩不玩骰子?.cpp │ ├── a176. Battle!.cpp │ ├── a181. 逆逆向思考[DAtrie].cpp │ ├── a186. Three-Heap Wythoff's Game.cpp │ ├── a190. 公元2317. 手觸之役.cpp │ ├── a191. 在世界遙遠的彼方(test).cpp │ ├── a191. 在世界遙遠的彼方.cpp │ ├── a192. 接線問題.cpp │ ├── a194. 死亡 FLAG.cpp │ ├── a194. 死亡 FLAG2.cpp │ ├── a206. 學長的鬼腳圖 (二).cpp │ ├── a207 Exact cover.cpp │ ├── a207.Exact cover(DL).cpp │ ├── a207.cpp │ ├── a209. 街友的寒冷夜晚.cpp │ ├── a215. 明明愛數數.cpp │ ├── a216. 數數愛明明.cpp │ ├── a217. caps lock的災難.cpp │ ├── a218. 連猴子都會的小case.cpp │ ├── a219. 限制排列.cpp │ ├── a223. 10298 - Power Strings.cpp │ ├── a224. 明明愛明明.cpp │ ├── a225. 明明愛排列.cpp │ ├── a227. 三龍杯 - 河內之塔.cpp │ ├── a228. 就少一個插座用很不方便.cpp │ ├── a229. 括號匹配問題.cpp │ ├── a233. 排序法~~~ 挑戰極限.cpp │ ├── a240. 第一題. 1 17 小數第 n 位.cpp │ ├── a241. 第二題 1 x 是有限小數.cpp │ ├── a242. 第三題. 絕對值總和的最小值.cpp │ ├── a243. 第四題. 點燈遊戲.cpp │ ├── a245. 王老師愛兩條線.cpp │ ├── a247. Fermat vs. Pythagoras.cpp │ ├── a248. 新手訓練 ~ 陣列應用.cpp │ ├── a249. Q679. Dropping Balls.cpp │ ├── a251. 假費波那契數.cpp │ ├── a252. Another LCS.cpp │ ├── a253. 王老先生的磨菇田.cpp │ ├── a254. 畢氏‧三角‧製造.cpp │ ├── a259. Q10917. A Walk Through the Forest.cpp │ ├── a263. 日期差幾天.c │ ├── a263. 日期差幾天.cpp │ ├── a264. 骰子疊疊樂.cpp │ ├── a265. 紅黑樹.pp.c │ ├── a266. 校內賽.cpp │ ├── a267. 太空梭的油箱.cpp │ ├── a270. 爬樓梯有益身心健康.cpp │ ├── a271. 彩色蘿蔔.cpp │ ├── a272. 猥瑣罐頭下樓梯.cpp │ ├── a273. 小朋友下樓梯.cpp │ ├── a274. 友誼的數字.cpp │ ├── a275. 字串變變變.cpp │ ├── a276. 又分糖果囉.cpp │ ├── a277. 高手寂寞.cpp │ ├── a279. 分糖果囉.cpp │ ├── a280. 小朋友上樓梯.cpp │ ├── a281.cpp │ ├── a282. 認真念書.cpp │ ├── a285. 女兒國婚友社.cpp │ ├── a286. 難道這就是命中注定.cpp │ ├── a290. 新手訓練系列 ~ 圖論.cpp │ ├── a291. nAnB problem.cpp │ ├── a293 A 百年國慶.cpp │ ├── a299. NOIP2011 Day1.1.cpp │ ├── a300.NOIP2011 Day1.2.cpp │ ├── a302. NOIP2011 Day2.1.cpp │ ├── a307.cpp │ ├── a308. NOIP2011 2.cpp │ ├── a310. NOIP2011 3.cpp │ ├── a311. NOIP2011 4.cpp │ ├── a311. NOIP2011 4[no_recursion].cpp │ ├── a313 B 街道國.cpp │ ├── a314. C 導覽型機器人.cpp │ ├── a315 D 滿州國皇帝之璽.cpp │ ├── a316 E 守塔新武器.cpp │ ├── a317.cpp │ ├── a322.cpp │ ├── a329. 貪婪的Tony.cpp │ ├── a331. K-th Number.cpp │ ├── a331[v3].cpp │ ├── a348. 1. 貪食蛇.cpp │ ├── a349. 2. 指令解譯器.cpp │ ├── a350. 3. 緞帶的購買問題.cpp │ ├── a361. A. 賓果遊戲.cpp │ ├── a362. 1. 搬雕像.cpp │ ├── a363. B. 分組競賽.c │ ├── a364. 2. 神秘的進位問題.cpp │ ├── a365. 3. 新井字遊戲.cpp │ ├── a367. C. 圈圈國.cpp │ ├── a370.cpp │ ├── a373. 賽車.cpp │ ├── a374. 5. 股票趨勢[2DRMQ].cpp │ ├── a392 NOI2011 Day2.1.cpp │ ├── a410. 解方程.c │ ├── a414. 位元運算之進位篇.cpp │ ├── a415. 4. 捷運路線.cpp │ ├── a415. 4.cpp │ ├── a416. 6. 城市馬拉松.cpp │ ├── a416. 6.cpp │ ├── a417. 螺旋矩陣.c │ ├── a433. A. 三角形金磚.c │ ├── a443. 10720 - Graph Construction.cpp │ ├── a445. 新手訓練系列- 我的朋友很少.c │ ├── a449. 國王烏龜的接駁車.c │ ├── a450. 棒棒糖比身高.cpp │ ├── a453. TOI2010 第一題.一元二次方程式.c │ ├── a454. TOI2010 第二題.專案時程.cpp │ ├── a455. TOI2010 第四題商品特賣問題.cpp │ ├── a456. 子集合.c │ ├── a457 TOI2010 第五題餐廳評鑑.cpp │ ├── a457.cpp │ ├── a458. Beats of the Angel 加強版.cpp │ ├── a458.cpp │ ├── a459. An Easy Language.cpp │ ├── a462. Beats of the Angel.cpp │ ├── a471. givesum~連續整數的固定和.cpp │ ├── a473. 外援計畫.c │ ├── a480. 導彈攔截系統.cpp │ ├── a481. 樹的維護.cpp │ ├── a484. 美麗風景遞增之路.c │ ├── a484. 美麗風景遞增之路.cpp │ ├── a484. 美麗風景遞增之路2.c │ ├── a484. 美麗風景遞增之路3.c │ ├── a505 B. T-primes.cpp │ ├── a506. 走投無路的國王.cpp │ ├── a513. 最大值.cpp │ ├── a517. Freak大危機!!!.cpp │ ├── a521. 12414 - Calculating Yuan Fen.cpp │ ├── a524. 手機之謎.cpp │ ├── a528. 大數排序.cpp │ ├── a532 MathSol.cpp │ ├── a532. 奇特的數列.cpp │ ├── a533. IOI2004 Day1.1.阿特米斯.cpp │ ├── a534. IOI2008 Day2.1.花園問題.cpp │ ├── a534.cpp │ ├── a541 字典[Trie].cpp │ ├── a541. 字典.cpp │ ├── a542. 行列式det(A).cpp │ ├── a545. Stressful.cpp │ ├── a546. A - Perfect Permutation.cpp │ ├── a552. 模型.cpp │ ├── a561. 內存不足.cpp │ ├── a562.cpp │ ├── a563_dfs_test.cpp │ ├── a564.cpp │ ├── a565.cpp │ ├── a567. 死線排程.cpp │ ├── a568. ISSC 2012- problem B.cpp │ ├── a569. 2-絕對遞增的質數子數列.cpp │ ├── a570.cpp │ ├── a571. 海港碼頭.cpp │ ├── a572 IS&MS.cpp │ ├── a576. No Cheating.cpp │ ├── a576.cpp │ ├── a577-opt.cpp │ ├── a577.cpp │ ├── a580. 輻射擴散.cpp │ ├── a583. 1. 座位距離計算問題.cpp │ ├── a584. 2. 親等關係.cpp │ ├── a586. 4. 捷運計價問題.cpp │ ├── a588 A. 神秘的地圖.cpp │ ├── a589. B. 老蚯的寶物.cpp │ ├── a590.cpp │ ├── a594 G. 電梯向上.cpp │ ├── a605. 交錯和.cpp │ ├── a621 1. Powers of Two.cpp │ ├── a622 2. Vertical Printing.cpp │ ├── a623 3. Combination.cpp │ ├── a624 4. Password Analyzer.cpp │ ├── a625 5. Overhanging Cards.cpp │ ├── a626 6. Prime Directive.cpp │ ├── a627 7. RAID Sizer.cpp │ ├── a628 8. Number Spiral.cpp │ ├── a629 9. Musical Intervals.cpp │ ├── a630 10. New Math.cpp │ ├── a631 11. LED Decoder.cpp │ ├── a632 12. Domino Rally.cpp │ ├── a633 13. Not Quite OCR.c │ ├── a633 13. Not Quite OCR.cpp │ ├── a634 14. Knights Path.cpp │ ├── a638 Closest-pair problem.cpp │ ├── a638. Closest-pair problem.cpp │ ├── a639. DNA Density.cpp │ ├── a640.cpp │ ├── a641.cpp │ ├── a646. 小民買糖果.cpp │ ├── a646.cpp │ ├── a647. 投資專家.cpp │ ├── a648 A - Red Areas.cpp │ ├── a648 A - Red Areas2.cpp │ ├── a648. A - Red Areas3.cpp │ ├── a651.cpp │ ├── a656.cpp │ ├── a666.cpp │ ├── a666[v2].cpp │ ├── a686. 蝸牛往上爬.cpp │ ├── a687. 軍方密碼.cpp │ ├── a695. [NOIP 2012 普及組] 1.cpp │ ├── a696. [NOIP 2012 普及組] 2.cpp │ ├── a697. [NOIP 2012 普及組] 3.cpp │ ├── a698. [NOIP 2012 普及組] 4.cpp │ ├── a699. 1. 國王的煩惱.cpp │ ├── a700. 2. 國王的麥子.cpp │ ├── a739. 道路架設.cpp │ ├── a742. 福州地鐵.cpp │ ├── a760. 四、世界末日預言.cpp │ ├── a761. 罐頭的記憶體.cpp │ ├── a761. 罐頭的記憶體[v2].cpp │ ├── a761. 罐頭的記憶體[v3].cpp │ ├── a780. 2. Magnificent Views.cpp │ ├── a781. 3. Checkerboard.cpp │ ├── a782. 4. Redundant Acronym Syndrome Syndrome.cpp │ ├── a783. 5. Houston Skyline.cpp │ ├── a784. 6. PERLs Before Swine.cpp │ ├── a785. 7. It's All Greek To Me.cpp │ ├── a786. 8. 1337 XL8T0RZ.cpp │ ├── a787. 9. Mirror to the Stars.cpp │ ├── a788. 10. uPhone Two-Point Zoom.cpp │ ├── a789. 11. Diffusion Limited Aggregation.cpp │ ├── a791. 13. Least Recently Used.cpp │ ├── a792. 14. Six Degrees of Kevin Bacon.cpp │ ├── a796. F.房布的地圖.cpp │ ├── a797. A.房布回台北.cpp │ ├── a814. 2013高雄市能力競賽高中組 5. 卡片遊戲.cpp │ ├── a815. 2013高雄市能力競賽高中組 6. 蜜蜂飛行.cpp │ ├── a817. 1.圈叉連線數問題.cpp │ ├── a818. 101學年度桃竹苗區資訊學科能力競賽 1.解碼問題.cpp │ ├── a819. 101學年度桃竹苗區資訊學科能力競賽 2.小三資優數學.cpp │ ├── a820. 101學年度桃竹苗區資訊學科能力競賽 3.小精靈吃數字.cpp │ ├── a821. 101學年度桃竹苗區資訊學科能力競賽 4.王者之路.cpp │ ├── a824. 100學年度桃竹苗區資訊學科能力競賽 2.藏寶問題.cpp │ ├── a825. 100學年度桃竹苗區資訊學科能力競賽 3.小四數學.cpp │ ├── a828. 間隔數 number.cpp │ ├── a829. 主機排程 schedule.cpp │ ├── a830. 超級細菌 bacteria.cpp │ ├── a831. 地磚擺放.cpp │ ├── a832. 數列變換.cpp │ ├── a833. 沙漠旅行.cpp │ ├── a834. 卡牌遊戲.cpp │ ├── a845. B.奶罐小馬買東西.cpp │ ├── a861. 1. Secure the Perimeter.cpp │ ├── a862. 2. My Dear Friend VIR.cpp │ ├── a863. 3. Happy Numbers.cpp │ ├── a864. 4. Stellar Classification.cpp │ ├── a865. 5. Greek Numerals.cpp │ ├── a866. 6. Product Review Site.cpp │ ├── a867. 7. Minelayer.cpp │ ├── a868. 8. St. Ives.cpp │ ├── a869. 9. Letter Scramble.cpp │ ├── a870. 10. List Maker.cpp │ ├── a871. 11. Museum Area.cpp │ ├── a872. 12. Abbreviation Expansion.cpp │ ├── a873. 13. Tetra Square.cpp │ ├── a874. 14. Trace Route.cpp │ ├── a875. 15. Asteroid Mining Robot.cpp │ ├── a876. 16. Ken-igma.cpp │ ├── a879. A.君不見 黃色小鴨水上漂.cpp │ ├── a881. C.什麼?油漆有毒?.cpp │ ├── a882. B. 我灰灰的橡皮鴨是個恐怖的危機.cpp │ ├── a883. D.好忙好忙.cpp │ ├── a915.cpp │ ├── a962. 新專輯.cpp │ ├── a981.cpp │ ├── a982. 迷宮問題#1 │ │ └── Main.java │ ├── a982.cpp │ ├── a994. 10325 - The Lottery[ver_builtin].cpp │ ├── b016. D. Mitlab.cpp │ ├── b018. F. 營地.cpp │ ├── b021. C. 畢業演奏.cpp │ ├── b043. B. 踩地雷回來了.cpp │ ├── b046. E. 智慧型單字查詢.cpp │ ├── b054. 第五題:浮點數的表示式.cpp │ ├── b058. 3. 關鍵邏輯閘.cpp │ ├── b060. 5. 快遞服務.cpp │ ├── b061. 6. 糊塗情報員.cpp │ ├── b064. 3. 下界函數.cpp │ ├── b064. 3.cpp │ ├── b065. 4. 滿漢全席.cpp │ ├── b066. 5. 六芒星棋遊戲:先還是後比較有利?.cpp │ ├── b067. 6. 下棋問題.cpp │ ├── b069. A. 千里傳情.cpp │ ├── b071. C. 排水系統.cpp │ ├── b090. D. 正直DE.cpp │ ├── b091 E. 核心字串.cpp │ ├── b094. H. 數字拼盤.cpp │ ├── b099. E. 聯立多元一次方程式.cpp │ ├── b109. 2. IC 板檢測.cpp │ ├── b113. 6. 線性系統求解.cpp │ ├── b125. 積木的拼疊問題Bricks.cpp │ ├── b134. NOIP2006 1.cpp │ ├── b134. NOIP2006 1.能量项链.cpp │ ├── b135. NOIP2006 2.cpp │ ├── b143. NOIP2005 2..cpp │ ├── b144. NOIP2005 3.cpp │ ├── b145. NOIP2005_4.cpp │ ├── b147. NOIP2004 2.cpp │ ├── b149. NOIP2004 4.cpp │ ├── b153 NOIP.cpp │ ├── b163. NOIP2007 2.字符串的展開.cpp │ ├── b164. NOIP2007 3.cpp │ ├── b165. NOIP2007 4.cpp │ ├── b173.cpp │ ├── b174. 旅遊規則.cpp │ ├── b174.cpp │ ├── b177. 山景 Skyline.cpp │ ├── b178. 遊輪 Boat.cpp │ ├── b180. 1. 遊園接駁車.cpp │ ├── b190. 97七區資訊學科5(改編).cpp │ ├── b199. D. 郵輪.cpp │ ├── b199.cpp │ ├── b200. E. 幼稚的災難.cpp │ ├── b201. F. 國家.cpp │ ├── b207. F. 世界盃.cpp │ ├── b208 A. 蜜蜂的約會.cpp │ ├── b212. E. 不景氣的年代.cpp │ ├── b213. F. 數列.cpp │ ├── b215. H. 幼稚國王的行程.cpp │ ├── b217. 2. 系統.cpp │ ├── b220. 5. 蛋糕師傅的煩惱.cpp │ ├── b221. 6. 耕者有其田.cpp │ ├── b237. CSAPC09 迷宮任務.cpp │ ├── b238. A. 腹黑、傲嬌.cpp │ ├── b239. B. 電腦出租公司.cpp │ ├── b240. C. 瘋狂博士的小型圖書館.cpp │ ├── b242. E. 檸檬汽水傳說.cpp │ ├── b245. A. 草地上的松鼠.cpp │ ├── b254. C. 矢量星球.cpp │ ├── b255. D. 跑跑卡丁車.cpp │ ├── b256 E. 大風吹.cpp │ ├── b256. E. 大風吹[kd].cpp │ ├── b258. G. 愛有等差.cpp │ ├── b259. H. 補習班的報名熱.cpp │ ├── b275. 數三角形.cpp │ ├── b278.cpp │ ├── b288.cpp │ ├── b291.cpp │ ├── b297.cpp │ ├── b298.cpp │ ├── b299.cpp │ ├── b300.cpp │ ├── b301.cpp │ ├── b302.cpp │ ├── b305.cpp │ ├── b306.cpp │ ├── b307.cpp │ ├── b308.cpp │ ├── b309.cpp │ ├── b310.cpp │ ├── b311.cpp │ ├── b312.cpp │ ├── b314.cpp │ ├── b315.cpp │ ├── b316.cpp │ ├── b317.cpp │ ├── b325. 人格分裂.cpp │ ├── b325. 人格分裂[DC].cpp │ ├── b330. NOIP2013 1.cpp │ ├── b331. NOIP2013 2.cpp │ ├── b332. NOIP2013 3.cpp │ ├── b333. NOIP2013 4.cpp │ ├── b345. NOIP2013 Day1.2.火柴排隊.cpp │ ├── b352. 相似.cpp │ ├── b354. 藥水.cpp │ ├── b367. 翻轉世界.cpp │ ├── b369. 福州19中.cpp │ ├── b373. 福州19中.cpp │ ├── b374. 福州19中.cpp │ ├── b405 │ │ ├── b405[v2].cpp │ │ ├── pin.cpp │ │ ├── temp.cpp │ │ ├── test.cpp │ │ └── test2.cpp │ ├── b411 │ │ ├── b411.cpp │ │ ├── b411[test].cpp │ │ ├── b411[v2].cpp │ │ └── pin.cpp │ ├── b412.cpp │ ├── b414.cpp │ ├── b415.cpp │ ├── b419. 公平的硬幣 .cpp │ ├── b419. 公平的硬幣[integral].cpp │ ├── b422. Colorful Life and Monochromatic Life.cpp │ ├── b423. 魔術橡皮擦.cpp │ ├── b424. 圖片縮放.cpp │ ├── b425. 抽菸動作 請勿模仿.cpp │ ├── b426. 宇宙光明體.cpp │ ├── b427. 漸層色彩.cpp │ ├── b434. 圖片的梯度.cpp │ ├── b436. 圖片的梯度再進化.cpp │ ├── b448. 哈哈鏡.cpp │ ├── b452. 傻傻地幫人數錢錢.cpp │ ├── b455. 請輸出這張圖片的RGB數值 簡易.cpp │ ├── b456 影像壓縮 困難 │ │ ├── b456.png │ │ ├── b456_base64.cpp │ │ ├── b456_base64v2.cpp │ │ ├── b456_generate.cpp │ │ ├── img2txt.py │ │ └── in.txt │ ├── b458. 非黑即白.cpp │ ├── b459. 圖片的直方圖.cpp │ ├── b460. 判若黑白.cpp │ ├── b461. Fibonacci 之夢.cpp │ ├── b461. Fibonacci 之夢[unstable].cpp │ ├── b462. 圖片亮度調整原理深度剖析.cpp │ ├── b463. 輕輕鬆鬆學會用曲線調整色彩.cpp │ ├── b464. 聲音時間長度.cpp │ ├── b465. Sine Wave.cpp │ ├── b466. 簡譜演奏程式.cpp │ ├── b467. NOIP2013 Day1.1.轉圈遊戲.cpp │ ├── b468. NOIP2013 Day1.3.貨車運輸.cpp │ ├── b469. NOIP2013 Day2.1.積木大賽.cpp │ ├── b470. NOIP2013 Day2.2.花匠.cpp │ ├── b470. NOIP2013 Day2.2.花匠v2.cpp │ ├── b476. NOIP2014 Day2.2.尋找道路.cpp │ ├── b478. 有限間距最長共同子序列.cpp │ ├── b479. 音名.cpp │ ├── b480. 合聲.cpp │ ├── b481. 音色(一).cpp │ ├── b482. 音色(二).cpp │ ├── b483. 史蒂芙的觀察日記[less].cpp │ ├── b484. 音色(三).cpp │ ├── b485. 音高.cpp │ ├── b485. 音高v2.cpp │ ├── b486. 變態史考古.cpp │ ├── b488. Clipped Sine Wave.cpp │ ├── b489. NOIP2000 1.進制轉換.cpp │ ├── b490. NOIP2000 4.方格取數.cpp │ ├── b513. 判斷質數-商競103.cpp │ ├── b514- 解二元一次聯立方程式之根-商競103.cpp │ ├── b515. 摩斯電碼-商競103.cpp │ ├── b516. 凱撒密碼-商競103.cpp │ ├── b519. 撲克牌遊戲-商競103.cpp │ ├── b520. 樂透-商競103.cpp │ ├── b523. 先別管這個了,你聽過安麗嗎.cpp │ ├── b524. 先別管這個了,你聽過yee嗎.cpp │ ├── b525. 先別管這個了,你聽過turtlebee嗎.cpp │ ├── b526. 先別管這個了,你聽過微鼓勵嗎.cpp │ ├── b537. 分數運算-1.cpp │ ├── b538. 分數運算-2.cpp │ ├── b557. 直角三角形.cpp │ ├── b558. 求數列第 n 項.cpp │ ├── b572. 忘了東西的小傑.cpp │ ├── b578. 一個角.cpp │ ├── b580. 一條蛇.cpp │ ├── b581. 一串加.cpp │ ├── b582. 一個窩.cpp │ ├── b583. 一個環.cpp │ ├── b584. 過橋問題.cpp │ ├── b585. 來開派對唷.cpp │ ├── b586. 文章壓縮.cpp │ ├── b588. 撿石頭遊戲.cpp │ ├── b589. 超級馬拉松賽.cpp │ ├── b681.cpp │ ├── b682.cpp │ ├── b683. 高中組第三題-環形偵測.cpp │ ├── b684. 高中組第四題-狗狗遊戲.cpp │ ├── b685. 高中組第五題-課堂抽籤.cpp │ ├── b841. 104北二5.骨牌遊戲.cpp │ ├── b855. 一封信.cpp │ ├── b858. 橘子.c │ ├── b960.cpp │ ├── b992.cpp │ ├── c073. The Blocks Problem.cpp │ ├── c082. Mutant Flatworld Expolrers.cpp │ ├── c083. Roman Roulette.cpp │ ├── c093. Counterfeit Dollar.cpp │ ├── c095. False coin.cpp │ ├── c099. Climbing Trees.cpp │ ├── c100. Unidirectional TSP.cpp │ ├── c102. Software CRC.cpp │ ├── c103. The Psychic Poker Player.cpp │ ├── c108. Joseph.cpp │ ├── c109. Cipher.cpp │ ├── c110. Packets.cpp │ ├── c112. Optimal Array Multiplication Sequence.cpp │ ├── c125. Frogger.cpp │ ├── c173. 快速最長共同子字串.cpp │ ├── c176. TYVJ1681. 中中暴RP.cpp │ ├── d042. 11420 - Chest of Drawers.cpp │ ├── d088. 127 - Accordian Patience.cpp │ ├── d089. 145 - Gondwanaland Telecom.cpp │ ├── d094. 478 - Points in Figures. Rectangles and Circles, and Triangles.cpp │ ├── d104. NOIP 2008 2.cpp │ ├── d105. NOIP 2008 3.cpp │ ├── d110. NOIP 2008 4.cpp │ ├── d196. 11341 - Term Strategy.cpp │ ├── d210. 老問題.cpp │ ├── d222. Q11127 Triple-Free Binary Strings.cpp │ ├── d223. Q10137 The Trip.cpp │ ├── d228. kill man.cpp │ ├── d232. 97北縣賽-3-資料統計問題.cpp │ ├── d242. Q481. What Goes Up.cpp │ ├── d244. 一堆石頭.cpp │ ├── d246 Stone Game.cpp │ ├── d249. 94北縣賽-1-心意相通的指數(Match).cpp │ ├── d252. 94北縣賽-4-字串處理問題 (String).cpp │ ├── d268. 11578 - Situp Benches.cpp │ ├── d270. 11581 - Grid Successors.cpp │ ├── d271. 11582 - Colossal Fibonacci Numbers!.cpp │ ├── d272. 11583 - Alien DNA.cpp │ ├── d273. 11584 - Partitioning by Palindromes.cpp │ ├── d285. 727 Postfix Expression.cpp │ ├── d287. 古怪的數學家.cpp │ ├── d297. 算算算....Lunatic.cpp │ ├── d313.cpp │ ├── d315. sigma sinkx.cpp │ ├── d316. Quadrangle!.cpp │ ├── d343. 10578 - The Game of 31.cpp │ ├── d347. 847 - A Multiplication Game.cpp │ ├── d367. 我要最小值——.cpp │ ├── d367. 我要最小值——加強版.cpp │ ├── d368. 10196 - Check the Check.cpp │ ├── d370. 2. 盤中飧.cpp │ ├── d371. 3. Huffman 編碼中的編碼效能問題.cpp │ ├── d372. 4. 合法執行路徑問題.cpp │ ├── d372. 4. 合法執行路徑問題2.cpp │ ├── d374. 6. X^2 ≡ 1 (mod M),cpp.c │ ├── d374. 6. X^2 ≡ 1 (mod M).cpp │ ├── d411. 算了好久.......cpp │ ├── d416. 投影最大值.cpp │ ├── d429. 第一題. 社團分組 (club).cpp │ ├── d430. 第二題. 計算字數 (count).cpp │ ├── d449. 垃圾信件.cpp │ ├── d451. 科學記號.cpp │ ├── d454.cpp │ ├── d476. 區間查詢.cpp │ ├── d476.cpp │ ├── d476[整體二分].cpp │ ├── d477.cpp │ ├── d481. 矩陣乘法.cpp │ ├── d485. 我愛偶數.cpp │ ├── d522. 走棋盤.cpp │ ├── d524. Q10599 - Robots(II).c │ ├── d524. Q10599 - Robots(II).cpp │ ├── d526. Binary Search Tree (BST).cpp │ ├── d537. 第四題.染色遊戲.cpp │ ├── d546 3. 剪多邊形(molding).cpp │ ├── d547. 4. 秘密(secrets).cpp │ ├── d548. 5. 購物網站(web).cpp │ ├── d552 Asphalt's Problem.cpp │ ├── d578. 小涵的積木.cpp │ ├── d589. B. 水之國的奇幻冒險.cpp │ ├── d598. 3. 尋寶問題(DP).cpp │ ├── d598. 3. 尋寶問題.cpp │ ├── d609. Necklace.cpp │ ├── d618. 有限狀態自動機(Finite State Machine).cpp │ ├── d624. 燈泡問題.cpp │ ├── d627. 我.我.我...這麼弱 -跨年倒數.cpp │ ├── d632. C and S.cpp │ ├── d633. 幼稚王國的麥田圖騰.cpp │ ├── d639. 企鵝村三兄弟penguin.cpp │ ├── d643. 勞動的符咒.cpp │ ├── d644. 壞脾氣小小皮.cpp │ ├── d645. 輪下亡魂.cpp │ ├── d646. I2A的陰謀.cpp │ ├── d650 好多骰子.cpp │ ├── d652. 貪婪之糊.cpp │ ├── d655. 許胖公仔.cpp │ ├── d664. 11725 - Colorful Board.cpp │ ├── d667. 820 - Internet Bandwidth.cpp │ ├── d681. BinaryCount.cpp │ ├── d686. Q10003. Cutting Sticks.cpp │ ├── d692. 矢量星球 - 快速版本.cpp │ ├── d705. 判斷質數(二).cpp │ ├── d717. 好多因子.cpp │ ├── d718. Waiting In Line.cpp │ ├── d729. 10593 - Kites.cpp │ ├── d730. 升旗典禮 ——加強版.cpp │ ├── d731. 11039 - Building designing.cpp │ ├── d733. 11329 - Curious Fleas.cpp │ ├── d739. 最少路徑.cpp │ ├── d750. 11321 - Sort! Sort!! and Sort!!!.cpp │ ├── d751. Q10049-Self-describing Sequence.cpp │ ├── d757. 11195 - Another n-Queen Problem.cpp │ ├── d760. 10330 - Power Transmission.cpp │ ├── d766. 11149 - Power of Matrix.cpp │ ├── d767. 血緣關係.cpp │ ├── d776. NOIP2009 4.cpp │ ├── d780. NOIP2009 4.靶形數獨cpp.c │ ├── d781. 195 - Anagram.cpp │ ├── d798 區域MAX.cpp │ ├── d798.c │ ├── d799. 區間求和 (樹狀數組).cpp │ ├── d799. 區間求和.cpp │ ├── d800.cpp │ ├── d801.cpp │ ├── d806. 水火不容.cpp │ ├── d807. 方方.cpp │ ├── d808. 黑暗部落.cpp │ ├── d809. 黑暗土地.cpp │ ├── d810. 大朋友下樓梯.cpp │ ├── d814. 187. Twist and whirl - want to cheat.cpp │ ├── d815. 水火不容II.cpp │ ├── d816. 不要再晃啦!.cpp │ ├── d825. 隔熱紙.cpp │ ├── d826. 暗門.cpp │ ├── d827. 買鉛筆.cpp │ ├── d828. Pascal's triangle's secret (II).cpp │ ├── d830. 暗門2.cpp │ ├── d831. 畢業旅行.cpp │ ├── d832. 遊樂場 DP.cpp │ ├── d832. 遊樂場.cpp │ ├── d832. 遊樂場DP.cpp │ ├── d835. NOIP2003 1.乒乓球.cpp │ ├── d836. NOIP2003 2.cpp │ ├── d837. NOIP2003 3.棧.cpp │ ├── d838. NOIP2003 4.麥森數.cpp │ ├── d841. NOIP2003 3.cpp │ ├── d842. NOIP2003 4.cpp │ ├── d844 NOIP2002 3.cpp │ ├── d849 NOIP2002 4.cpp │ ├── d850. NOIP2002 1.均分紙牌.cpp │ ├── d851. NOIP2002 2.cpp │ ├── d854. NOIP2001 1.一元三次方程求解.cpp │ ├── d855. NOIP2001 2.數的劃分.cpp │ ├── d856. NOIP2001 3.cpp │ ├── d858. NOIP2001 4.cpp │ ├── d859. NOIP2001 1.數的計算.cpp │ ├── d860. NOIP2001 2.最大公約數與最小公倍數問題.cpp │ ├── d861. NOIP2001 3.求先序排列.cpp │ ├── d862. NOIP2001 4.裝箱問題.cpp │ ├── d868. NOIP2000 1.計算器的改良.cpp │ ├── d870 NOIP2000 3.cpp │ ├── d870 NOIP2000 3.乘积最大.cpp │ ├── d871. NOIP2000 4.單詞接龍.cpp │ ├── d872. 過橋問題.cpp │ ├── d873. Q465. Overflow.cpp │ ├── d875. 4. 窮舉的階梯問題.cpp │ ├── d879. Q10911. Forming Quiz teams.cpp │ ├── d881. 作業苦多.cpp │ ├── d885. NOIP2007 1.統計數字 番外篇.cpp │ ├── d887. 1.山脈種類(chain).cpp │ ├── d889. 2.黑傑克(jack).cpp │ ├── d890. 3.禮物分配(gift).cpp │ ├── d892. NOIP2010 1.機器翻譯.cpp │ ├── d893. NOIP2010 2.cpp │ ├── d898. Q10128 Queue.cpp │ ├── d899. NOIP2010 1.數字統計.cpp │ ├── d903. 數學達人.cpp │ ├── d904. 換零錢.cpp │ ├── d906. 2. 排座位問題.cpp │ ├── d907. 3. 城市走法計數.cpp │ ├── d908. 4. 最佳路徑.cpp │ ├── d913. 1. 彈珠配置.cpp │ ├── d914. 2. 圍棋資料庫比對.cpp │ ├── d915. 3. 洗街車路線問題.cpp │ ├── d916. 4. 高空煙火時間限制.cpp │ ├── d917. 5. 貼磁磚.cpp │ ├── d918. 6. 雨量趨勢.cpp │ ├── d919. 最大面積.cpp │ ├── d920. 智慧盤.cpp │ ├── d923. 規律.cpp │ ├── d925. 平均高度.cpp │ ├── d929. A. 迴文.cpp │ ├── d930. B. 薑餅部落的危機.cpp │ ├── d931. C. 幽靈特務報到.cpp │ ├── d932. D. 流水不腐.cpp │ ├── d933. E. 傘兵.cpp │ ├── d934. F. Lisa 的圍巾.cpp │ ├── d944. B. 卡卡跑丁車.cpp │ ├── d946. D. 阿克圖洛斯‧蒙斯克的煩惱.cpp │ ├── d950. A. 帕斯卡三角形.cpp │ ├── d951. B. 好吃的麵包.cpp │ ├── d954. E. 得分.cpp │ ├── d956. G. 失落的維京戰機.cpp │ ├── d961. A. 耶誕老人到你家.cpp │ ├── d963. C. 小丹尼與英文單字.cpp │ ├── d965. E. 阿達的冒險.cpp │ ├── d978. 最長回文字串.cpp │ ├── d980. 11479 - Is this the easiest problem.cpp │ ├── d984. 棄保效應.cpp │ ├── d985. Gran Turismo 5.cpp │ ├── e003. 樹形避難所 I │ │ ├── main-brute.cpp │ │ ├── main.cpp │ │ ├── pin-large.cpp │ │ └── pin.cpp │ ├── e004. 樹形避難所 II │ │ ├── main-brute.cpp │ │ ├── main.cpp │ │ └── pin.cpp │ ├── e021. 史蒂芙的泡泡 │ │ ├── brute-complete.cpp │ │ ├── brute-partial.cpp │ │ ├── main-loc.cpp │ │ ├── main-pbds-rope.cpp │ │ ├── main-pbds.cpp │ │ ├── main-rec.cpp │ │ ├── main-short.cpp │ │ ├── main-splay.cpp │ │ ├── main.cpp │ │ ├── pin-explosion-dyn.cpp │ │ ├── pin-explosion.cpp │ │ ├── pin-snowflake.cpp │ │ ├── pin.cpp │ │ └── polygon.c │ ├── e861 │ │ ├── brute.cpp │ │ ├── e861.cpp │ │ ├── e861_gc.cpp │ │ └── pin.cpp │ ├── e863 │ │ ├── brute.cpp │ │ ├── e863.cpp │ │ ├── e863_gc.cpp │ │ ├── e863_opt.cpp │ │ └── pin.cpp │ ├── f315. 4. 低地距離.c │ └── submit.py └── ZOJ │ └── ZJOI 2012 DAY2 災難.cpp ├── README.md ├── UVaTestData ├── v1in │ ├── 100.in │ ├── 101.in │ ├── 102.in │ ├── 103.in │ ├── 104.in │ ├── 106.in │ ├── 109.in │ ├── 110.in │ ├── 115.in │ ├── 116.in │ ├── 118.in │ ├── 121.in │ ├── 122.in │ ├── 123.in │ ├── 125.in │ ├── 126.in │ ├── 128.in │ ├── 129.in │ ├── 130.in │ ├── 131.in │ ├── 132.in │ ├── 134.in │ ├── 137.in │ ├── 143.in │ ├── 149.in │ ├── 150.in │ ├── 157.in │ ├── 158.in │ ├── 162.in │ ├── 163.in │ ├── 164.in │ ├── 165.in │ ├── 167.in │ ├── 169.in │ ├── 171.in │ ├── 172.in │ ├── 173.in │ ├── 174.in │ ├── 175.in │ ├── 176.in │ ├── 180.in │ ├── 181.in │ ├── 182.in │ ├── 184.in │ ├── 185.in │ ├── 189.in │ ├── 192.in │ ├── 193.in │ ├── 194.in │ ├── 196.in │ ├── 198.in │ └── 199.in ├── v1out │ ├── 100.out │ ├── 101.out │ ├── 102.out │ ├── 103.out │ ├── 104.out │ ├── 105.out │ ├── 106.out │ ├── 107.out │ ├── 108.out │ ├── 109.out │ ├── 110.out │ ├── 111.out │ ├── 112.out │ ├── 113.out │ ├── 114.out │ ├── 115.out │ ├── 116.out │ ├── 117.out │ ├── 118.out │ ├── 119.out │ ├── 120.out │ ├── 121.out │ ├── 122.out │ ├── 123.out │ ├── 124.out │ ├── 125.out │ ├── 126.out │ ├── 127.out │ ├── 128.out │ ├── 129.out │ ├── 130.out │ ├── 131.out │ ├── 132.out │ ├── 133.out │ ├── 134.out │ ├── 135.out │ ├── 136.out │ ├── 137.out │ ├── 138.out │ ├── 139.out │ ├── 140.out │ ├── 141.out │ ├── 142.out │ ├── 143.out │ ├── 144.out │ ├── 145.out │ ├── 146.out │ ├── 147.out │ ├── 148.out │ ├── 149.out │ ├── 150.out │ ├── 151.out │ ├── 152.out │ ├── 153.out │ ├── 154.out │ ├── 155.out │ ├── 156.out │ ├── 157.out │ ├── 158.out │ ├── 159.out │ ├── 160.out │ ├── 161.out │ ├── 162.out │ ├── 163.out │ ├── 164.out │ ├── 165.out │ ├── 166.out │ ├── 167.out │ ├── 168.out │ ├── 169.out │ ├── 170.out │ ├── 171.out │ ├── 172.out │ ├── 173.out │ ├── 174.out │ ├── 175.out │ ├── 176.out │ ├── 177.out │ ├── 178.out │ ├── 179.out │ ├── 180.out │ ├── 181.out │ ├── 182.out │ ├── 183.out │ ├── 184.out │ ├── 185.out │ ├── 186.out │ ├── 187.out │ ├── 188.out │ ├── 189.out │ ├── 190.out │ ├── 191.out │ ├── 192.out │ ├── 194.out │ ├── 195.out │ ├── 196.out │ ├── 197.out │ ├── 198.out │ └── 199.out ├── v2in │ ├── 270.in │ ├── 271.in │ ├── 272.in │ ├── 273.in │ ├── 274.in │ ├── 275.in │ ├── 276.in │ └── 277.in ├── v2out │ ├── 270.out │ ├── 271.out │ ├── 272.out │ ├── 273.out │ ├── 274.out │ ├── 275.out │ ├── 276.out │ └── 277.out ├── v3in │ ├── 300.IN │ ├── 301.IN │ ├── 302.IN │ ├── 303.IN │ ├── 304.IN │ ├── 305.IN │ ├── 306.IN │ ├── 307.IN │ ├── 308.in │ ├── 309.in │ ├── 310.in │ ├── 311.in │ ├── 312.in │ ├── 313.in │ ├── 314.in │ ├── 315.in │ ├── 316.in │ ├── 317.in │ ├── 318.in │ ├── 319.in │ ├── 320.in │ ├── 321.in │ ├── 322.in │ ├── 323.in │ ├── 324.in │ ├── 325.in │ ├── 326.in │ ├── 327.in │ ├── 328.in │ ├── 329.in │ ├── 330.in │ ├── 345.in │ ├── 346.in │ ├── 347.in │ ├── 348.in │ ├── 349.in │ ├── 350.in │ ├── 351.in │ ├── 377.in │ ├── 378.in │ ├── 379.in │ ├── 380.in │ ├── 381.in │ ├── 382.in │ ├── 383.in │ ├── 384.in │ ├── 385.in │ ├── 387.in │ ├── 388.in │ ├── 389.in │ ├── 390.in │ ├── 391.in │ ├── 392.in │ ├── 393.in │ ├── 394.in │ ├── 395.in │ ├── 396.in │ ├── 397.in │ ├── 398.in │ └── 399.in ├── v3out │ ├── 300.OUT │ ├── 301.OUT │ ├── 302.OUT │ ├── 303.OUT │ ├── 304.OUT │ ├── 305.OUT │ ├── 306.OUT │ ├── 307.OUT │ ├── 308.out │ ├── 309.out │ ├── 310.out │ ├── 311.out │ ├── 312.out │ ├── 313.out │ ├── 314.out │ ├── 315.out │ ├── 316.out │ ├── 317.out │ ├── 318.out │ ├── 319.out │ ├── 320.out │ ├── 321.out │ ├── 322.out │ ├── 323.out │ ├── 324.out │ ├── 325.out │ ├── 326.out │ ├── 327.out │ ├── 328.out │ ├── 329.out │ ├── 330.out │ ├── 345.out │ ├── 346.out │ ├── 347.out │ ├── 348.out │ ├── 349.out │ ├── 350.out │ ├── 377.out │ ├── 378.out │ ├── 379.out │ ├── 380.out │ ├── 381.out │ ├── 382.out │ ├── 383.out │ ├── 384.out │ ├── 385.out │ ├── 386.out │ ├── 387.out │ ├── 388.out │ ├── 389.out │ ├── 390.out │ ├── 391.out │ ├── 392.out │ ├── 393.out │ ├── 394.out │ ├── 395.out │ ├── 396.out │ ├── 397.out │ ├── 398.out │ └── 399.out ├── v4in │ ├── 400.in │ ├── 401.in │ ├── 402.in │ ├── 403.in │ ├── 404.in │ ├── 405.in │ ├── 406.in │ ├── 407.in │ ├── 408.in │ ├── 409.in │ ├── 410.in │ ├── 411.in │ ├── 412.in │ ├── 413.in │ ├── 414.in │ ├── 415.in │ ├── 416.in │ ├── 417.in │ ├── 418.in │ ├── 419.in │ ├── 420.in │ ├── 421.in │ ├── 422.in │ ├── 423.in │ ├── 424.in │ ├── 425.in │ ├── 425pc.c │ ├── 436.in │ ├── 437.in │ ├── 438.in │ ├── 439.in │ ├── 440.in │ ├── 441.in │ ├── 442.in │ └── 443.in ├── v4out │ ├── 400.out │ ├── 401.out │ ├── 402.out │ ├── 403.out │ ├── 404.out │ ├── 405.out │ ├── 406.out │ ├── 407.out │ ├── 408.out │ ├── 409.out │ ├── 410.out │ ├── 411.out │ ├── 412.out │ ├── 413.out │ ├── 414.out │ ├── 415.out │ ├── 416.out │ ├── 417.out │ ├── 418.out │ ├── 419.out │ ├── 420.out │ ├── 421.out │ ├── 422.out │ ├── 423.out │ ├── 424.out │ ├── 425.out │ ├── 436.out │ ├── 437.out │ ├── 438.out │ ├── 439.out │ ├── 440.out │ ├── 441.out │ ├── 442.out │ └── 443.out ├── v5in │ ├── 500.in │ ├── 501.in │ ├── 502.in │ ├── 503.in │ ├── 504.in │ ├── 505.in │ ├── 514.IN │ ├── 515.IN │ ├── 516.IN │ ├── 517.IN │ ├── 518.IN │ ├── 519.IN │ ├── 520.IN │ ├── 521.IN │ ├── 529.IN │ ├── 530.IN │ ├── 531.IN │ ├── 532.IN │ ├── 533.IN │ ├── 534.IN │ ├── 535.IN │ ├── 536.IN │ ├── 537.IN │ ├── 538.IN │ ├── 539.IN │ ├── 540.IN │ ├── 541.IN │ ├── 542.IN │ ├── 543.IN │ ├── 544.IN │ ├── 565.in │ ├── 566.in │ ├── 567.in │ ├── 568.in │ ├── 569.in │ ├── 570.in │ ├── 571.in │ ├── 572.in │ ├── 573.in │ ├── 574.in │ ├── 575.in │ ├── 576.in │ ├── 577.in │ ├── 585.in │ ├── 586.in │ ├── 587.in │ ├── 588.in │ ├── 589.in │ ├── 590.in │ ├── 591.in │ ├── 592.in │ └── 593.in ├── v5out │ ├── 500.out │ ├── 501.out │ ├── 502.out │ ├── 503.OUT │ ├── 504.OUT │ ├── 505.OUT │ ├── 514.OUT │ ├── 515.OUT │ ├── 516.OUT │ ├── 517.OUT │ ├── 518.OUT │ ├── 519.OUT │ ├── 520.OUT │ ├── 521.OUT │ ├── 529.OUT │ ├── 530.OUT │ ├── 531.OUT │ ├── 532.OUT │ ├── 533.OUT │ ├── 534.OUT │ ├── 535.OUT │ ├── 536.OUT │ ├── 537.OUT │ ├── 538.OUT │ ├── 539.OUT │ ├── 540.OUT │ ├── 541.OUT │ ├── 542.OUT │ ├── 543.OUT │ ├── 544.OUT │ ├── 565.out │ ├── 566.out │ ├── 567.out │ ├── 568.out │ ├── 569.out │ ├── 570.out │ ├── 571.out │ ├── 572.out │ ├── 573.out │ ├── 574.out │ ├── 575.out │ ├── 576.out │ ├── 577.out │ ├── 585.out │ ├── 586.out │ ├── 587.out │ ├── 588.out │ ├── 589.out │ ├── 590.out │ ├── 591.out │ ├── 592.out │ └── 593.out ├── v6in │ ├── 600.in │ ├── 601.in │ ├── 602.in │ ├── 603.in │ ├── 604.in │ ├── 605.in │ ├── 606.IN │ ├── 607.IN │ ├── 608.IN │ ├── 609.IN │ ├── 610.IN │ ├── 611.IN │ ├── 612.IN │ ├── 613.IN │ ├── 614.IN │ ├── 615.IN │ ├── 616.IN │ ├── 617.IN │ ├── 618.IN │ ├── 619.IN │ ├── 637.IN │ ├── 638.IN │ ├── 639.IN │ ├── 641.IN │ ├── 642.IN │ ├── 649.IN │ ├── 650.IN │ ├── 651.in │ ├── 652.in │ ├── 653.in │ ├── 654.in │ ├── 655.in │ ├── 656.in │ ├── 657.in │ ├── 658.in │ ├── 659.in │ ├── 660.in │ ├── 661.in │ ├── 662.in │ ├── 663.in │ ├── 664.in │ ├── 665.in │ ├── 666.in │ ├── 667.in │ ├── 668.in │ ├── 669.in │ ├── 670.in │ ├── 671.in │ ├── 672.in │ ├── 686.IN │ ├── 687.IN │ ├── 688.IN │ ├── 689.IN │ ├── 690.IN │ ├── 691.IN │ ├── 692.IN │ └── 693.IN ├── v6out │ ├── 600.out │ ├── 601.out │ ├── 602.out │ ├── 603.out │ ├── 604.out │ ├── 605.out │ ├── 606.out │ ├── 607.OUT │ ├── 608.OUT │ ├── 609.OUT │ ├── 611.OUT │ ├── 612.OUT │ ├── 613.OUT │ ├── 614.OUT │ ├── 615.OUT │ ├── 616.OUT │ ├── 617.OUT │ ├── 618.OUT │ ├── 619.OUT │ ├── 637.OUT │ ├── 638.OUT │ ├── 639.OUT │ ├── 640.OUT │ ├── 641.OUT │ ├── 642.OUT │ ├── 649.OUT │ ├── 650.OUT │ ├── 651.out │ ├── 652.out │ ├── 653.out │ ├── 654.out │ ├── 655.out │ ├── 656.out │ ├── 657.out │ ├── 658.out │ ├── 659.out │ ├── 660.out │ ├── 661.out │ ├── 662.out │ ├── 663.out │ ├── 664.out │ ├── 665.out │ ├── 666.out │ ├── 667.out │ ├── 668.out │ ├── 669.out │ ├── 670.out │ ├── 671.out │ └── 672.out ├── v7in │ ├── 700.in │ ├── 705.in │ ├── 706.in │ ├── 707.in │ ├── 708.in │ ├── 709.in │ ├── 710.in │ ├── 711.in │ ├── 712.in │ ├── 728.IN │ ├── 730.IN │ ├── 733.in │ ├── 734.IN │ ├── 735.IN │ ├── 736.IN │ ├── 737.IN │ ├── 738.IN │ ├── 739.IN │ ├── 751.IN │ ├── 752.in │ ├── 753.in │ ├── 754.in │ ├── 756.IN │ ├── 757.IN │ └── 758.in └── v7out │ ├── 700.out │ ├── 705.out │ ├── 706.out │ ├── 707.out │ ├── 708.out │ ├── 709.out │ ├── 710.out │ ├── 711.out │ ├── 712.out │ ├── 728.out │ ├── 730.OUT │ ├── 734.OUT │ ├── 735.OUT │ ├── 736.OUT │ ├── 737.OUT │ ├── 738.OUT │ ├── 739.OUT │ ├── 751.OUT │ ├── 752.out │ ├── 753.out │ ├── 754.OUT │ ├── 756.OUT │ ├── 757.OUT │ └── 758.OUT ├── contest ├── FacebookHackerCup │ ├── FBHacker2015 │ │ ├── FBHackerCup2015_P15.cpp │ │ ├── FBHackerCup2015_P30.cpp │ │ └── FBHackerCup2015_P55.cpp │ ├── FBHacker2016QR │ │ ├── A │ │ │ ├── format.sh │ │ │ └── main.cpp │ │ ├── B │ │ │ ├── format.sh │ │ │ └── main.cpp │ │ ├── C │ │ │ ├── format.sh │ │ │ └── main.cpp │ │ └── D │ │ │ ├── format.sh │ │ │ └── main.cpp │ ├── FBHacker2016Round1 │ │ ├── A │ │ │ └── main.cpp │ │ ├── B │ │ │ └── main.cpp │ │ ├── C │ │ │ └── main.cpp │ │ └── D │ │ │ ├── main.cpp │ │ │ └── pin.cpp │ ├── FBHacker2016Round2 │ │ ├── FB2016R2 - Boomerang Decoration.cpp │ │ ├── FB2016R2 - Carnival Coins.cpp │ │ ├── FB2016R2 - Costly Labels.cpp │ │ ├── FB2016R2 - Costly Labels2.cpp │ │ └── FB2016R2 - Snakes and Ladders.cpp │ ├── FBHacker2017QR │ │ ├── 2017A.cpp │ │ ├── 2017B.cpp │ │ └── 2017C.cpp │ └── FBHacker2017Round1 │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ └── D.cpp ├── FlerePracticeContest │ ├── Problem1.pdf │ ├── Problem2.pdf │ ├── Problem3.pdf │ ├── Problem4.pdf │ ├── Problem5.pdf │ ├── Problem6.pdf │ ├── Problem7.pdf │ ├── Problem9.pdf │ ├── flere201501A.cpp │ ├── flere201501B.cpp │ ├── flere201501C.cpp │ ├── flere201501D.cpp │ ├── flere201501E.cpp │ ├── flere201501F.cpp │ ├── flere201501G.cpp │ └── flere201501I.cpp ├── GoogleCodeJam │ ├── APAC2016A │ │ ├── APAC2016RoundA A. Googol String.cpp │ │ ├── APAC2016RoundA B. gCube.cpp │ │ ├── APAC2016RoundA C. gCampus.cpp │ │ └── APAC2016RoundA D. gSnake.cpp │ ├── GCJ20151A │ │ ├── GCJ20151A - Haircut.cpp │ │ ├── GCJ20151A - Logging.cpp │ │ ├── GCJ20151A - Logging[fast].cpp │ │ └── GCJ20151A - Mushroom Monster.cpp │ ├── GCJ20151B │ │ ├── GCJ20151B - Counter Culture.cpp │ │ ├── GCJ20151B - Hiking Deer.cpp │ │ └── GCJ20151B - Noisy Neighbors.cpp │ ├── GCJ20151C │ │ ├── GCJ20151C - Brattleship.cpp │ │ ├── GCJ20151C - Less Money, More Problems.cpp │ │ └── GCJ20151C - Typewriter Monkey.cpp │ ├── GCJ20152 │ │ ├── GCJ20152 - Kiddie Pool.cpp │ │ ├── GCJ20152 - Pegman.cpp │ │ └── GCJ20152 Kiddie Pool[MinkowskiSum].cpp │ ├── GCJ2015QR │ │ ├── GCJ2015QR - Infinite House of Pancakes.cpp │ │ ├── GCJ2015QR - Ominous Omino.cpp │ │ ├── GCJ2015QR - Dijkstra.cpp │ │ └── GCJ2015QR - Standing Ovation.cpp │ ├── GCJ20161A │ │ ├── Problem A. The Last Word.cpp │ │ ├── Problem B. Rank and File.cpp │ │ └── Problem C. BFFs.cpp │ ├── GCJ20161B │ │ ├── GCJ-1B-A.cpp │ │ ├── GCJ-1B-B.cpp │ │ └── GCJ-1B-C.cpp │ ├── GCJ20161C │ │ ├── GCJ2016-1C-A.cpp │ │ ├── GCJ2016-1C-B.cpp │ │ └── GCJ2016-1C-C.cpp │ ├── GCJ2016QR │ │ ├── A │ │ │ └── Problem A. Counting Sheep.cpp │ │ ├── B │ │ │ └── Problem B. Revenge of the Pancakes.cpp │ │ ├── C │ │ │ └── Problem C. Coin Jam.cpp │ │ └── D │ │ │ └── Problem D. Fractiles.cpp │ ├── GCJ2017QR │ │ ├── pA.cpp │ │ ├── pB.cpp │ │ ├── pC.cpp │ │ └── pD.cpp │ ├── GCJ2018QR │ │ ├── Cubic UFO.cpp │ │ ├── GoGopher.cpp │ │ ├── README.md │ │ ├── Saving The Universe Again.cpp │ │ └── Trouble Sort.cpp │ └── GCJ2019QR │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C │ │ └── Solution.java │ │ ├── D.cpp │ │ ├── README.md │ │ ├── interactive_runner.py │ │ └── testing_tool.py ├── IOI Camp │ ├── IOICamp Judge.htm │ ├── IOICamp JudgeP19.htm │ ├── IOICamp JudgeP19_files │ │ ├── MathJax.js │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── highlight.js │ │ ├── jquery-1.js │ │ ├── pangu.js │ │ └── solarized_light.css │ ├── IOICamp JudgeP59.htm │ ├── IOICamp JudgeP59_files │ │ ├── MathJax.js │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── highlight.js │ │ ├── jquery-1.js │ │ ├── pangu.js │ │ └── solarized_light.css │ ├── IOICamp Judge_files │ │ ├── MathJax.js │ │ ├── bootstrap.css │ │ ├── bootstrap.js │ │ ├── highlight.js │ │ ├── jquery-1.js │ │ ├── pangu.js │ │ └── solarized_light.css │ ├── ioicamp2014_websitebackup.zip │ ├── ioicampP17程度差距 EX .cpp │ ├── ioicampP19胖胖兮的書架.cpp │ ├── ioicampP49胖胖兮的書架 EX.cpp │ ├── ioicampP53電力傳輸系統.cpp │ ├── ioicampP56最佳二元搜尋樹.cpp │ ├── ioicampP59A+ 遊戲.cpp │ ├── ioicampP68胖胖天特大薯.cpp │ ├── ioicampP68胖胖天特大薯[v2].cpp │ ├── ioicampP68胖胖天特大薯[v3].cpp │ ├── ioicampP70迷宮魔法.cpp │ └── ioicampP72我太受歡迎了該怎麼辦.cpp ├── IPSC │ └── IPSC2016-practice │ │ ├── IPSC2016-test-S.cpp │ │ ├── IPSC2016-test-T.cpp │ │ └── IPSC2016-test-U-easy.cpp ├── IPSC2015Practice │ ├── IPSC_S.cpp │ ├── IPSC_S[v2].cpp │ ├── IPSC_T.cpp │ └── IPSC_U.cpp ├── ITSA │ ├── ITSA201111 │ │ ├── P1.cpp │ │ ├── P2.cpp │ │ ├── P3.cpp │ │ └── Programming Contest exams 10th.pdf │ ├── ITSA201112 │ │ ├── 11th ITSA team.xlsx │ │ ├── Competition Document 11th.doc │ │ ├── P1.cpp │ │ ├── P2.cpp │ │ ├── P3.cpp │ │ ├── P3.exe │ │ ├── P4.cpp │ │ ├── P4.exe │ │ ├── P5.cpp │ │ ├── P5.exe │ │ ├── Programming Contest exams 11th.pdf │ │ └── Registration Form.doc │ ├── ITSA201202 │ │ ├── P1.cpp │ │ ├── P2.cpp │ │ ├── P3.cpp │ │ ├── P4.cpp │ │ ├── P5.cpp │ │ └── Programming Contest exams 12th.pdf │ ├── ITSA201203 │ │ ├── P1.cpp │ │ ├── P2.cpp │ │ ├── P3.cpp │ │ ├── P4.cpp │ │ ├── P5.cpp │ │ └── Programming Contest exams 13th.pdf │ ├── ITSA201204 │ │ ├── P1.cpp │ │ ├── P2.cpp │ │ ├── P3.cpp │ │ ├── P4.cpp │ │ ├── P5.cpp │ │ ├── Programming Contest exams 14th.pdf │ │ └── Registration Form.doc │ ├── ITSA201205 │ │ ├── 15th ITSA team.xlsx │ │ ├── Programming Contest exams 15th.pdf │ │ ├── p1.cpp │ │ ├── p2.cpp │ │ ├── p3.cpp │ │ ├── p4.cpp │ │ └── p5.cpp │ ├── ITSA201208 │ │ ├── 16th ITSA team(1).xlsx │ │ ├── Programming Contest exams 16th.pdf │ │ ├── p1.cpp │ │ ├── p2.cpp │ │ ├── p3.cpp │ │ ├── p4.cpp │ │ └── p5.cpp │ ├── ITSA201209 │ │ ├── 17th ITSA team.xlsx │ │ ├── Competition Document 17th.doc │ │ ├── Programming Contest exams 17th.pdf │ │ ├── Registration Form2012.doc │ │ ├── p1.cpp │ │ ├── p2.cpp │ │ ├── p3.cpp │ │ ├── p4.cpp │ │ └── pp5.cpp │ ├── ITSA201210 │ │ ├── 18th ITSA team.xlsx │ │ ├── Competition Document 18th.doc │ │ ├── Programming Contest exams 18th.pdf │ │ ├── Registration Form2012.doc │ │ ├── p1.cpp │ │ ├── p2.cpp │ │ ├── p3.cpp │ │ ├── p4.cpp │ │ ├── p5.cpp │ │ └── pp2.cpp │ ├── ITSA201211 │ │ ├── 19th ITSA team.xlsx │ │ ├── Competition Document 19th.doc │ │ ├── Programming Contest exams 19th.pdf │ │ ├── Registration Form2012.doc │ │ ├── p1.cpp │ │ ├── p2.cpp │ │ ├── p3.cpp │ │ ├── p4.cpp │ │ └── p5.cpp │ ├── ITSA2015 │ │ ├── B-team │ │ │ ├── 2015ITSA-B8-Weighted-Binary-Tree.cpp │ │ │ └── 2015ITSA-B9-Minimum Risk Shortest Path.cpp │ │ ├── ITSA2015-A.cpp │ │ ├── ITSA2015-B.cpp │ │ ├── ITSA2015-C.cpp │ │ ├── ITSA2015-D.cpp │ │ ├── ITSA2015-ET[SimulatedAnnealingWA].cpp │ │ ├── ITSA2015-E[bfsTLE].cpp │ │ ├── ITSA2015-F.cpp │ │ ├── ITSA2015-G.cpp │ │ ├── ITSA2015-G[v2].cpp │ │ ├── ITSA2015-H.cpp │ │ ├── ITSA2015-I.cpp │ │ ├── ITSA2015-I[fast2].cpp │ │ ├── ITSA2015-I[fast4].cpp │ │ ├── ITSA2015-I[fast4].exe │ │ ├── ITSA2015-I[fast].cpp │ │ ├── ITSA2015-I[test].cpp │ │ ├── ITSA2015-J.cpp │ │ ├── ITSA2015-K.cpp │ │ ├── ITSA2015ProblemSet.pdf │ │ └── TEST_generator_ITSA2015-I.cpp │ ├── ITSA_Judge │ │ ├── [C_DP01-中] 參加活動.cpp │ │ ├── [C_DP02-中] 法碼秤重.cpp │ │ ├── [C_DP03-中] 細菌繁殖.cpp │ │ ├── [C_DP04-中] 房地產.cpp │ │ ├── [C_DP06-中] 永遠不會死的老鼠.cpp │ │ ├── [C_DP07-中] 矩陣相乘順序.cpp │ │ ├── [C_DP08-中] 換零錢.cpp │ │ ├── [C_DP11-易] 排隊購票.cpp │ │ └── [C_DP18-中] 沙漠綠洲.cpp │ └── ITSA桂冠盃 │ │ ├── a574. ITSA2012 桂冠 n維區間查詢.cpp │ │ ├── p3.cpp │ │ ├── p33.cpp │ │ ├── p5.cpp │ │ ├── p5.exe │ │ └── p5.o ├── NCPC │ └── NPSC2012 │ │ ├── NCPC2012pB.docx │ │ ├── NCPC2012pC.docx │ │ ├── NCPC2012pF.docx │ │ ├── NCPC2012pG.docx │ │ ├── NCPC2012pG.jpg │ │ ├── NCPC2012pI.docx │ │ ├── NPSC2012.JPG │ │ ├── NPSC2012pD.docx │ │ ├── PI.jpg │ │ ├── Untitled1.c │ │ ├── gr_pg.cpp │ │ ├── in.txt │ │ ├── in2.txt.txt │ │ ├── out.txt │ │ ├── out2.txt.txt │ │ ├── pa.cpp │ │ ├── pb.cpp │ │ ├── pc.cpp │ │ ├── pd.cpp │ │ ├── pf.cpp │ │ ├── pg.cpp │ │ ├── pi.cpp │ │ ├── pin.cpp │ │ └── 掃瞄002.JPG ├── NPSC │ ├── 2015-senior │ │ ├── 2015NPSCseniorB-opt.cpp │ │ └── 2015NPSCseniorB.cpp │ └── 2018-final-senior │ │ └── E-knapsack.cpp ├── PTC │ ├── PTC201109 │ │ ├── 201107B.cpp │ │ ├── 201109A.pdf │ │ ├── 201109B.pdf │ │ ├── 201109C.pdf │ │ └── 201109D.pdf │ ├── PTC201111 │ │ ├── 201111A.pdf │ │ ├── 201111B.pdf │ │ ├── 201111C.pdf │ │ ├── 201111D.pdf │ │ ├── 201111E.pdf │ │ ├── C.cpp │ │ ├── D.cpp │ │ └── E.cpp │ ├── PTC201112 │ │ ├── 201112A.pdf │ │ ├── 201112B.pdf │ │ ├── 201112C.pdf │ │ ├── 201112D.pdf │ │ ├── 201112E.pdf │ │ ├── PA.cpp │ │ ├── PA.exe │ │ ├── PB.cpp │ │ ├── PB.exe │ │ ├── PC.cpp │ │ ├── PC.exe │ │ ├── PE.cpp │ │ └── PE.exe │ ├── PTC201202 │ │ ├── 201202A.pdf │ │ ├── 201202B.pdf │ │ ├── 201202C.pdf │ │ ├── 201202D.pdf │ │ ├── 201202E.pdf │ │ ├── PA.cpp │ │ ├── PB.cpp │ │ ├── PC.cpp │ │ ├── PD.cpp │ │ └── PE.cpp │ ├── PTC201203 │ │ ├── 201203A.pdf │ │ ├── 201203B.pdf │ │ ├── 201203C.pdf │ │ ├── 201203D.pdf │ │ ├── 201203E.pdf │ │ ├── PB.cpp │ │ └── PC.cpp │ ├── PTC201205 │ │ ├── 201205A.pdf │ │ ├── 201205B.pdf │ │ ├── 201205C.pdf │ │ ├── 201205D.pdf │ │ ├── 201205E.pdf │ │ ├── pa.cpp │ │ ├── pb.cpp │ │ ├── pc.cpp │ │ ├── pd.cpp │ │ ├── pe.cpp │ │ └── rrrrrrrrrrrrrrrrpd.cpp │ ├── PTC201206 │ │ ├── 201206A.pdf │ │ ├── 201206B.pdf │ │ ├── 201206C.pdf │ │ ├── 201206D.pdf │ │ ├── 201206E.pdf │ │ ├── pB.cpp │ │ ├── pC.cpp │ │ ├── pD.cpp │ │ └── pE.cpp │ ├── PTC201208 │ │ ├── 201208A.pdf │ │ ├── 201208B.pdf │ │ ├── 201208C.pdf │ │ ├── 201208D.pdf │ │ ├── 201208E.pdf │ │ ├── pA.cpp │ │ ├── pB.cpp │ │ ├── pC.cpp │ │ └── pD.cpp │ ├── PTC201209 │ │ ├── 201209A.pdf │ │ ├── 201209B.pdf │ │ ├── 201209C.pdf │ │ ├── 201209D.pdf │ │ ├── 201209E.pdf │ │ ├── pA.cpp │ │ ├── pB.cpp │ │ ├── pC.cpp │ │ ├── pD.cpp │ │ └── pE.cpp │ ├── PTC201210 │ │ ├── 201210A.pdf │ │ ├── 201210B.pdf │ │ ├── 201210C.pdf │ │ ├── 201210D.pdf │ │ ├── pc.cpp │ │ ├── pc.exe │ │ ├── pc.o │ │ ├── pd.cpp │ │ ├── pd.exe │ │ ├── pd.o │ │ ├── pe.cpp │ │ ├── pe.exe │ │ ├── pe.o │ │ ├── ptc_score.jpg │ │ └── test.exe │ ├── PTC201211 │ │ ├── 201211A.pdf │ │ ├── 201211B.pdf │ │ ├── 201211C.pdf │ │ ├── 201211D.pdf │ │ ├── 201211E.pdf │ │ ├── pA.cpp │ │ ├── pB.cpp │ │ ├── pD.cpp │ │ ├── pc.cpp │ │ ├── pcc.cpp │ │ ├── pd(1).cpp │ │ └── pe.cpp │ ├── PTC201212 │ │ ├── 201212A.pdf │ │ ├── 201212B.pdf │ │ ├── 201212C.pdf │ │ ├── 201212D.pdf │ │ ├── 201212E.pdf │ │ ├── pA.cpp │ │ ├── pC.cpp │ │ ├── pd.cpp │ │ └── pe.cpp │ ├── PTC201301 │ │ ├── 201301A.pdf │ │ ├── 201301B.pdf │ │ ├── 201301C.pdf │ │ ├── 201301D.pdf │ │ ├── 201301E.pdf │ │ ├── pb.cpp │ │ ├── pc.cpp │ │ ├── pc2.cpp │ │ ├── pcc.cpp │ │ └── pe.cpp │ ├── PTC201303 │ │ ├── 201303A.pdf │ │ ├── 201303B.pdf │ │ ├── 201303C.pdf │ │ ├── 201303D.pdf │ │ ├── 201303E.pdf │ │ ├── Main.java │ │ ├── Pp.PNG │ │ ├── paa.cpp │ │ ├── pbb.cpp │ │ ├── pcc.cpp │ │ ├── pdd.cpp │ │ └── pee.cpp │ ├── PTC201304 │ │ ├── 201304A.pdf │ │ ├── 201304B.pdf │ │ ├── 201304C.pdf │ │ ├── 201304D.pdf │ │ ├── 201304E.pdf │ │ ├── PTC201304.PNG │ │ ├── PTC20130401.PNG │ │ ├── pb.cpp │ │ ├── pc.cpp │ │ ├── pc.exe │ │ ├── pc.o │ │ ├── pd.cpp │ │ ├── pd.exe │ │ ├── pd.o │ │ ├── pe(1).cpp │ │ ├── pe.cpp │ │ ├── pe.exe │ │ └── pe.o │ ├── PTC201403 │ │ ├── 201403A.pdf │ │ ├── 201403B.pdf │ │ ├── 201403C.pdf │ │ ├── 201403D.pdf │ │ ├── 201403E.pdf │ │ ├── PA.cpp │ │ ├── PB.cpp │ │ ├── PC.cpp │ │ ├── PD.cpp │ │ └── PE.cpp │ ├── PTC201506 │ │ ├── PTC201506.pdf │ │ ├── PTC201506A.cpp │ │ ├── PTC201506B.cpp │ │ ├── PTC201506B[try].cpp │ │ ├── PTC201506C.cpp │ │ ├── PTC201506D[v2].cpp │ │ └── PTC201506E.cpp │ ├── PTC201508 │ │ ├── PTC201508.pdf │ │ ├── PTC201508A.cpp │ │ ├── PTC201508B.cpp │ │ ├── PTC201508C.cpp │ │ ├── PTC201508D.cpp │ │ ├── PTC201508E.cpp │ │ ├── PTC201508Ev2.cpp │ │ └── gmon.out │ ├── PTC201509 │ │ ├── PTC201509.pdf │ │ ├── PTC201509A.cpp │ │ ├── PTC201509B.cpp │ │ └── PTC201509C.cpp │ └── PTC201510 │ │ ├── PTC201510.pdf │ │ ├── PTC201510A.cpp │ │ ├── PTC201510Av2.cpp │ │ ├── PTC201510B.cpp │ │ ├── PTC201510C.cpp │ │ ├── PTC201510D.cpp │ │ └── PTC201510E.cpp ├── Tmt514BeverageCup │ ├── README.md │ ├── problem.pdf │ ├── tmt201505 - A.cpp │ ├── tmt201505 - B.cpp │ ├── tmt201505 - C[fail].cpp │ ├── tmt201505 - D.cpp │ ├── tmt201505 - E │ │ ├── atan2_eps_test.cpp │ │ ├── brute_for_small.cpp │ │ ├── fixed-Problem-C.-Logging[v2].cpp │ │ ├── fixed-Problem-C.-Logging[v2].exe │ │ ├── pin.cpp │ │ ├── testC.cpp │ │ └── tmt201505 - E.cpp │ ├── tmt201505 - F.cpp │ ├── tmt201505 - G.cpp │ ├── tmt201505 - H[test].cpp │ └── warmup │ │ ├── 2310.pdf │ │ ├── 2311.pdf │ │ ├── 2312.pdf │ │ ├── 2314.pdf │ │ ├── 2315.pdf │ │ ├── tmt201505 - A.cpp │ │ ├── tmt201505 - B.cpp │ │ └── tmt201505 - C.cpp ├── TopcoderSRM │ ├── SRM 659 - ApplesAndOrangesEasy.cpp │ ├── SRM 659 - CampLunch.cpp │ └── SRM 659 - PublicTransitHard.cpp └── noip2005复赛 │ ├── 复赛试题.doc │ └── 测试数据 │ ├── Main.java │ ├── equal │ ├── equal0.ans │ ├── equal0.in │ ├── equal1.ans │ ├── equal1.in │ ├── equal2.ans │ ├── equal2.in │ ├── equal3.ans │ ├── equal3.in │ ├── equal4.ans │ ├── equal4.in │ ├── equal5.ans │ ├── equal5.in │ ├── equal6.ans │ ├── equal6.in │ ├── equal7.ans │ ├── equal7.in │ ├── equal8.ans │ ├── equal8.in │ ├── equal9.ans │ └── equal9.in │ ├── fire │ ├── fire0.ans │ ├── fire0.in │ ├── fire1.ans │ ├── fire1.in │ ├── fire2.ans │ ├── fire2.in │ ├── fire3.ans │ ├── fire3.in │ ├── fire4.ans │ ├── fire4.in │ ├── fire5.ans │ ├── fire5.in │ ├── fire6.ans │ ├── fire6.in │ ├── fire7.ans │ ├── fire7.in │ ├── fire8.ans │ ├── fire8.in │ ├── fire9.ans │ └── fire9.in │ ├── river │ ├── river0.ans │ ├── river0.in │ ├── river1.ans │ ├── river1.in │ ├── river2.ans │ ├── river2.in │ ├── river3.ans │ ├── river3.in │ ├── river4.ans │ ├── river4.in │ ├── river5.ans │ ├── river5.in │ ├── river6.ans │ ├── river6.in │ ├── river7.ans │ ├── river7.in │ ├── river8.ans │ ├── river8.in │ ├── river9.ans │ └── river9.in │ ├── scholar │ ├── scholar0.ans │ ├── scholar0.in │ ├── scholar1.ans │ ├── scholar1.in │ ├── scholar2.ans │ ├── scholar2.in │ ├── scholar3.ans │ ├── scholar3.in │ ├── scholar4.ans │ ├── scholar4.in │ ├── scholar5.ans │ ├── scholar5.in │ ├── scholar6.ans │ ├── scholar6.in │ ├── scholar7.ans │ ├── scholar7.in │ ├── scholar8.ans │ ├── scholar8.in │ ├── scholar9.ans │ └── scholar9.in │ └── solution.cpp ├── course └── AlgorithmDesignAndAnalysis2020Fall │ ├── ADA-p2.cpp │ ├── ADA-p3-brute.cpp │ ├── ADA-p3.cpp │ └── Homework-1.pdf ├── message attachment ├── Given_Netsphere │ └── scramble │ │ ├── bin │ │ └── Debug │ │ │ └── scramble.exe │ │ ├── main.cpp │ │ ├── main.o │ │ ├── obj │ │ └── Debug │ │ │ └── main.o │ │ ├── scramble.cbp │ │ ├── scramble.depend │ │ └── scramble.layout ├── Given_abcd6891 │ └── d868_AC.cpp ├── Given_dreamoon │ ├── dreamoon 2.html │ ├── dreamoon 2.md │ ├── dreamoon 3.html │ ├── dreamoon 3.md │ ├── dreamoon 4.html │ ├── dreamoon 4.md │ ├── dreamoon 5.html │ ├── dreamoon 5.md │ ├── dreamoon 6.html │ ├── dreamoon 6.md │ ├── dreamoon.html │ └── dreamoon.md ├── Given_example │ ├── A153.java │ ├── A202(1).c │ ├── A202.c │ ├── A204(1).java │ ├── A204(2).java │ ├── A204.java │ ├── A207(1).c │ ├── A207(2).c │ ├── A207.c │ ├── D314.c │ ├── D522.c │ ├── D906.c │ ├── final_project │ │ ├── bin │ │ │ └── Debug │ │ │ │ ├── final_project.exe │ │ │ │ ├── final_project.rar │ │ │ │ └── maze.txt │ │ ├── board.cpp │ │ ├── board.h │ │ ├── final_project.cbp │ │ ├── final_project.depend │ │ ├── final_project.exe │ │ ├── final_project.layout │ │ ├── final_project.rar │ │ ├── final_project_v4.1.rar │ │ ├── heap.cpp │ │ ├── heap.h │ │ ├── main.cpp │ │ ├── maze.txt │ │ ├── node.cpp │ │ ├── node.h │ │ └── obj │ │ │ └── Debug │ │ │ ├── board.o │ │ │ ├── heap.o │ │ │ ├── main.o │ │ │ └── node.o │ └── 新文字文件.txt ├── Given_leopan │ └── next_permutation.cpp └── Given_liouzhou_101 │ └── liouzhou_101_code1.txt ├── my-problem ├── allpair │ ├── brute.cpp │ ├── morris_sol.cpp │ └── testdata_generate.cpp ├── 中國餘數 │ ├── b431. 中國餘數[faster].cpp │ ├── b431.cpp │ ├── b431[v2].cpp │ └── pin.cpp ├── 中間相遇法 │ ├── SimpleEncrypt.cpp │ ├── b433.cpp │ ├── b433[arr].cpp │ └── pin.cpp ├── 二元搜尋樹快速鍵造 │ ├── sol.cpp │ └── testdata_generate.cpp ├── 人格分裂 │ ├── brute.cpp │ ├── morris.ggb │ ├── morris_sol.cpp │ ├── split2.ggb │ └── testdata_generate.cpp ├── 優勢產品 │ ├── kdom_brute.cpp │ ├── kdominate.cpp │ ├── kdominate2.cpp │ └── pin.cpp ├── 八成真物 │ ├── b418.cpp │ ├── b418[test].cpp │ └── pin.cpp ├── 凱薩加密 │ ├── b428.cpp │ └── pin.cpp ├── 加速策略 圈出角點 │ ├── b449. 加速策略 圈出角點[faster].cpp │ ├── b449. 加速策略 圈出角點[v3].cpp │ ├── b449. 角點偵測.cpp │ ├── b449_crazy.cpp │ ├── b449_crazy2.cpp │ ├── b449_crazy3.cpp │ ├── hash 設計 │ │ ├── b449 產生器.cpp │ │ ├── b449. 加速策略 圈出角點[v2].cpp │ │ └── hash 比較版.cpp │ └── pin.cpp ├── 動態前綴 │ ├── brute.cpp │ ├── lcp.cpp │ ├── lcp2.cpp │ └── testdata_generate.cpp ├── 區間眾數 │ ├── b417.cpp │ ├── b417[heavy_pre].cpp │ ├── b417[online_query].cpp │ └── b417[test].cpp ├── 史蒂芙的修羅道 │ ├── b494. 史蒂芙的修羅道[less].cpp │ ├── b494_morris_traversal.cpp │ ├── b494_selfstack.cpp │ ├── d539.cpp │ ├── d539_test.cpp │ ├── d539_test_zkw.cpp │ ├── empty.cpp │ ├── pin.cpp │ └── problem_desc.cpp ├── 史蒂芙的單詞統計 │ ├── ACmachine.cpp │ ├── ACmachinev2.cpp │ ├── ACmachinev3.cpp │ ├── DA_ACmachine.cpp │ └── pin.cpp ├── 史蒂芙的外交夥伴 │ ├── b493. 史蒂芙的外交夥伴[pre].cpp │ ├── b493_offline.cpp │ ├── b493_online.cpp │ ├── b493_online_builtin.cpp │ ├── b493_online_builtin_rev.cpp │ ├── b493_online_garbage_recycle.cpp │ ├── b493_online_lct.cpp │ ├── b493_online_v2.cpp │ ├── b493_online_v3.cpp │ ├── b493_online_v4.cpp │ ├── b493_online_v5.cpp │ ├── b493_test.cpp │ └── pin.cpp ├── 史蒂芙的外交序列 │ ├── b492. 史蒂芙的外交序列v2.cpp │ ├── b492.cpp │ ├── b492_test.cpp │ └── pin.cpp ├── 史蒂芙的政務工作 │ ├── b491. 史蒂芙的政務工作.cpp │ ├── b491_less.cpp │ ├── b491_test.cpp │ └── pin.cpp ├── 史蒂芙的觀察日記 │ ├── MST_test.cpp │ ├── b483. 史蒂芙的觀察日記.cpp │ └── pin.cpp ├── 單調測試 │ └── monotone.cpp ├── 圖片匹配 │ ├── b451_FFT.cpp │ ├── b451_FFT2.cpp │ ├── b451_NTT.cpp │ ├── b451_NTT_CRT.cpp │ ├── b451_brute.cpp │ ├── pin.cpp │ └── py │ │ ├── README.md │ │ ├── find.jpg │ │ ├── find2.jpg │ │ ├── find3.jpg │ │ ├── find5.jpg │ │ ├── find6.jpg │ │ ├── find7.jpg │ │ ├── img2txt.py │ │ ├── picture.jpg │ │ ├── picture2.jpg │ │ ├── picture3.jpg │ │ ├── picture5.jpg │ │ ├── picture6.jpg │ │ └── picture7.jpg ├── 多維範圍詢問 │ ├── brute.cpp │ ├── rangetree.cpp │ └── testdata_generate.cpp ├── 妮可密碼 │ ├── brute.cpp │ ├── in.txt │ ├── inker.cpp │ ├── out.txt │ ├── password.txt │ ├── sol.cpp │ ├── sol_inker.cpp │ ├── sol_morris.cpp │ └── testdata_generate.cpp ├── 妮可工作 │ ├── nick.cpp │ ├── nick2.cpp │ └── pin.cpp ├── 子字串集合 │ ├── pin.cpp │ ├── 子字串排序.cpp │ ├── 子字串排序v2.cpp │ ├── 子字串排序v3.cpp │ ├── 子字串排序v4.cpp │ └── 子字串集合v5.cpp ├── 學姊日談 │ ├── brute.cpp │ ├── flere2.md │ ├── morris_sol.cpp │ ├── problem.aux │ ├── problem.log │ ├── problem.pdf │ ├── problem.synctex.gz │ ├── problem.tex │ └── testdata_generate.cpp ├── 少女與戰車 │ ├── brute.cpp │ ├── tank.cpp │ ├── tank │ │ ├── pp1.png │ │ ├── pp10.jpg │ │ ├── pp11.png │ │ ├── pp2.png │ │ ├── pp3.jpg │ │ ├── pp4.jpg │ │ ├── pp5.png │ │ ├── pp6.png │ │ ├── pp7.jpg │ │ ├── pp8.png │ │ ├── pp9.jpg │ │ ├── snow.png │ │ ├── snowbackground.jpg │ │ └── test.html │ └── testdata_generate.cpp ├── 平面最小生成樹 │ ├── brute.cpp │ ├── pin.cpp │ └── 平面最小生成樹.cpp ├── 快取實驗 矩陣乘法 │ ├── QQ圖片20150709192224.png │ ├── pin.cpp │ ├── prob.cpp │ ├── solve.cpp │ └── test.PNG ├── 快取置換機制 │ ├── b439.cpp │ └── pin.cpp ├── 找出最長共同子序列 │ ├── LCS.cpp │ └── pin.cpp ├── 搜索美學 史蒂芙的煩惱 │ ├── b446.cpp │ ├── b446[CDQ].cpp │ ├── b446[test].cpp │ └── pin.cpp ├── 攻城掠地 │ ├── 2Drangetree.cpp │ ├── brute_solution1.cpp │ ├── brute_solution2.cpp │ ├── brute_solution3.cpp │ ├── pin.cpp │ ├── quadtree_solution.cpp │ └── strip_solution.cpp ├── 最近餐館 │ ├── brute.cpp │ ├── sol.cpp │ └── testdata_generate.cpp ├── 期望試驗 快速冪次 │ ├── L2R2.cpp │ ├── L2RS.cpp │ ├── R2L.cpp │ ├── cheat.cpp │ ├── pin.cpp │ └── test.cpp ├── 樹形鎖頭 │ ├── brute.cpp │ ├── morris_sol.cpp │ ├── testdata_generate.cpp │ └── tree.pptx ├── 河道分界 │ ├── in.txt │ ├── out.txt │ ├── pin.cpp │ ├── river.ggb │ └── test.cpp ├── 災難再臨 │ ├── brute.cpp │ ├── image.PNG │ ├── morris_sol.cpp │ ├── testdata_generate.cpp │ ├── 投影片1.JPG │ ├── 投影片10.JPG │ ├── 投影片11.JPG │ ├── 投影片12.JPG │ ├── 投影片13.JPG │ ├── 投影片2.JPG │ ├── 投影片3.JPG │ ├── 投影片4.JPG │ ├── 投影片5.JPG │ ├── 投影片6.JPG │ ├── 投影片7.JPG │ ├── 投影片8.JPG │ └── 投影片9.JPG ├── 神魔之塔 │ ├── inker.md │ └── inker2.cpp ├── 竹馬不敵天降 │ ├── brute.cpp │ ├── solution.cpp │ └── testdata_generate.cpp ├── 等高線 │ ├── brute.cpp │ ├── rect.cpp │ └── testdata_generate.cpp ├── 簡單乘法 │ ├── b430. 簡單乘法[cheat].cpp │ ├── b430.cpp │ └── pin.cpp ├── 虛擬女友 │ ├── b413.cpp │ ├── brute.cpp │ ├── pin.cpp │ ├── 虛擬女友.html │ └── 虛擬女友.md ├── 計畫巧遇 │ ├── brute.cpp │ ├── flere.md │ ├── in.txt │ ├── morris_sol.cpp │ ├── out1.txt │ ├── problem.aux │ ├── problem.log │ ├── problem.pdf │ ├── problem.synctex.gz │ ├── problem.tex │ └── testdata_generate.cpp ├── 誤會妹子序列 │ ├── b416[bit].cpp │ ├── b416[kd-tree][tle].cpp │ ├── b416[mo].cpp │ └── b416[segtree].cpp ├── 變態史考古 錯誤報導篇 │ ├── b487. 變態史考古 錯誤報導篇.cpp │ ├── b487_less.cpp │ ├── b487_test.cpp │ └── pin.cpp ├── 變態史考古 │ ├── b486. 變態史考古.cpp │ ├── b486. 變態史考古2.cpp │ ├── b486_double.cpp │ ├── b486_test.cpp │ └── pin.cpp ├── 趣味加分 │ ├── 11715957_1002362819776927_590049764_n.jpg │ ├── b432.cpp │ ├── b432[brute].cpp │ ├── b432[v2].cpp │ └── pin.cpp ├── 輸出優化練習 │ ├── b415.cpp │ └── pin.cpp ├── 障礙物轉換 │ ├── demo.ggb │ ├── demo.png │ ├── demo2.ggb │ ├── demo2.png │ ├── minkowskiSum.cpp │ ├── minkowskiSum2.cpp │ ├── pin2.cpp │ ├── 螢幕快照 2015-06-03 下午12.50.17.png │ └── 螢幕快照 2015-06-03 下午3.18.05.png ├── 離散對數 │ ├── b429.cpp │ └── pin.cpp └── 順來逆受 │ ├── sol.cpp │ └── testdata_generate.cpp ├── practice ├── MOCC │ ├── [MOCC][week6]A.cpp │ ├── [MOCC][week9]A.cpp │ ├── [MOCC][week9]B.cpp │ ├── [MOCC][week9]C.cpp │ ├── [MOCC][week9]D.cpp │ ├── [MOCC][week9]E.cpp │ └── [MOCC][week9]X.cpp ├── python │ ├── Absolute sorting.py │ ├── Binary count.py │ ├── Boolean Algebra.py │ ├── Building Base.py │ ├── Common Words.py │ ├── Count Inversions[BIT].py │ ├── Days Between.py │ ├── Digits Multiplication.py │ ├── Even the last.py │ ├── Fizz Buzz.py │ ├── Friends.py │ ├── Index Power.py │ ├── Median.py │ ├── Monkey Typing.py │ ├── Monkey Typing[v2].py │ ├── Number Base.py │ ├── Number Base[v2].py │ ├── Pangram.py │ ├── README.md │ ├── Right to Left.py │ ├── The Most Numbers.py │ ├── The end of other.py │ └── Three words.py └── unknown │ ├── 18豆.cpp │ ├── 2013.cpp │ ├── 2013CCPC[ProblemSet].pdf │ ├── 2038 - Strategic game.cpp │ ├── 2048sim.cpp │ ├── 2048sim[v2].cpp │ ├── A-Star K短.cpp │ ├── ArrayInitTest.cpp │ ├── Big Number of Teams will Solve This ~.cpp │ ├── C++ use dir.cpp │ ├── COLOR執行.jpg │ ├── DDD2.cpp │ ├── DLS.cpp │ ├── DP.txt │ ├── DS-6.cpp │ ├── DSE.cpp │ ├── Digital 顯示.cpp │ ├── E7.java │ ├── EllysXors.cpp │ ├── Empty.cpp │ ├── Exp.cpp │ ├── Force.cpp │ ├── Gray.cpp │ ├── HASH │ ├── HASH.cpp │ ├── HASH.dev │ ├── HASH.h │ ├── Makefile.win │ └── main.cpp │ ├── HW5 huffmancode.cpp │ ├── Hackup1.cpp │ ├── ICOCCC.c │ ├── ITSAP2.cpp │ ├── LCA.cpp │ ├── LCAoffline.cpp │ ├── LineSE.cpp │ ├── MD5 │ ├── Hash_1.0.4_XiaZaiBa.exe │ ├── MD5.cpp │ ├── MD5.exe │ ├── MD5修正.cpp │ ├── MD5修正.exe │ ├── 網路MD5.cpp │ └── 網路MD5.exe │ ├── MakeMaze.cpp │ ├── Math.cpp │ ├── MinCostMaxFlow.cpp │ ├── MinExp.cpp │ ├── Modular multiplicative inverse.cpp │ ├── NCPC2011 ProblemH.cpp │ ├── NFA2DFA.cpp │ ├── NFA2DFA[v2].cpp │ ├── NFAtoDFS.cpp │ ├── PHP作業 │ ├── lesson9.php │ ├── php_session2.php │ ├── phphw3.jpg │ ├── phphw4.PNG │ ├── 第八章 日期時間的應用.ppt │ ├── 第六章 陣列的使用.ppt │ └── 第十一章_物件導向簡述.ppt │ ├── Pro_Con.c │ ├── Problem 1. code.cpp │ ├── Problem 2. Statistics.cpp │ ├── Problem 3. Path of Certain Length.cpp │ ├── Problem 4. Partitioning a ladder.cpp │ ├── Problem F.docx │ ├── Problem H - Tree.cpp │ ├── Problem H.docx │ ├── Problem1.cpp │ ├── Problem3.cpp │ ├── Problem4.cpp │ ├── PrombleF.cpp │ ├── PrombleK.cpp │ ├── RaceCon.c │ ├── RegexToNFA[simple].cpp │ ├── RegexToNFA[simple][v2].cpp │ ├── RegexToNFA[simple][v3].cpp │ ├── SA.c │ ├── Sagit's 計分程式.cpp │ ├── SegmentTree(2D).cpp │ ├── SipPatLa.cpp │ ├── SuffixArray(rewrite).c │ ├── SuffixArray(rewrite).cpp │ ├── TC模版.c │ ├── Trie.cpp │ ├── Trie[非遞迴].cpp │ ├── W3-100502205-楊翔雲.docx │ ├── [PTC][11.12] E - Kingdom Tour.cpp │ ├── addressAddTest.cpp │ ├── algorithmhw.c │ ├── bee.cpp │ ├── bignumber │ ├── Bignumber.cpp │ └── Bignumber_sin.cpp │ ├── bitfield.cpp │ ├── brainfuckG.c │ ├── cmdUse.c │ ├── complierHW3.cpp │ ├── dancinglink.cpp │ ├── definetest.cpp │ ├── det.cpp │ ├── det_org.cpp │ ├── dp2-slides.pdf │ ├── easy1.cpp │ ├── guw6@.jpg │ ├── hw1p2.c │ ├── itself.cpp │ ├── know_SA.cpp │ ├── link list AVL.cpp │ ├── linked list.cpp │ ├── liouzhou_101_code.cpp │ ├── minCoverCircle.cpp │ ├── onefor.cpp │ ├── pout.cpp │ ├── printitself.cpp │ ├── rand_not_array.cpp │ ├── runDFA.cpp │ ├── runTeam.cpp │ ├── sort ALL │ ├── A153(1).c │ ├── A153(2).c │ ├── A153(3).c │ ├── A153.c │ ├── AVL tree.cpp │ ├── Heap sort.cpp │ ├── QuickSort.cpp │ ├── Splay sort.cpp │ ├── 分堆插入.cpp │ └── 新文件2.cpp │ ├── srm553_250pt.cpp │ ├── srm553_500pt.cpp │ ├── stack_maze.cpp │ ├── templateForIO.cpp │ ├── test.cpp │ ├── testCout.cpp │ ├── testForArrayAddress.cpp │ ├── testForTemplate.cpp │ ├── textAnimatin.c │ ├── threadsample.cpp │ ├── union.cpp │ ├── unrarAll.cpp │ ├── virtualMethodText.cpp │ ├── 傳統排列.cpp │ ├── 內件排序.cpp │ ├── 區間MAX.cpp │ ├── 反矩陣.cpp │ ├── 圓交.cpp │ ├── 基數排序.cpp │ ├── 好多因子.cpp │ ├── 學長委託 │ ├── [HW5-4] A Simple Channel Router.cpp │ ├── [HW5-4] A Simple Channel Router.exe │ ├── [HW5-4] A Simple Channel Router.o │ ├── cmd.exe.lnk │ ├── input.txt │ └── prog5_4.pdf │ ├── 快速排列.cpp │ ├── 接線.png │ ├── 數獨求姊.cpp │ ├── 最小生成樹.cpp │ ├── 正式模仿.cpp │ ├── 正式模仿.exe │ ├── 跑關.cpp │ ├── 重疊區間個數[force].cpp │ ├── 重疊區間個數[nlogn].cpp │ └── 電話客服中心.cpp ├── temp ├── 10366 - Faucet Flow.cpp ├── 10384 - The Wall Pushers.cpp ├── 10561 - Treblecross.cpp ├── 10618 - Tango Tango Insurrection.cpp ├── 10641 - Barisal Stadium.cpp ├── 10663 - Non-Powerful Subsets.cpp ├── 10824 - Regular Polygon.cpp ├── 10837 - A Research Problem.cpp ├── 10868 - Bungee Jumping.cpp ├── 10886 - Standard Deviation.cpp ├── 10989 - Bomb, Divide and Conquer.cpp ├── 11013 - Get Straight.cpp ├── 11082 - Matrix Decompressing.cpp ├── 11117 - Little Quilt.cpp ├── 1120 - No Change.cpp ├── 11256 - Repetitive Multiple.cpp ├── 11277 - Cyclic Polygons.cpp ├── 11440 - Help Tomisu.cpp ├── 11465 - Count the Polygons.cpp ├── 11468 - Substring.cpp ├── 11490 - Just Another Problem.cpp ├── 11522 - Pyramid Number.cpp ├── 11534 - Say Goodbye to Tic-Tac-Toe.cpp ├── 11665 - Chinese Ink.cpp ├── 11681 - Tower for Cellular Telephony.cpp ├── 11694 - Gokigen Naname.cpp ├── 1175 - Ladies' Choice.cpp ├── 11779 - Lost File.cpp ├── 11809 - Floating-Point Numbers.cpp ├── 11840 - Tic-tac-toe.cpp ├── 11846 - Finding Seats Again.cpp ├── 11853 - Paintball.cpp ├── 11904 - One Unit Machine.cpp ├── 11927 - Games Are Important.cpp ├── 11982 - Fantasy Cricket.cpp ├── 12061 - Overlaying Maps.cpp ├── 12093 - Protecting Zonk.cpp ├── 12099 - The Bookcase.cpp ├── 12107 - Digit Puzzle.cpp ├── 12107 - Digit Puzzle[BFS][TLE].cpp ├── 12130 - Summits.cpp ├── 12170 - Easy Climb.cpp ├── 12171 - Sculpture.cpp ├── 12214 - Traffic Jam.cpp ├── 12222 - Mountain Road.cpp ├── 12227 - Wormholes.cpp ├── 12253 - Simple Encryption.cpp ├── 12285 - Knockout Tournaments.cpp ├── 12296 - Pieces and Discs.cpp ├── 12308 - Smallest Enclosing Box.cpp ├── 12323 - Inspecting Radars.cpp ├── 12367 - Binary Matrix.cpp ├── 12369 - Cards.cpp ├── 12400 - 3, 2, 1, 0.cpp ├── 12415 - Digit Patterns[RE].cpp ├── 12451 - Let's call SPaDe a SPaDe.cpp ├── 12472 - Binary Substring.cpp ├── 12492 - Rubik Cycle.cpp ├── 12528 - Environment Protection.cpp ├── 12528 - Environment Protection[simpson].cpp ├── 12549 - Sentry Robots.cpp ├── 12558 - Egyptian Fractions (HARD version)[TLE].cpp ├── 12559 - Finding Black Circles.cpp ├── 12559 - Finding Black Circles[FFT][TLE].cpp ├── 12563 - Jin Ge Jin Qu hao.cpp ├── 12569 - Planning mobile robot on Tree (EASY Version).cpp ├── 12580 - Yell Classico.cpp ├── 12664 - Interesting Calculator.cpp ├── 12668 - Attacking rooks.cpp ├── 12699 - See Emily Play.cpp ├── 12787 - Looking-Glass House.cpp ├── 12789 - Space Invaders.cpp ├── 1303 - Wall.cpp ├── 1304 - Art Gallery.cpp ├── 1351 - String Compression.cpp ├── 1351 - String Compression[v2].cpp ├── 1380 - A Scheduling Problem.cpp ├── 1393 - Highways.cpp ├── 1398 - Meteor.cpp ├── 1407 - Caves.cpp ├── 1412 - Fund Management.cpp ├── 1416 - Warfare And Logistics.cpp ├── 1418 - WonderTeam.cpp ├── 1420 - Priest John's Busiest Day.cpp ├── 1424 - Salesmen.cpp ├── 1434 - YAPTCHA.cpp ├── 1436 - Counting heaps.cpp ├── 1437 - String painter.cpp ├── 1439 - Exclusive Access 2.cpp ├── 1442 - Cav.cpp ├── 1443 - Garlands.cpp ├── 1445 - Cubist Artwork.cpp ├── 1455 - Kingdom.cpp ├── 1471 - Defense Lines.cpp ├── 1473 - Dome of Circus.cpp ├── 1474 - Evacuation Plan.cpp ├── 1476 - Error Curves.cpp ├── 1478 - Delta Wave.cpp ├── 1478 - Delta Wave[v2].cpp ├── 1481 - Genome Evolution.cpp ├── 1484 - Alice and Bob's Trip.cpp ├── 1485 - Permutation Counting.cpp ├── 1486 - Transportation[v2].cpp ├── 1515 - Pool construction.cpp ├── 1521 - GCD Guessing Game.cpp ├── 1533 - Moving Pegs.cpp ├── 1543 - Telescope.cpp ├── 1580 - Pirate Chest.cpp ├── 1589 - Xiangqi.cpp ├── 1591 - Data Mining.cpp ├── 1593 - Alignment of Code.cpp ├── 1596 - Bug Hunt.cpp ├── 1597 - Searching the Web.cpp ├── 1598 - Exchange.cpp ├── 1599 - Ideal Path.cpp ├── 1601 - The Morning after Halloween[DoubleBfs].cpp ├── 1601 - The Morning after Halloween[bfs].cpp ├── 1602 - Lattice Animals.cpp ├── 1603 - Square Destroyer.cpp ├── 1604 - Cubic Eight-Puzzle[BFS].cpp ├── 1606 - Amphiphilic Carbon Molecules.cpp ├── 1607 - Gates.cpp ├── 1609 - Foul Play.cpp ├── 1611 - Crane.cpp ├── 1612 - Guess.cpp ├── 1613 - K-Graph Oddity.cpp ├── 1615 - Highway.cpp ├── 1616 - Caravan Robbers.cpp ├── 1617 - Laptop.cpp ├── 1618 - Weak Key.cpp ├── 1619 - Feel Good.cpp ├── 1620 - Lazy Susan.cpp ├── 1623 - Enter The Dragon.cpp ├── 1624 - Knots.cpp ├── 1628 - Pizza Delivery.cpp ├── 1630 - Folding.cpp ├── 1631 - Locker.cpp ├── 1633 - Dyslexic Gollum.cpp ├── 1634 - The Picnic.cpp ├── 1637 - Double Patience.cpp ├── 1639 - Candy.cpp ├── 1643 - Angle and Squares.cpp ├── 1648 - Business Center.cpp ├── 1650 - Number String.cpp ├── 1653 - Yet Another Multiple Problem.cpp ├── 1654 - Pairs of integers.cpp ├── 1658 - Admiral.cpp ├── 1660 - Cable TV Network.cpp ├── 1661 - Equation.cpp ├── 1662 - Brackets Removal.cpp ├── 1663 - Purifying Machine.cpp ├── 1664 - Conquer a New Region.cpp ├── 1666 - Walk.cpp ├── 1667 - Network Mess.cpp ├── 1668 - Let's Go Green.cpp ├── 1669 - Holiday's Accommodatio.cpp ├── 1670 - Kingdom Roadmap.cpp ├── 1671 - History of Languages.cpp ├── 1672 - Disjoint Regular Expressions.cpp ├── 1684 - Escape Plan.cpp ├── 1687 - Slicing Tree[fixed].cpp ├── 1692 - Labyrinth of the Minotaur.cpp ├── 303 - Pipe.cpp ├── SGU - 383 Caravans[v2].cpp ├── SGU 383 - Caravans.cpp ├── UVaDate │ ├── 10011 - Where Can You Hide.cpp │ ├── 10021 - Cube in the labirint.cpp │ ├── 10027 - Language Cardinality.cpp │ ├── 10068 - The Treasure Hunt.cpp │ ├── 10134 - AutoFish.cpp │ ├── 10225 - Discrete Logging.cpp │ ├── 1032 - Intersecting Dates.cpp │ ├── 10390 - Bean Counting.cpp │ ├── 10514 - River Crossing.cpp │ ├── 10575 - Polylops.cpp │ ├── 10711 - Stitching.cpp │ ├── 1075 - Painter.cpp │ ├── 1075 - Painter[simple].cpp │ ├── 1077 - The Sky is the Limit.cpp │ ├── 1077 - The Sky is the Limit[v2].cpp │ ├── 1077 - The Sky is the Limit[v3].cpp │ ├── 10942 - Can of Beans.cpp │ ├── 11284 - Shopping Trip.cpp │ ├── 11562 - Hard Evidence.cpp │ ├── 11619 - SPAM! (or not).cpp │ ├── 11856 - Ferry Loading V.cpp │ ├── 11916 - Emoogle Grid.cpp │ ├── 12139 - Clicking Checkboxes.cpp │ ├── 12140 - Magic Rings.cpp │ ├── 12140 - Magic Rings[v2].cpp │ ├── 12178 - Postal Charges.cpp │ ├── 12185 - Wizards.cpp │ ├── 12213 - Camera in the Museum.cpp │ ├── 12223 - Moving to Nuremberg.cpp │ ├── 12244 - Growing Strings.cpp │ ├── 12264 - Risk.cpp │ ├── 12311 - All-Pair Farthest Points[AC].cpp │ ├── 12358 - Candy's Candy.cpp │ ├── 12361 - File Retrieval.cpp │ ├── 12361 - File Retrieval[hash].cpp │ ├── 12373 - Pair of Touching Circles.cpp │ ├── 12378 - Ball Blasting Game.cpp │ ├── 12409 - Kisu Pari Na - 1.cpp │ ├── 12430 - Grand Wedding.cpp │ ├── 12430 - Grand Wedding[v2].cpp │ ├── 12437 - Kisu Pari Na 2.cpp │ ├── 12499 - I am Dumb 3.cpp │ ├── 12522 - The Imperial Problem.cpp │ ├── 12533 - Joining Couples.cpp │ ├── 12574 - VOID.cpp │ ├── 12585 - Poker End Games.cpp │ ├── 12605 - Ripple Effect.cpp │ ├── 12616 - Gymman vs Fila.cpp │ ├── 12647 - Balloon.cpp │ ├── 12647 - Balloon[v2].cpp │ ├── 12647 - Balloon[v3].cpp │ ├── 12676 - Inverting Huffman.cpp │ ├── 12688 - Spanning trees in a secure lock pattern.cpp │ ├── 12901 - Refraction.cpp │ ├── 12906 - Maximum Score.cpp │ ├── 12907 - Toby the adventurer.cpp │ ├── 12908 - The book thief.cpp │ ├── 12909 - Numeric Center.cpp │ ├── 12910 - Snakes and Ladders.cpp │ ├── 12911 - Subset sum.cpp │ ├── 12911 - Subset sum[hash2].cpp │ ├── 12911 - Subset sum[hash].cpp │ ├── 12912 - Josephus lottery.cpp │ ├── 12912 - Josephus lottery[nlogn].cpp │ ├── 12913 - Grounded.cpp │ ├── 12914 - Sum of all permutations.cpp │ ├── 12916 - Perfect Cyclic String.cpp │ ├── 12917 - Prop hunt!.cpp │ ├── 12918 - Lucky Thief.cpp │ ├── 12919 - Making some holes.pp.cpp │ ├── 12920 - Patty's Gift.cpp │ ├── 12921 - Triple shot.cpp │ ├── 12922 - Crossing the river.cpp │ ├── 12923 - The Island.cpp │ ├── 12924 - Immortal Rabbits.cpp │ ├── 12926 - Trouble in Terrorist Town.cpp │ ├── 12927 - Points Cover.cpp │ ├── 12928 - Death Star.cpp │ ├── 1391 - Astronauts.cpp │ ├── 1542 - BSP Trees.cpp │ ├── 1554 - Binary Search.cpp │ ├── 1687 - Slicing Tree[fixed].cpp │ ├── 1707 - Surveillance.cpp │ ├── 335 - Processing MX Records.cpp │ ├── 395 - Board Silly.cpp │ ├── 405 - Message Routing.cpp │ ├── 603 - Parking Lot.cpp │ ├── 656 - Optimal Programs.cpp │ ├── 659 - Reflections.cpp │ ├── ACM12647.cpp │ ├── DMST.cpp │ ├── GaloisField.cpp │ ├── HDU 5097 - Page Rank.cpp │ ├── Problem9.cpp │ ├── flere201501I[dreamoon_hint2].cpp │ ├── flere201501I[dreamoon_hint].cpp │ ├── flere201501I[v3].cpp │ └── gmon.out ├── a822. 101學年度桃竹苗區資訊學科能力競賽 5.滾球遊戲.cpp ├── b122. 用餐地點 (Lunch).cpp ├── b256. E. 大風吹.cpp ├── b298[ANSI C].c ├── b327.cpp ├── b348. 最近餐館.cpp ├── d739.cpp ├── d739[maxflow].cpp ├── prob_solve1298.cpp └── test.cpp ├── volume001 ├── 100 - The 3n + 1 problem.cpp ├── 100 - The 3n + 1 problem[zkw].cpp ├── 102 - Ecological Bin Packing.cpp ├── 103 - Stacking Boxes.cpp ├── 104 - Arbitrage.cpp ├── 109 - SCUD Busters.cpp ├── 110 - Meta-Loopless Sorts.c ├── 111 - History Grading.cpp ├── 112 - Tree Summing.cpp ├── 113 - Power of Cryptography.cpp ├── 117 - The Postal Worker Rings Once.cpp ├── 118 - Mutant Flatworld Explorers.c ├── 119 - Greedy Gift Givers.cpp ├── 120 - Stacks of Flapjacks.cpp ├── 121 - Pipe Fitters.cpp ├── 123 - Searching Quickly.cpp ├── 124 - Following Orders.cpp ├── 125 - Numbering Paths.cpp ├── 128 - Software CRC.cpp ├── 132 - Bumpy Objects.cpp ├── 133 - The Dole Queue.cpp ├── 134 - Loglan-A Logical Language.cpp ├── 135 - No Rectangles.cpp ├── 136 - Ugly Numbers.cpp ├── 139 - Telephone Tangles.cpp ├── 140 - Bandwidth.cpp ├── 141 - The Spot Game.cpp ├── 143 - Orchard Trees.cpp ├── 144 - Student Grants.cpp ├── 145 - Gondwanaland Telecom.cpp ├── 146 - ID Codes.cpp ├── 148 - Anagram checker.cpp ├── 149 - Forests.cpp ├── 150 - Double Time.cpp ├── 151 - Power Crisis.cpp ├── 152 - Tree's a Crowd.cpp ├── 153 - Permalex.cpp ├── 154 - Recycling.cpp ├── 155 - All Squares.cpp ├── 156 - Ananagrams.cpp ├── 157 - Route Finding.cpp ├── 158 - Calendar.cpp ├── 160 - Factors and Factorials.cpp ├── 161 - Traffic Lights.cpp ├── 163 - City Directions.cpp ├── 164 - String Computer.cpp ├── 165 - Stamps.cpp ├── 166 - Making Change.cpp ├── 167 - The Sultan's Successors.cpp ├── 170 - Clock Patience.cpp ├── 171 - Car Trialling.cpp ├── 172 - Calculator Language.cpp ├── 172 - Calculator Language[v2].cpp ├── 174 - Strategy.cpp ├── 177 - Paper Folding.cpp ├── 181 - Hearts.cpp ├── 184 - Laser Lines.cpp ├── 185 - Roman Numerals.cpp ├── 187 - Transaction Processing.cpp ├── 188 - Perfect Hash.cpp ├── 190 - Circle Through Three Points.cpp ├── 191 - Intersection.cpp ├── 193 - Graph Coloring.cpp └── 198 - Peter's Calculator.cpp ├── volume002 ├── 200 - Rare Order.cpp ├── 201 - Squares.cpp ├── 202 - Repeating Decimals.cpp ├── 206 - Meals on Wheels Routing System.cpp ├── 208 - Firetruck.cpp ├── 209 - Triangular Vertices.cpp ├── 210 - Concurrency Simulator.cpp ├── 212 - Use of Hospital Facilities.cpp ├── 213 - Message Decoding.cpp ├── 214 - Code Generation.cpp ├── 215 - Spreadsheet Calculator.cpp ├── 216 - Getting in Line.cpp ├── 218 - Moth Eradication.cpp ├── 220 - Othello.cpp ├── 221 - Urban Elevations.cpp ├── 222 - Budget Travel.c ├── 225 - Golygons.cpp ├── 227 - Puzzle.cpp ├── 229 - Scanner.cpp ├── 231 - Testing the CATCHER.cpp ├── 232 - Crossword Answers.cpp ├── 233 - Package Pricing.cpp ├── 238 - Jill's Bike.cpp ├── 239 - Tempus et mobilius. Time and motion.cpp ├── 242 - Stamps and Envelope Size.cpp ├── 245 - Uncompress.cpp ├── 246 - 10-20-30.cpp ├── 247 - Calling Circles.cpp ├── 248 - Cutting Corners.cpp ├── 250 - Pattern Matching Prelims.cpp ├── 253 - Cube painting..c ├── 254 - Towers of Hanoi.cpp ├── 254 - Towers of Hanoi_sol.cpp ├── 255 - Correct Move.cpp ├── 256 - Quirksome Squares.cpp ├── 257 - Palinwords.cpp ├── 263 - Number Chains.cpp ├── 264 - Count on Cantor.cpp ├── 265 - Dining Diplomats.cpp ├── 268 - Double Trouble.cpp ├── 269 - Counting Patterns.cpp ├── 270 - Lining Up.cpp ├── 271 - Simply Syntax.cpp ├── 272 - TEX Quotes.cpp ├── 273 - Jack Straws.cpp ├── 276 - Egyptian Multiplication.cpp ├── 277 - Cabinets.cpp ├── 280 - Vertex.cpp ├── 282 - Rename.cpp ├── 290 - Palindroms --- smordnilaP.cpp ├── 291 - The House Of Santa Claus.cpp ├── 292 - Presentation Error.cpp ├── 296 - Safebreaker.cpp ├── 297 - Quadtrees.c ├── 298 - Race Tracks.cpp └── 299 - Train Swapping.cpp ├── volume003 ├── 300 - Maya Calendar.cpp ├── 302 - John's trip.cpp ├── 307 - Sticks.cpp ├── 308 - Tin Cutter.cpp ├── 313 - Intervals.cpp ├── 315 - Network.cpp ├── 320 - Border.cpp ├── 324 - Factorial Frequencies.cpp ├── 325 - Identifying Legal Pascal Real Constants.cpp ├── 326 - Extrapolation Using a Difference Table.cpp ├── 327 - Evaluating Simple C Expressions.cpp ├── 331 - Mapping the Swaps.cpp ├── 333 - Recognizing Good ISBNs.cpp ├── 334 - Identifying Concurrent Events.cpp ├── 336 - A Node Too Far.cpp ├── 338 - Long Multiplication.cpp ├── 341 - Non-Stop Travel.cpp ├── 343 - What Base Is This.cpp ├── 344 - Roman Digititis.cpp ├── 345 - It's Ir-Resist-Able.cpp ├── 347 - Run.cpp ├── 348 - Optimal Array Multiplication Sequence.cpp ├── 349 - Transferable Voting (II).cpp ├── 352 - The Seasonal War.cpp ├── 353 - Pesky Palindromes.cpp ├── 355 - The Bases Are Loaded.cpp ├── 356 - Square Pegs And Round Holes.cpp ├── 357 - Let Me Count The Ways.c ├── 358 - Don't Have A Cow.cpp ├── 361 - Cops and Robbers.cpp ├── 362 - 18,000 Seconds Remaining.cpp ├── 369 - Combinations.cpp ├── 372 - WhatFix Notation.cpp ├── 374 - Big Mod.cpp ├── 375 - Inscribed Circles and Isosceles Triangles.cpp ├── 378 - Intersecting Lines.cpp ├── 381 - Making the Grade.cpp ├── 382 - Perfection.cpp ├── 384 - Slurpys.cpp ├── 385 - DNA Translation.cpp ├── 387 - A Puzzling Problem.cpp ├── 389 - Basically Speaking.cpp ├── 391 - Mark-up.cpp ├── 392 - Polynomial Showdown.cpp └── 397 - Equation Elation.cpp ├── volume004 ├── 400 - Unix ls.cpp ├── 401 - Palindromes.cpp ├── 402 - MASH.cpp ├── 403 - Postscript.cpp ├── 406 - Prime Cuts.cpp ├── 408 - Uniform Generator.cpp ├── 409 - Excuses, Excuses.cpp ├── 412 - Pi.cpp ├── 412 - Pi[Neton].cpp ├── 413 - Up and Down Sequences.c ├── 414 - Machined Surfaces.cpp ├── 416 - LED Test.cpp ├── 417 - Word Index.cpp ├── 422 - Word-Search Wonder.cpp ├── 423 - MPI Maelstrom.cpp ├── 424 - Integer Inquiry.cpp ├── 427 - FlatLand Piano Movers.cpp ├── 428 - Swamp County Roofs.cpp ├── 429 - Word Transformation.cpp ├── 433 - Bank.cpp ├── 435 - Block Voting.cpp ├── 436 - Arbitrage (II).cpp ├── 437 - The Tower of Babylon.cpp ├── 438 - The Circumference of the Circle.cpp ├── 440 - Eeny Meeny Moo.cpp ├── 441 - Lotto.c ├── 442 - Matrix Chain Multiplication.cpp ├── 443 - Humble Numbers.cpp ├── 444 - Encoder and Decoder.cpp ├── 445 - Marvelous Mazes.c ├── 447 - Population Explosion.cpp ├── 448 - OOPS.cpp ├── 450 - Little Black Book.cpp ├── 451 - Poker Solitaire Evaluator.cpp ├── 452 - Project Scheduling.cpp ├── 453 - Intersecting Circles.cpp ├── 454 - Anagrams.cpp ├── 455 - Periodic Strings.cpp ├── 456 - Robotic Stacker.cpp ├── 458 - The Decoder.cpp ├── 459 - Graph Connectivity.cpp ├── 460 - Overlapping Rectangles.c ├── 464 - Sentence.Phrase Generator.cpp ├── 465 - Overflow.cpp ├── 466 - Mirror Mirror.cpp ├── 467 - Synching Signals.cpp ├── 468 - Key to Success.cpp ├── 469 - Wetlands of Florida.cpp ├── 471 - Magic Numbers.cpp ├── 473 - Raucous Rockers.cpp ├── 474 - Heads _ Tails Probability.c ├── 478 - Points in Figures Rectangles, Circles, Triangles.cpp ├── 482 - Permutation Arrays.cpp ├── 483 - Word Scramble.cpp ├── 484 - The Department of Redundancy Department.cpp ├── 486 - English-Number Translator.cpp ├── 487 - Boggle Blitz.cpp ├── 488 - Triangle Wave.cpp ├── 490 - Rotating Sentences.c ├── 492 - Pig-Latin.cpp ├── 493 - Rational Spiral.cpp ├── 494 - Kindergarten Counting Game.cpp ├── 496 - Simply Subsets.cpp ├── 497 - Strategic Defense Initiative.cpp ├── 498 - Polly the Polynomial.cpp └── 499 - What's The Frequency, Kenneth.c ├── volume005 ├── 501 - Black Box.cpp ├── 503 - Parallelepiped walk.cpp ├── 506 - System Dependencies.cpp ├── 507 - Jill Rides Again.cpp ├── 508 - Morse Mismatches.cpp ├── 509 - RAID!.cpp ├── 511 - Do You Know the Way to San Jose.cpp ├── 515 - King.cpp ├── 516 - Prime Land.cpp ├── 523 - Minimum Transport Cost.cpp ├── 526 - String Distance and Transform Process.cpp ├── 529 - Addition Chains.cpp ├── 531 - Compromise.cpp ├── 533 - Equation Solver.cpp ├── 535 - Globetrotter.cpp ├── 538 - Balancing Bank Accounts.cpp ├── 539 - The Settlers of Catan.cpp ├── 540 - Team Queue.cpp ├── 541 - Error Correction.cpp ├── 542 - France '98.cpp ├── 543 - Goldbach's Conjecture.cpp ├── 544 - Heavy Cargo.cpp ├── 545 - Heads.cpp ├── 547 - DDF.cpp ├── 548 - Tree.cpp ├── 550 - Multiplying by Rotation.cpp ├── 551 - Nesting a Bunch of Brackets.cpp ├── 552 - Filling the Gaps.cpp ├── 554 - Caesar Cypher.cpp ├── 555 - Bridge Hands.cpp ├── 558 - Wormholes.cpp ├── 558 - Wormholes2.cpp ├── 560 - Magic.cpp ├── 561 - Jackpot.cpp ├── 563 - Crimewave.cpp ├── 565 - Pizza Anyone.cpp ├── 567 - Risk.cpp ├── 571 - Jugs.cpp ├── 572 - Oil Deposits.cpp ├── 574 - Sum It Up.cpp ├── 575 - Skew Binary.cpp ├── 579 - ClockHands.cpp ├── 583 - Prime Factors.cpp ├── 585 - Triangles.cpp ├── 587 - There's treasure everywhere.cpp ├── 589 - Pushing Boxes.cpp ├── 590 - Always on the run.cpp ├── 591 - Box of Bricks.cpp ├── 592 - Island of Logic.cpp ├── 594 - One Little, Two Little, Three Little Endians.cpp └── 599 - The Forrest for the Trees.cpp ├── volume006 ├── 601 - The PATH.cpp ├── 612 - DNA Sorting.cpp ├── 614 - Mapping the Route.cpp ├── 615 - Is It A Tree.cpp ├── 616 - Coconuts, Revisited.cpp ├── 618 - Doing Windows.cpp ├── 620 - Cellular Structure.cpp ├── 621 - Secret Research.cpp ├── 622 - Grammar Evaluation.cpp ├── 623 - 500!.cpp ├── 624 - CD.cpp ├── 626 - Ecosystem.cpp ├── 627 - The Net.cpp ├── 628 - Passwords.cpp ├── 630 - Anagrams (II).cpp ├── 632 - Compression (II).cpp ├── 634 - Polygon.cpp ├── 636 - Squares (III).cpp ├── 638 - Finding Rectangles.cpp ├── 640 - Self Numbers.cpp ├── 640 - Self Numbers_v2.cpp ├── 641 - Do the Untwist.cpp ├── 642 - Word Amalgamation.cpp ├── 644 - Immediate Decodability.cpp ├── 652 - Eight.cpp ├── 657 - The die is cast.cpp ├── 662 - Fast Food.cpp ├── 665 - False coin.cpp ├── 669 - Defragment.cpp ├── 670 - The dog task.cpp ├── 671 - Spell checker.cpp ├── 673 - Parentheses Balance.cpp ├── 674 - Coin Change.cpp ├── 675 - Convex Hull of the Polygon.cpp ├── 677 - All Walks of length n from the first node.cpp ├── 681 - Convex Hull Finding.cpp ├── 684 - Integral Determinant.cpp ├── 685 - Least Path Cost.cpp ├── 686 - Goldbach's Conjecture (II).cpp ├── 688 - Mobile Phone Coverage.cpp ├── 694 - The Collatz Sequence.cpp ├── 694. Distinct Substrings.cpp ├── 698 - Index.cpp └── 699 - The Falling Leaves.cpp ├── volume007 ├── 700 - Date Bugs.cpp ├── 701 - The Archeologists' Dilemma.cpp ├── 705 - Slash Maze.cpp ├── 706 - LCD Display.cpp ├── 707 - Robbery.cpp ├── 708 - Dreisam Equations.cpp ├── 709 - Formatting Text.cpp ├── 711 - Dividing up.cpp ├── 712 - S-Trees.cpp ├── 713 - Adding Reversed Numbers.cpp ├── 714 - Copying Books.cpp ├── 715 - Substitution Cipher.cpp ├── 716 - Commedia dell' arte.cpp ├── 718 - Skyscraper Floors.cpp ├── 719 - Glass Beads.cpp ├── 721 - Invitation Cards.cpp ├── 722 - Lakes.cpp ├── 725 - Division.cpp ├── 726 - Decode.cpp ├── 729 - The Hamming Distance Problem.cpp ├── 731 - Numerical Summation of a Series.cpp ├── 732 - Anagrams by Stack.cpp ├── 737 - Gleaming the Cubes.cpp ├── 738 - A Logical Problem .cpp ├── 739 - Soundex Indexing.cpp ├── 740 - Baudot Data Communication Code.cpp ├── 741 - Burrows Wheeler Decoder.cpp ├── 745 - Numeric Puzzles Again.cpp ├── 746 - Polygon Visibility.cpp ├── 750 - 8 Queens Chess Problem.cpp ├── 751 - Triangle War.cpp ├── 752 - Unscrambling Images.pp.cpp ├── 753 - A Plug for UNIX.cpp ├── 754 - Treasure Hunt.cpp ├── 755 - 487--3279.cpp ├── 756 - Biorhythms.cpp ├── 757 - Gone-Fishing.cpp ├── 758 - The Same Game.cpp ├── 759 - The Return of the Roman Empire.cpp ├── 760 - DNA Sequencing.cpp ├── 762 - We Ship Cheap.cpp ├── 763 - Fibinary Numbers.c ├── 764 - Pentominos.cpp ├── 766 - Sum of powers.cpp ├── 775 - Hamiltonian Cycle.cpp ├── 775 - Hamiltonian Cycle2.cpp ├── 776 - Monkeys in a Regular Forest.cpp ├── 777 - Codebreakers.cpp ├── 782 - Contour Painting.cpp ├── 783 - Trains.cpp ├── 784 - Maze Exploration.cpp ├── 785 - Grid Colouring.cpp ├── 789 - Indexing.cpp ├── 793 - Network Connections.cpp ├── 795 - Sandorf's Cipher.cpp ├── 796 - Critical Links.cpp └── 799 - Safari Holiday.cpp ├── volume008 ├── 800 - Crystal Clear.cpp ├── 801 - Flight Planning.cpp ├── 804 - Petri Net Simulation.cpp ├── 805 - Polygon Intersections.cpp ├── 806 - Spatial Structures.cpp ├── 807 - Towers of Powers.cpp ├── 808 - Bee Breeding.cpp ├── 810 - A Dicey Problem.cpp ├── 811 - The Fortified Forest.cpp ├── 814 - The Letter Carrier's Rounds.cpp ├── 815 - Flooded.cpp ├── 816 - Abbott's Revenge.cpp ├── 817 - According to Bartjens.cpp ├── 818 - Cutting Chains.cpp ├── 821 - Page Hopping.c ├── 822 - Queue and A.cpp ├── 825 - Walking on the Safe Side.cpp ├── 828 - Deciphering Messages.cpp ├── 830 - Shark.cpp ├── 833 - Water Falls.cpp ├── 834 - Continued Fractions.cpp ├── 835 - Square of Primes (2).cpp ├── 835 - Square of Primes.cpp ├── 835 - Square of Primes2.cpp ├── 836 - Largest Submatrix.cpp ├── 837 - Light and Transparencies.cpp ├── 838 - Worm World[heap].cpp ├── 839 - Not so Mobile.cpp ├── 840 - Deadlock Detection.cpp ├── 843 - Crypt Kicker.cpp ├── 844 - Pousse.cpp ├── 846 - Steps.cpp ├── 852 - Deciding victory in Go.cpp ├── 855 - Lunch in Grid City.cpp ├── 860 - Entropy Text Analyzer.cpp ├── 861 - Little Bishops.cpp ├── 865 - Substitution Cypher.cpp ├── 866 - Intersecting Line Segments.cpp ├── 868 - Numerical Maze.cpp ├── 869 - Airline Comparison.cpp ├── 870 - Intersecting Rectangles.cpp ├── 871 - Counting Cells in a Blob.cpp ├── 872 - Ordering.cpp ├── 877 - Offset Polygons.cpp ├── 878 - Rotating Tetris Pieces.cpp ├── 879 - Circuit Nets.cpp ├── 880 - Cantor Fractions.cpp ├── 881 - Points, Polygons and Containers.cpp ├── 883 - Overlapping Rectangles.cpp ├── 889 - Islands.cpp ├── 892 - Finding words.cpp ├── 895 - Word Problem.cpp ├── 897 - Anagrammatic Primes.cpp └── 898 - Hole Cutter.cpp ├── volume009 ├── 902 - Password Search.cpp ├── 902 - Password Search[Trie].cpp ├── 904 - Overlapping Air Traffic Control Zones.cpp ├── 905 - Tacos Panchita.cpp ├── 906 - Rational Neighbor.cpp ├── 907 - Winterim Backpacking Trip.cpp ├── 908 - Re-connecting Computer Sites.cpp ├── 909 - The BitPack Data Compression Problem[v2].cpp ├── 914 - Jumping Champion.cpp ├── 915 - Stack of Cylinders.cpp ├── 918 - ASCII Mandelbrot.cpp ├── 920 - Sunny Mountains.cpp ├── 921 - A Word Puzzle in the Sunny Mountains.cpp ├── 924 - Spreading The News.cpp ├── 926 - Walking Around Wisely.cpp ├── 927 - Integer Sequences from Addition of Terms.cpp ├── 930 - Polynomial Roots.cpp ├── 932 - Checking the N-Queens Problem.cpp ├── 933 - Water Flow.cpp ├── 934 - Overlapping Areas.cpp ├── 938 - Gilix.cpp ├── 941 - Permutations. cpp.c ├── 941 - Permutations.cpp ├── 942 - Cyclic Numbers.cpp ├── 943 - Number Format Translator.cpp ├── 944 - Happy Numbers.cpp ├── 945 - Loading a Cargo Ship.cpp ├── 946 - A Pile of Boxes.cpp ├── 947 - Master Mind Helper.cpp ├── 950 - Tweedle Numbers.cpp ├── 953 - The Incredible Pile Machine.cpp ├── 953 - The Incredible Pile Machine[v2].cpp ├── 959 - Car Rallying.cpp ├── 963 - Spelling Corrector.cpp ├── 964 - Custom Language.cpp ├── 967 - Circular.cpp ├── 969 - AlienAlgebra.cpp ├── 970 - Particles.cpp ├── 972 - Horizon Line.cpp ├── 974 - Kaprekar Numbers.cpp ├── 979 - The Abominable Triangleman.cpp ├── 980 - X-Express.cpp ├── 982 - Cube.cpp ├── 983 - Localized Summing for Blurring.cpp ├── 988 - Many Paths, One Destination.cpp ├── 989 - Su Doku.c ├── 990 - Diving for Gold.cpp ├── 991 - Safe Salutations.c ├── 995 - Super Divisible Numbers.cpp ├── 996 - Find the Sequence.cpp ├── 997 - Show the Sequence.cpp └── 999 - Book signatures.cpp ├── volume010 ├── 1000 - Airport Configuration.cpp ├── 1001 - Say Cheese.cpp ├── 1006 - Fixed Partition Memory Management.cpp ├── 1007 - Professor Monotonic's Networks.cpp ├── 1008 - A Vexing Problem.cpp ├── 1009 - Balloons in a Box.cpp ├── 1011 - Crossing the Desert.cpp ├── 1013 - Island Hopping.cpp ├── 1018 - Building Bridges.cpp ├── 1019 - Light Bulbs.cpp ├── 1021 - Eurodiffusion.cpp ├── 1025 - A Spy in the Metro.cpp ├── 1026 - The Solar System.cpp ├── 1027 - Toll.cpp ├── 1029 - Heliport.cpp ├── 1030 - Image Is Everything.cpp ├── 1031 - Insecure in Prague.cpp ├── 1035 - Tree-Lined Streets.cpp ├── 1042 - Lots of Sunlight.cpp ├── 1043 - Crossing Streets.cpp ├── 1045 - The Great Wall Game.cpp ├── 1046 - Workshops.cpp ├── 1048 - Low Cost Air Travel.cpp ├── 1049 - Remember the A La Mode.cpp ├── 1051 - Bipartite Numbers[bfs2].cpp ├── 1051 - Bipartite Numbers[fail].cpp ├── 1054 - Pilgrimage.cpp ├── 1056 - Degrees of Separation.cpp ├── 1058 - Grand Prix.cpp ├── 1059 - Jacquard Circuits.cpp ├── 1063 - Marble Game.cpp ├── 1065 - Raising the Roof.cpp ├── 1067 - Tunnels.cpp ├── 1068 - Air Conditioning Machinery.cpp ├── 1069 - Always an integer.cpp ├── 1073 - Glenbow Museum.cpp ├── 1074 - Net Loss.cpp ├── 1075 - Painter.cpp ├── 1076 - Password Suspects.cpp ├── 1078 - Steam Roller.cpp ├── 1080 - My Bad.cpp ├── 1083 - Fare and Balanced.cpp ├── 1084 - Deer-Proof Fence.cpp ├── 1086 - The Ministers' Major Mess.cpp ├── 1089 - Suffix-Replacement Grammars.cpp ├── 1089 - Suffix-Replacement Grammars[dp].cpp ├── 1091 - Barcodes.cpp ├── 1093 - Castles.cpp └── 1099 - Sharing Chocolate.cpp ├── volume011 ├── 1100 - Paperweight.cpp ├── 1103 - Ancient Messages.cpp ├── 1104 - Chips Challenge.cpp ├── 1105 - Coffee Central.cpp ├── 1106 - Machine Works │ ├── 1106 - Machine Works.cpp │ ├── 1106 - Machine Works[opt-io-mem].cpp │ └── 1106 - Machine Works[opt-io].cpp ├── 1107 - Magic Sticks.cpp ├── 1108 - Mining Your Own Business.cpp ├── 1109 - Mummy Madness.cpp ├── 1110 - Pyramids.cpp ├── 1113 - Multiple Morse Matches.cpp ├── 1115 - Water Shortage.cpp ├── 1118 - Binary Stirling Numbers.cpp ├── 1119 - Project File Dependencies.cpp ├── 1121 - Subsequence.cpp ├── 1123 - Crazy Search.cpp ├── 1124 - Celebrity jeopardy.cpp ├── 1125 - Sherlock Holmes.cpp ├── 1128 - Water Treatment Plants.py ├── 1130 - Men at work.cpp ├── 1133 - Rent your airplane and make money.cpp ├── 1137 - Phony primes.cpp ├── 1141 - Count wireless Links.cpp ├── 1142 - Fighting the Heat.cpp ├── 1146 - Now or later.cpp ├── 1147 - Crime.cpp ├── 1149 - Bin Packing.cpp ├── 1151 - Buy or Build.cpp ├── 1152 - 4 Values whose Sum is 0.cpp ├── 1153 - Keep the Customer Satisfied.cpp ├── 1156 - Pixel Shuffle.cpp ├── 1158 - CubesSquared.cpp ├── 1161 - Objective Berlin.cpp ├── 1163 - The Right Tip.cpp ├── 1169 - Robotruck.cpp ├── 1170 - Jumping Hero.cpp ├── 1171 - Board Games.cpp ├── 1173 - The Finest Chef.cpp ├── 1174 - IP-TV.cpp ├── 1174 - IP-TVv2.cpp ├── 1176 - A Benevolent Josephus.cpp ├── 1177 - A General Recurrence Relation.cpp ├── 1178 - The Juice Shop.cpp ├── 1182 - Sequence Alignment.cpp ├── 1185 - Big Number.cpp ├── 1186 - Chat Rooms.cpp ├── 1187 - Diamonds.cpp ├── 1189 - Find The Multiple.cpp ├── 1192 - Searching Sequence Database in Molecular Biology.cpp ├── 1194 - Machine Schedule.cpp └── 1196 - Tiling Up Blocks.cpp ├── volume012 ├── 1200 - A DP Problem.cpp ├── 1203 - Argus.cpp ├── 1205 - Color a Tree.cpp ├── 1206 - Boundary Points.cpp ├── 1207 - AGTC.cpp ├── 1208 - Oreon.cpp ├── 1210 - Sum of Consecutive Prime Numbers.c ├── 1212 - Duopoly.cpp ├── 1213 - Sum of Different Primes.c ├── 1215 - String Cutting.cpp ├── 1216 - The Bug Sensor Problem.cpp ├── 1225 - Digit Counting.cpp ├── 1226 - Numerical surprises.cpp ├── 1227 - The longest constant gene[suffix_automaton].cpp ├── 1230 - MODEX.cpp ├── 1232 - SKYLINE.cpp ├── 1234 - RACING.cpp ├── 1235 - Anti Brute Force Lock.cpp ├── 1237 - Expert Enough.cpp ├── 1238 - Free Parentheses.cpp ├── 1238 - Free Parentheses[v2].cpp ├── 1244 - Palindromic paths.cpp ├── 1249 - Euclid.cpp ├── 1252 - Twenty Questions.cpp ├── 1254 - Top 10.cpp ├── 1258 - Nowhere Money.cpp ├── 1260 - Sales.cpp ├── 1261 - String Popping.cpp ├── 1263 - Mines.cpp ├── 1264 - Binary Search Tree.cpp ├── 1266 - Magic Square.cpp ├── 1267 - Network.cpp ├── 1289 - Stacking Plates.cpp ├── 1290 - Takeover Wars.cpp ├── 1291 - Dance Dance Revolution.cpp └── 1292 - Strategic game.cpp ├── volume013 ├── 1306 - The K-League.cpp ├── 1308 - Viva Confetti.cpp ├── 1309 - Sudoku.cpp ├── 1312 - Cricket Field.cpp ├── 1314 - Hidden Password.cpp ├── 1315 - Crazy tea party.cpp ├── 1316 - Supermarket.cpp ├── 1322 - Minimizing Maximizer.cpp ├── 1325 - Hypertransmission.cpp ├── 1326 - Jurassic Remains.cpp ├── 1327 - King's Quest.cpp ├── 1329 - Corporative Network.cpp ├── 1330 - City Game.cpp ├── 1331 - Minimax Triangulation.cpp ├── 1335 - Beijing Guards.cpp ├── 1336 - Fixing the Great Wall.cpp ├── 1339 - Ancient Cipher.cpp ├── 1341 - Different Digits.cpp ├── 1342 - That Nice Euler Circuit.cpp ├── 1343 - The Rotation Game[BFS][TLE].cpp ├── 1343 - The Rotation Game[IDA].cpp ├── 1344 - Tian Ji -- The Horse Racing.cpp ├── 1345 - Jamie's Contact Groups.cpp ├── 1346 - Songs.cpp ├── 1349 - Optimal Bus Route Design.cpp ├── 1352 - Colored Cubes.cpp ├── 1352 - Colored Cubes[v2].cpp ├── 1354 - Mobile Computing.cpp ├── 1356 - Bridge.cpp ├── 1357 - Cells.cpp ├── 1359 - Hills.cpp ├── 1362 - Exploring Pyramids.cpp ├── 1363 - Joseph's Problem.cpp ├── 1364 - Knights of the Round Table.cpp ├── 1365 - Wild West[set].cpp ├── 1365 - Wild West[st].cpp ├── 1366 - Martian Mining.cpp ├── 1368 - DNA Consensus String.cpp ├── 1371 - Period.cpp ├── 1374 - Power Calculus.cpp ├── 1376 - Animal Run.cpp ├── 1379 - Pitcher Rotation.cpp ├── 1381 - Balancing the Scale.cpp ├── 1382 - Distant Galaxy.cpp ├── 1383 - Harmony Forever.cpp ├── 1386 - Cellular Automaton.cpp ├── 1390 - Interconnect.cpp ├── 1392 - DNA Regions.cpp ├── 1392 - DNA Regionsv2.cpp ├── 1394 - And Then There Was One.cpp ├── 1395 - Slim Span.cpp └── 1396 - Most Distant Point from the Sea.cpp ├── volume014 ├── 1400 - Ray, Pass me the dishes.cpp ├── 1400 - Ray, Pass me the dishes[v2].cpp ├── 1401 - Remember the Word.cpp ├── 1402 - Robotic Sort.cpp ├── 1404 - Prime k-tuple.cpp ├── 1414 - Hanoi Towers.cpp ├── 1417 - Traffic Jam.cpp ├── 1419 - Binary Clock.cpp ├── 1419 - Ugly Windows.cpp ├── 1423 - Guess.cpp ├── 1426 - Discrete Square Roots.cpp ├── 1428 - Ping pong.cpp ├── 1432 - Fire-Control System.cpp ├── 1438 - Asteroids.cpp ├── 1441 - Accountant notes[Aho–Corasick-opt].cpp ├── 1441 - Accountant notes[Aho–Corasick].cpp ├── 1444 - Knowledge for the masses.cpp ├── 1447 - Malfatti Circles.cpp ├── 1449 - Dominating Patterns.cpp ├── 1451 - Average.cpp ├── 1462 - Fuzzy Google Suggest.cpp ├── 1467 - Installations.cpp ├── 1468 - Restaurant.cpp ├── 1472 - Hanging Hats.cpp ├── 1472 - Hanging Hats.cpp[opt].cpp ├── 1475 - Jungle Outpost.cpp ├── 1479 - Graph and Queries(1).cpp ├── 1482 - Playing With Stones.cpp ├── 1490 - Let the light guide us.cpp ├── 1490 - Let the light guide us[disjoint].cpp ├── 1492 - Adding New Machine.cpp ├── 1493 - Draw a Mess.cpp ├── 1493 - Draw a Mess[bitwise].cpp └── 1494 - Qin Shi Huang's National Road System.cpp ├── volume015 ├── 1501 - Construct the Great Wall.cpp ├── 1502 - GRE Words.cpp ├── 1504 - Genghis Khan the Conqueror.cpp ├── 1516 - Smoking gun.cpp ├── 1519 - Dictionary Size.cpp ├── 1523 - Helicopter.cpp ├── 1524 - Hot or Cold.cpp ├── 1525 - Falling Leaves.cpp ├── 1529 - Clock.cpp ├── 1530 - Floating Point Numbers.cpp ├── 1534 - Taekwondo.cpp ├── 1544 - Simple Arithmetics.cpp ├── 1546 - Complete the sequence.cpp ├── 1548 - The Game of Master-Mind.cpp ├── 1549 - Lattice Point.cpp ├── 1555 - Garland.cpp ├── 1556 - Disk Tree.cpp ├── 1557 - Calendar Game.cpp ├── 1558 - Number Game.cpp ├── 1559 - Nim.cpp ├── 1560 - Extended Lights Out.cpp ├── 1566 - John.cpp ├── 1569 - Multiple.cpp ├── 1572 - Self-Assembly.cpp ├── 1574 - Surely You Congest.cpp ├── 1575 - Factors.cpp ├── 1577 - Low Power.cpp ├── 1579 - Matryoshka.cpp ├── 1581 - Pollution Solution[v2].cpp ├── 1581 - Pollution Solution[v3].cpp ├── 1583 - Digit Generator.cpp ├── 1584 - Circular Sequence.cpp ├── 1585 - Score.cpp ├── 1586 - Molar mass.cpp ├── 1587 - Box.cpp ├── 1588 - Kickdown.cpp ├── 1590 - IP Networks.cpp ├── 1592 - Database.cpp ├── 1594 - Ducci Sequence.cpp └── 1595 - Symmetry.cpp ├── volume016 ├── 1600 - Patrol Robot.cpp ├── 1601 - The Morning after Halloween.cpp ├── 1605 - Building for UN.cpp ├── 1608 - Non-boring sequences.cpp ├── 1608 - Non-boring sequences[v2].cpp ├── 1610 - Party Games.cpp ├── 1614 - Hell on the Markets.cpp ├── 1625 - Color Length.cpp ├── 1626 - Brackets sequence.cpp ├── 1627 - Team them up!.cpp ├── 1629 - Cake slicing.cpp ├── 1632 - Alibaba.cpp ├── 1635 - Irrelevant Elements.cpp ├── 1636 - Headshot.cpp ├── 1640 - The Counting Problem[digit].cpp ├── 1641 - ASCII Area.cpp ├── 1642 - Magical GCD.cpp ├── 1644 - Prime Gap.cpp ├── 1645 - Count.cpp ├── 1646 - Edge Case.cpp ├── 1647 - Computer Transformation.cpp ├── 1649 - Binomial coefficients.cpp ├── 1659 - Help Little Laura.cpp ├── 1665 - Islands.cpp ├── 1665 - Islands[v2].cpp ├── 1673 - str2int.cpp ├── 1674 - Lightning Energy Report.cpp ├── 1676 - GRE Words Revenge.cpp ├── 1679 - Easy Geometry.cpp ├── 1683 - In case of failure[Delaunay].cpp └── 1683 - In case of failure[kdTree].cpp ├── volume017 ├── 1700 - Game Strategy.cpp ├── 1700 - Game Strategy[sse].cpp ├── 1703 - Metal Processing Plant.cpp ├── 1703 - Metal Processing Plant[opt].cpp ├── 1704 - Pachinko.cpp ├── 1708 - Wire Crossing.cpp ├── 1708 - Wire Crossing[opt2].cpp ├── 1708 - Wire Crossing[opt].cpp ├── 1709 - Amalgamated Artichokes-opt-less-precision.cpp ├── 1709 - Amalgamated Artichokes.cpp ├── 1711 - Catering.cpp ├── 1712 - Cutting Cheese.cpp ├── 1713 - Evolution in Parallel.cpp ├── 1714 - Keyboarding-opt.cpp ├── 1714 - Keyboarding.cpp ├── 1717 - Ship Traffic.cpp ├── 1718 - Tile Cutting.cpp ├── 1718 - Tile Cutting_NTT.cpp ├── 1718 - Tile Cutting_brute_offline.cpp ├── 1719 - Tours.cpp ├── 1720 - Weather Report.cpp ├── 1720 - Weather Report[opt].cpp ├── 1723 - Intervals.cpp ├── 1726 - Automatic Cheater Detection.cpp ├── 1727 - Counting Weekend Days.cpp ├── 1728 - Toll Management IV.cpp ├── 1728 - Toll Management IV[opt].cpp ├── 1729 - Owllen.cpp ├── 1730 - Sum of MSLCM.cpp ├── 1731 - Unique Party.cpp ├── 1733 - Design New Capital.cpp ├── 1734 - Numbered Cards.cpp ├── 1736 - Balanced Diet.cpp ├── 1736 - Balanced Diet[opt].cpp ├── 1737 - Branch Assignment.cpp ├── 1737 - Branch Assignment[dp-opt].cpp ├── 1738 - Ceiling Function.cpp ├── 1741 - Longest Rivers.cpp ├── 1741 - Longest Rivers[opt].cpp ├── 1742 - Oil.cpp ├── 1742 - Oil[float-radix].cpp ├── 1747 - Swap Space.cpp ├── 1752 - Money for Nothing.cpp ├── 1753 - Need for Speed.cpp └── 1757 - Secret Chamber at Mount Rushmore.cpp ├── volume040 └── 4020 - Hard Rode.cpp ├── volume041 └── 4104 - MODEX.cpp ├── volume047 ├── 4723 - Ducci Sequence.cpp ├── 4725 - Airport.cpp ├── 4726 - Average.cpp ├── 4727 - Jump.cpp ├── 4728 - Squares.cpp └── 4731 - Cellular Network.cpp ├── volume048 └── 4867 - Maximum Square.cpp ├── volume050 └── 5067 - Membership Management.cpp ├── volume051 └── 5102 - Fermat Point in Quadrangle.cpp ├── volume056 └── 5610 - Stars.cpp ├── volume058 ├── 5861 - Hidden Terminal Problem.cpp ├── 5862 - City Travel.cpp ├── 5864 - Register Allocation.cpp ├── 5864 - Register Allocation[another].cpp ├── 5865 - Finding Bottleneck Shorstet Paths.cpp └── 5867 - Finding Feasible Paths.cpp ├── volume100 ├── 10000 - Longest Paths.cpp ├── 10001 - Garden of Eden.cpp ├── 10002 - Center of Masses.cpp ├── 10003 - Cutting Sticks.cpp ├── 10005 - Packing polygons.cpp ├── 10006 - Carmichael Numbers.cpp ├── 10008 - What's Cryptanalysis.cpp ├── 10010 - Where's Waldorf.cpp ├── 10012 - How Big Is It.cpp ├── 10013 - Super long sums.cpp ├── 10014 - Simple calculations.cpp ├── 10015 - Joseph's Cousin.cpp ├── 10017 - The Never Ending Towers of Hanoi.cpp ├── 10018 - Reverse and Add.cpp ├── 10019 - Funny Encryption Method.cpp ├── 10020 - Minimal coverage.cpp ├── 10023 - Square root.cpp ├── 10023 - Square root2.cpp ├── 10023 - Square root3.cpp ├── 10023 - Square root4.cpp ├── 10024 - Curling up the cube.cpp ├── 10025 - The 1 2 ... n = k problem.cpp ├── 10026 - Shoemaker's Problem.cpp ├── 10029 - Edit Step Ladders.cpp ├── 10029 - Edit Step Ladders[Trie].cpp ├── 10029 - Edit Step Ladders[hashmap].cpp ├── 10032 - Tug of War.cpp ├── 10033 - Interpreter.cpp ├── 10034 - Freckles.cpp ├── 10035 - Primary Arithmetic.cpp ├── 10036 - Divisibility.c ├── 10036 - Divisibility.cpp ├── 10037 - Bridge.cpp ├── 10038 - Jolly Jumpers.cpp ├── 10039 - Railroads.cpp ├── 10040 - Ouroboros Snake.cpp ├── 10040 - Ouroboros Snake[v2].cpp ├── 10041 - Vito's Family.cpp ├── 10042 - Smith Numbers.cpp ├── 10043 - Chainsaw Massacre.cpp ├── 10044 - Erdos Numbers.cpp ├── 10047 - The Monocycle.cpp ├── 10048 - Audiophobia.cpp ├── 10050 - Hartals.cpp ├── 10054 - The Necklace.cpp ├── 10055 - Hashmat the Brave Warrior.cpp ├── 10056 - What is the Probability.cpp ├── 10057 - A mid-summer night's dream.cpp ├── 10061 - How many zero's and how many digits.cpp ├── 10062 - Tell me the frequencies.cpp ├── 10063 - Knuth's Permutation.c ├── 10065 - Useless Tile Packers.cpp ├── 10067 - Playing with Wheels.cpp ├── 10070 - Leap Year or Not Leap Year and ....c ├── 10071 - Back to High School Physics.cpp ├── 10074 - Take the Land.cpp ├── 10075 - Airlines.cpp ├── 10077 - The Stern-Brocot Number System.cpp ├── 10078 - The Art Gallery.cpp ├── 10079 - Pizza Cutting.cpp ├── 10080 - Gopher II.cpp ├── 10081 - Tight Words.cpp ├── 10084 - Hotter Colder.cpp ├── 10085 - The most distant state.cpp ├── 10089 - Repackaging.cpp ├── 10090 - Marbles.cpp ├── 10092 - The Problem with the Problem Setter.cpp ├── 10093 - An Easy Problem!.cpp ├── 10094 - Place the Guards.cpp ├── 10094 - Place the Guards[DLX].cpp ├── 10094 - Place the Guards[math].cpp ├── 10094 - Place the Guards[random].cpp └── 10099 - The Tourist Guide.cpp ├── volume101 ├── 10100 - Longest Match.cpp ├── 10101 - Bangla Numbers.cpp ├── 10104 - Euclid Problem.cpp ├── 10105 - Polynomial Coefficients.cpp ├── 10107 - What is the Median.cpp ├── 10109 - Solving Systems of Linear Equations.cpp ├── 10110 - Light, more light.cpp ├── 10112 - Myacm Triangles.cpp ├── 10115 - Automatic Editing.cpp ├── 10116 - Robot Motion.cpp ├── 10117 - Nice Milk.cpp ├── 10118 - Free Candies.cpp ├── 10120 - Gift.cpp ├── 10123 - No Tipping.cpp ├── 10124 - Subway.cpp ├── 10124 - Subway[v2].cpp ├── 10124 - Subway[v3].cpp ├── 10125 - Sumsets.cpp ├── 10127 - Ones.cpp ├── 10128 - Queue.cpp ├── 10129 - Play On Words(v2).cpp ├── 10129 - Play on Words.cpp ├── 10130 - SuperSale.cpp ├── 10131 - Is Bigger Smarter.cpp ├── 10132 - File Fragmentation.cpp ├── 10136 - Chocolate Chip Cookies.cpp ├── 10139 - Factovisors.cpp ├── 10140 - Prime Distance.cpp ├── 10141 - Request for Proposal.cpp ├── 10142 - Australian Voting.cpp ├── 10144 - Expression.cpp ├── 10146 - Dictionary.cpp ├── 10147 - Highways.cpp ├── 10148 - Advertisement.cpp ├── 10149 - Yahtzee.cpp ├── 10149 - Yahtzee[Anotherdp].cpp ├── 10149 - Yahtzee[Anotherdp_plus].cpp ├── 10150 - Doublets.cpp ├── 10152 - ShellSort.cpp ├── 10154 - Weights and Measures.cpp ├── 10158 - War.cpp ├── 10160 - Servicing Stations.cpp ├── 10161 - Ant on a Chessboard.cpp ├── 10162 - Last Digit.cpp ├── 10164 - Number Game.cpp ├── 10167 - Birthday Cake.c ├── 10168 - Summation of Four Primes.cpp ├── 10169 - Urn-ball Probabilities.cpp ├── 10170 - The Hotel with Infinite Rooms.cpp ├── 10171 - Meeting Prof. Miguel.cpp ├── 10173 - Smallest Bounding Rectangle.cpp ├── 10174 - Couple-Bachelor-Spinster Numbers.cpp ├── 10176 - Ocean Deep - Make it shallow.cpp ├── 10177 - (2.3.4)-D Sqr.Rects.Cubes.Boxes.cpp ├── 10178 - Count the Faces.cpp ├── 10179 - Irreducable Basic Fractions.cpp ├── 10181 - 15-Puzzle Problem.cpp ├── 10182 - Bee Maja.cpp ├── 10184 - Equidistance.cpp ├── 10185 - Phylogenetic Trees Inherited.cpp ├── 10186 - Euro Cup 2000.cpp ├── 10188 - Automated Judge Script.cpp ├── 10189 - Minesweeper.cpp ├── 10190 - Divide, But Not Quite Conquer.cpp ├── 10191 - Longest Nap.cpp ├── 10192 - Vacation.cpp ├── 10194 - Football (aka Soccer).cpp ├── 10195 - The Knights Of The Round Table.cpp └── 10199 - Tourist Guide.cpp ├── volume102 ├── 10201 - Adventures in Moving - Part IV.cpp ├── 10202 - Pairsumonious Numbers.cpp ├── 10205 - Stack 'em Up.cpp ├── 10206 - Stars.cpp ├── 10206 - Stars2.cpp ├── 10206 - Stars3.cpp ├── 10209 - Is This Integration.cpp ├── 10213 - How Many Pieces of Land.cpp ├── 10215 - The LargestSmallest Box.c ├── 10219 - Find the ways !.cpp ├── 10220 - I Love Big Numbers !.cpp ├── 10221 - Satellites.cpp ├── 10226 - Hardwood Species.cpp ├── 10226 - Hardwood Species[Trie].cpp ├── 10227 - Forests.cpp ├── 10228 - Star not a Tree.cpp ├── 10229 - Modular Fibonacci.cpp ├── 10234 - Frequent Substrings.cpp ├── 10242 - Fourth Point !!.cpp ├── 10243 - FireFireFire.cpp ├── 10245 - The Closest Pair Problem.cpp ├── 10248 - The Integer All-time Champ.cpp ├── 10248 - The Integer All-time Champ[匹配].cpp ├── 10249 - The Grand Dinner.cpp ├── 10252 - Common Permutation.cpp ├── 10253 - Series-Parallel Networks.cpp ├── 10254 - The Priest Mathematician.cpp ├── 10256 - The Great Divide.cpp ├── 10258 - Contest Scoreboard.cpp ├── 10260 - Soundex.cpp ├── 10261 - Ferry Loading.cpp ├── 10263 - Railway.cpp ├── 10264 - The Most Potent Corner.cpp ├── 10266 - Surveying.cpp ├── 10267 - Graphical Editor.cpp ├── 10268 - 498-bis.cpp ├── 10271 - Chopsticks.cpp ├── 10276 - Hanoi Tower Troubles Again!.c ├── 10278 - Fire Station.cpp ├── 10279 - Mine Sweeper.cpp ├── 10280 - Old Wine Into New Bottles.cpp ├── 10281 - Average Speed.cpp ├── 10282 - Babelfish.cpp ├── 10283 - The Kissing Circles.cpp ├── 10286 - Trouble with a Pentagon.cpp ├── 10288 - Coupons.cpp ├── 10293 - Word Length and Frequency.cpp ├── 10295 - Hay Points.cpp ├── 10296 - Jogging Trail.cpp └── 10296 - Jogging Trails.cpp ├── volume103 ├── 10300 - Ecological Premium.cpp ├── 10304 - Optimal Binary Search Tree.cpp ├── 10305 - Ordering Tasks.cpp ├── 10306 - e-Coins.cpp ├── 10308 - Roads in the North.cpp ├── 10309 - Turn the Lights Off.cpp ├── 10310 - Dog and Gopher.c ├── 10311 - Goldbach and Euler.cpp ├── 10312 - Expression Bracketing.cpp ├── 10313 - Pay the Price.cpp ├── 10314 - Three Pigs.cpp ├── 10315 - Poker Hands.cpp ├── 10316 - Airline Hub.cpp ├── 10319 - Manhattan.cpp ├── 10320 - Cow Trouble! Help Please.cpp ├── 10321 - Polygon Intersection.cpp ├── 10325 - The Lottery.cpp ├── 10327 - Flip Sort.cpp ├── 10328 - Coin Toss.cpp ├── 10334 - Ray Through Glasses.cpp ├── 10335 - Ray Inside a Polygon.cpp ├── 10338 - Mischievous Children.c ├── 10340 - All in All.cpp ├── 10341 - Solve It.cpp ├── 10341 - Solve It[Netwon].cpp ├── 10342 - Always Late.cpp ├── 10342 - Always Late[spfa].cpp ├── 10343 - Base64 Decoding.cpp ├── 10346 - Peter's Smokes.cpp ├── 10347 - Medians.c ├── 10348 - Submarines.cpp ├── 10349 - Antenna Placement.cpp ├── 10351 - Cutting Diamonds.cpp ├── 10352 - Count the eWords.cpp ├── 10356 - Rough Roads.cpp ├── 10360 - Rat Attack.cpp ├── 10363 - Tic Tac Toe.cpp ├── 10365 - Blocks.cpp ├── 10368 - Euclid's Game.cpp ├── 10369 - Arctic Network.cpp ├── 10370 - Above Average.cpp ├── 10373 - The Brick Stops Here.cpp ├── 10374 - Election.cpp ├── 10375 - Choose and divide.cpp ├── 10378 - Complex Numbers.cpp ├── 10381 - The Rock.cpp ├── 10382 - Watering Grass.cpp ├── 10387 - Billiard.cpp ├── 10389 - Subway.cpp ├── 10391 - Compound Words.cpp ├── 10393 - The One-Handed Typist.cpp ├── 10397 - Connect the Campus.cpp ├── 10397 - Connect the Campus[Delaunay].cpp └── 10397 - Connect the Campus[random].cpp ├── volume104 ├── 10401 - Injured Queen Problem.cpp ├── 10404 - Bachet's Game.cpp ├── 10405 - Longest Common Subsequence.cpp ├── 10407 - Simple division.cpp ├── 10408 - Farey sequences.cpp ├── 10409 - Die Game.cpp ├── 10412 - Big Big Trees.cpp ├── 10413 - Crazy Savages.cpp ├── 10415 - Eb Alto Saxophone Player.cpp ├── 10419 - Sum-up the Primes.cpp ├── 10420 - List of Conquests.cpp ├── 10424 - Love Calculator.cpp ├── 10427 - Naughty Sleepy Boys.cpp ├── 10432 - Polygon Inside A Circle.c ├── 10433 - Automorphic Numbers.cpp ├── 10438 - Meta Editor.cpp ├── 10440 - Ferry Loading II.cpp ├── 10449 - Traffic.cpp ├── 10450 - World Cup Noise.cpp ├── 10451 - Ancient Village Sports.cpp ├── 10452 - Marcus.cpp ├── 10454 - Trexpression.cpp ├── 10457 - Magic Car.cpp ├── 10459 - The Tree Root.cpp ├── 10462 - Is There A Second Way Left.cpp ├── 10463 - Aztec Knights.cpp ├── 10465 - Homer Simpson.cpp ├── 10467 - Parse Tree.cpp ├── 10468 - Rigid Circle Packing.cpp ├── 10469 - To Carry or not to Carry.cpp ├── 10474 - Where is the Marble.cpp ├── 10476 - Spam or Not Spam.cpp ├── 10480 - Sabotage.cpp ├── 10482 - The Candyman Can.cpp ├── 10483 - The Sum Equals the Product.cpp ├── 10484 - Divisibility of Factors.cpp ├── 10486 - Mountain Village.cpp ├── 10487 - Closest Sums.c ├── 10489 - Boxes of Chocolates.cpp ├── 10490 - Mr. Azad and his Son.cpp ├── 10491 - Cows and Cars.cpp ├── 10496 - Collecting Beepers.cpp └── 10498 - Happiness[simplex].cpp ├── volume105 ├── 10500 - Robot maps.cpp ├── 10502 - Counting Rectangles.cpp ├── 10503 - The dominoes solitaire.cpp ├── 10505 - Montesco vs Capuleto.cpp ├── 10508 - Word Morphing.cpp ├── 10509 - R U Kidding Mr. Feynman.cpp ├── 10511 - Councilling.cpp ├── 10511 - Councilling[maxflow].cpp ├── 10515 - Powers Et Al.cpp ├── 10520 - Determine it.cpp ├── 10524 - Matrix Reloaded.cpp ├── 10527 - Persistent Numbers.cpp ├── 10529 - Dumb Bones.cpp ├── 10530 - Guessing Game.cpp ├── 10532 - Combination! Once Again.cpp ├── 10534 - Wavio SequenceV2.cpp ├── 10537 - The Toll! Revisited.cpp ├── 10539 - Almost Prime Numbers.cpp ├── 10539 - Almost Prime Numbers2.cpp ├── 10541 - Stripe.cpp ├── 10545 - Maximal Quadrilateral.cpp ├── 10551 - Basic Remains.cpp ├── 10554 - Calories from Fat.cpp ├── 10555 - Dead Fraction.cpp ├── 10557 - XYZZY.cpp ├── 10562 - Undraw the Trees.cpp ├── 10563 - Least Squares.cpp ├── 10566 - Crossed Ladders.cpp ├── 10568 - n Group k.cpp ├── 10571 - Products.cpp ├── 10573 - Geometry Paradox.cpp ├── 10574 - Counting Rectangles.cpp ├── 10574 - Counting Rectanglesv2.cpp ├── 10576 - Y2K Accounting Bug.cpp ├── 10582 - ASCII Labyrinth.cpp ├── 10585 - Center of symmetry.cpp ├── 10586 - Polynomial Remains.cpp ├── 10588 - Queuing at the doctors.cpp ├── 10589 - Area.cpp ├── 10592 - Freedom Fighter.cpp ├── 10594 - Data Flow.cpp ├── 10596 - Morning Walk.cpp └── 10597 - Right Words.cpp ├── volume106 ├── 10600 - ACM Contest and Blackout.cpp ├── 10602 - Editor Nottoobad.cpp ├── 10603 - Fill.cpp ├── 10608 - Friends.cpp ├── 10611 - The Playboy Chimp.cpp ├── 10613 - Mushroom Misery.cpp ├── 10615 - Rooks.cpp ├── 10616 - Divisible Group Sums.cpp ├── 10617 - Again Palindrome.cpp ├── 10622 - Perfect P-th Powers.cpp ├── 10624 - Super Number.cpp ├── 10625 - GNU = GNU'sNotUnix.cpp ├── 10633 - Rare Easy Problem.cpp ├── 10642 - Can You Solve It.cpp ├── 10651 - Pebble Solitaire.cpp ├── 10652 - Board Wrapping.cpp ├── 10653 - Bombs! NO they are Mines!!.cpp ├── 10656 - Maximum Sum (II).cpp ├── 10659 - Fitting Text into Slides.cpp ├── 10660 - Citizen attention offices.cpp ├── 10664 - Luggage.cpp ├── 10665 - Diatribe against Pigeonholes.cpp ├── 10666 - The Eurocup is Here.cpp ├── 10667 - Largest Block.cpp ├── 10668 - Expanding Rods.cpp ├── 10672 - Marbles on a tree.cpp ├── 10673 - Play with Floor and Ceil.cpp ├── 10677 - Base Equality.cpp ├── 10678 - The Grazing Cow.cpp ├── 10679 - I Love Strings (2).cpp ├── 10679 - I Love Strings(AC).cpp ├── 10679 - I Love Strings.cpp ├── 10679 - I Love Strings[SA].cpp ├── 10679 - I Love Strings[case1].cpp ├── 10680 - LCM.cpp ├── 10681 - Teobaldo's Trip.cpp ├── 10682 - Forr.cpp ├── 10683 - The decadary watch.cpp ├── 10684 - The jackpot.cpp ├── 10685 - Nature.cpp ├── 10686 - SQF Problems.cpp ├── 10688 - The Poor Giant.cpp ├── 10689 - Yet another Number Sequence.cpp ├── 10691 - Subway.cpp ├── 10692 - Huge Mods.cpp ├── 10693 - Traffic Volume.cpp ├── 10694 - Combinatorial Summation.java ├── 10696 - f91.cpp └── 10699 - Count the factors.cpp ├── volume107 ├── 10700 - Camel trading.cpp ├── 10701 - Pre, in and post.cpp ├── 10702 - Travelling Salesman.cpp ├── 10703 - Free spots.cpp ├── 10704 - Traffic.cpp ├── 10706 - Number Sequence.cpp ├── 10707 - 2D-Nim.cpp ├── 10709 - Intersection is Not that Easy.cpp ├── 10709 - Intersection is Not that Easy[v2].cpp ├── 10712 - Count the Numbers.cpp ├── 10713 - Map.cpp ├── 10714 - Ants.cpp ├── 10715 - Cat.cpp ├── 10715 - Cat[v2].cpp ├── 10715 - Cat[v3].cpp ├── 10715 - Cat[v4].cpp ├── 10715 - Cat[v5].cpp ├── 10717 - Mint.cpp ├── 10718 - Bit Mask.cpp ├── 10719 - Quotient Polynomial.cpp ├── 10720 - Graph Construction.cpp ├── 10721 - Bar Codes.cpp ├── 10722 - Super Lucky Numbers.cpp ├── 10722 - Super Lucky Numbersv2.cpp ├── 10725 - Triangular Square.cpp ├── 10728 - Help.cpp ├── 10729 - Treequivalence.cpp ├── 10730 - Antiarithmetic.cpp ├── 10731 - Test.cpp ├── 10732 - The Strange Research.cpp ├── 10733 - The Colored Cubes.cpp ├── 10738 - Riemann vs Mertens.cpp ├── 10739 - String to Palindrome.cpp ├── 10740 - Not the Best.cpp ├── 10744 - The Optimal Super-Highway.cpp ├── 10745 - Dominant Strings.cpp ├── 10746 - Crime Wave - The Sequel.cpp ├── 10747 - Maximum Subsequence.cpp ├── 10748 - Knights Roaming[fixed].cpp ├── 10755 - Garbage Heap.cpp ├── 10759 - Dice Throwing.cpp ├── 10762 - Treasure Castle.cpp ├── 10763 - Foreign Exchange.cpp ├── 10764 - Signed-digit numbers.cpp ├── 10766 - Organising the Organisation.cpp ├── 10769 - Pillars.cpp ├── 10773 - Back to Intermediate Math.cpp ├── 10776 - Determine The Combination.cpp ├── 10779 - Collectors Problem.cpp ├── 10783 - Odd Sum.cpp ├── 10784 - Diagonal.cpp ├── 10788 - Parenthesizing Palindromes.cpp ├── 10789 - Prime Frequency.cpp ├── 10790 - How Many Points of Intersection.cpp ├── 10793 - The Orc Attack.cpp ├── 10794 - The Deadly Olympic Returns!!!.cpp ├── 10797 - Peaceful Sharing.cpp └── 10799 - OOPS! They did it Again.cpp ├── volume108 ├── 10800 - Not That Kind of Graph.cpp ├── 10801 - Lift Hopping.cpp ├── 10802 - Lex Smallest Drive.cpp ├── 10803 - Thunder Mountain.cpp ├── 10804 - Gopher Strategy.cpp ├── 10806 - Dijkstra, Dijkstra.cpp ├── 10806 - Dijkstra, Dijkstra[v2].cpp ├── 10807 - Prim.cpp ├── 10810 - Ultra-QuickSort.cpp ├── 10812 - Beat the Spread!.cpp ├── 10815 - Andy's First Dictionary.cpp ├── 10816 - Travel in Desert.cpp ├── 10817 - Headmaster's Headache.cpp ├── 10819 - Trouble of 13-Dots.cpp ├── 10820 - Send a Table.cpp ├── 10823 - Of Circles and Squares.cpp ├── 10825 - Anagram and Multiplication.cpp ├── 10827 - Maximum sum on a torus.cpp ├── 10828 - Back to Kernighan-Ritchie.cpp ├── 10828 - Back to Kernighan-Ritchie2.cpp ├── 10830 - A New Function.cpp ├── 10835 - Playing with Coins[AC][dp].cpp ├── 10838 - The Pawn Chess.cpp ├── 10841 - Lift Hopping in the Real World.cpp ├── 10842 - Traffic Flow.cpp ├── 10848 - Make Palindrome Checker.cpp ├── 10851 - 2D Hieroglyphs decoder.cpp ├── 10852 - Less Prime.cpp ├── 10855 - Rotated square.cpp ├── 10858 - Unique Factorization.cpp ├── 10860 - Many a Little makes a Mickle.cpp ├── 10867 - Cutting a Polygon.cpp ├── 10870 - Recurrences.cpp ├── 10871 - Primed Subsequence.cpp ├── 10874 - Segments.cpp ├── 10877 - Diceoids.cpp ├── 10879 - Code Refactoring.c ├── 10880 - Colin and Ryan.cpp ├── 10881 - Piotr's Ants.cpp ├── 10883 - Supermean.cpp ├── 10888 - Warehouse.cpp ├── 10889 - The Lost Gift.cpp ├── 10890 - Maze.cpp ├── 10890 - Maze[v2].cpp ├── 10891 - Game of Sum.cpp ├── 10892 - LCM Cardinality.cpp ├── 10894 - Save Hridoy.cpp ├── 10895 - Matrix Transpose.cpp ├── 10896 - Known Plaintext Attack.cpp └── 10897 - Travelling Distance.cpp ├── volume109 ├── 10900 - So you want to be a 2n-aire.cpp ├── 10901 - Ferry Loading III.cpp ├── 10902 - Pick-up Sticks.cpp ├── 10903 - Rock-Paper-Scissors Tournament.cpp ├── 10906 - Strange Integration.cpp ├── 10907 - Art Gallery.cpp ├── 10908 - Largest Square.cpp ├── 10909 - Lucky Number.cpp ├── 10910 - Marks Distribution.c ├── 10912 - Simple Minded Hashing.cpp ├── 10913 - Walking on a Grid.cpp ├── 10915 - War on Weather.cpp ├── 10916 - Factstone Benchmark.cpp ├── 10918 - Tri Tiling.cpp ├── 10921 - Find the Telephone.cpp ├── 10922 - 2 the 9s.cpp ├── 10924 - Prime Words.cpp ├── 10928 - My Dear Neighbours.cpp ├── 10929 - You can say 11.cpp ├── 10930 - A-Sequence.cpp ├── 10934 - Dropping water balloons.cpp ├── 10935 - Throwing cards away I.cpp ├── 10940 - Throwing cards away II.cpp ├── 10943 - How do you add.cpp ├── 10944 - Nuts for nuts.cpp ├── 10945 - Mother bear.cpp ├── 10946 - You want what filled.cpp ├── 10947 - Bear with me, again.cpp ├── 10948 - The primary problem.cpp ├── 10954 - Add All.cpp ├── 10961 - Chasing After Don Giovanni.cpp ├── 10963 - The Swallowing Ground.cpp ├── 10967 - The Great Escape.cpp ├── 10967 - The Great Escape[Accept].cpp ├── 10969 - Sweet Dream.cpp ├── 10970 - Big Chocolate.cpp ├── 10973 - Triangle Counting.cpp ├── 10975 - Dueue's Quiz.cpp ├── 10975 - Dueue's Quiz[AC].cpp ├── 10978 - Let's Play Magic.cpp ├── 10980 - Lowest Price in Town.cpp ├── 10986 - Sending email.cpp ├── 10987 - Antifloyd.cpp ├── 10989 - Bomb, Divide and Conquer.cpp ├── 10990 - Another New Function.cpp ├── 10991 - Region.c ├── 10994 - Simple Addition.cpp ├── 10998 - Flipping Colors.cpp └── 10999 - Crabbles.cpp ├── volume110 ├── 11001 - Necklace.cpp ├── 11002 - Towards Zero.cpp ├── 11002 - Towards Zero_V2.cpp ├── 11003 - Boxes.cpp ├── 11005 - Cheapest Base.cpp ├── 11015 - 05-2 Rendezvous.c ├── 11016 - Square Counting.cpp ├── 11016 - Square Counting[v2].cpp ├── 11019 - Matrix Matcher.cpp ├── 11020 - Efficient Solutions.cpp ├── 11022 - String Factoring.cpp ├── 11026 - A Grouping Problem.cpp ├── 11027 - Palindromic Permutation.cpp ├── 11028 - Sum of Product.cpp ├── 11029 - Leading and Trailing.cpp ├── 11030 - Predator II.cpp ├── 11030 - Predator II2.cpp ├── 11031 - Looking for a Subset.cpp ├── 11032 - Function Overloading.cpp ├── 11032 - Function Overloading2.cpp ├── 11034 - Ferry Loading IV.cpp ├── 11035 - Card Hands.cpp ├── 11036 - Eventually Periodic Sequence.cpp ├── 11038 - How Many O's.cpp ├── 11040 - Add bricks in the wall.cpp ├── 11042 - Complex, difficult and complicated.cpp ├── 11045 - My T-shirt suits me.cpp ├── 11048 - Automatic Correction of Misspellings.cpp ├── 11049 - Basic wall maze.cpp ├── 11053 - Flavius Josephus Reloaded.cpp ├── 11053 - Flavius Josephus Reloaded[v2].cpp ├── 11054 - Wine trading in Gergovia.cpp ├── 11055 - Homogeneous squares.cpp ├── 11056 - Formula 1.cpp ├── 11060 - Beverages.cpp ├── 11062 - Andy's Second Dictionary.cpp ├── 11063 - B2-Sequence.cpp ├── 11064 - Number Theory.cpp ├── 11067 - Little Red Riding Hood.cpp ├── 11068 - An Easy Task.cpp ├── 11071 - Permutation Representation.cpp ├── 11073 - Euler's Totient Function.cpp ├── 11074 - Draw Grid.cpp ├── 11076 - Add Again.cpp ├── 11080 - Place the Guards.cpp ├── 11081 - Strings.cpp ├── 11083 - Zeroes Revisited.cpp ├── 11084 - Anagram Division.cpp ├── 11084 Anagram Division.cpp ├── 11085 - Back to the 8-Queens.cpp ├── 11086 - Composite Prime.cpp ├── 11087 - Divisibility Testing.cpp ├── 11089 - Fi-binary Number.cpp ├── 11090 - Going in Cycle.cpp ├── 11090 - Going in Cycle2.cpp ├── 11092 - IIUC HexWorld.cpp ├── 11093 - Just Finish it up.cpp ├── 11094 - Continents.cpp ├── 11096 - Nails.cpp ├── 11097 - Poor My Problem!.cpp ├── 11098 - Battle II.cpp ├── 11099 - Next Same-Factored.cpp └── 11099 - Next Same-Factored[v2].cpp ├── volume111 ├── 11104 - Cousins.cpp ├── 11105 - Semi-prime H-numbers.cpp ├── 11106 - Rectilinear Polygon.cpp ├── 11107 - Life Forms.cpp ├── 11110 - Equidivisions.cpp ├── 11111 - Generalized Matrioshkas.cpp ├── 11112 - Babylonian Roulette.cpp ├── 11113 - Continuous Fractions.cpp ├── 11115 - Uncle Jack.cpp ├── 11116 - Babel Towers.cpp ├── 11121 - Base -2.cpp ├── 11122 - Tri Tri.cpp ├── 11122 - Tri Tri[ConvexHull].cpp ├── 11123 - Counting Trapizoid.cpp ├── 11130 - Billiard bounces.cpp ├── 11134 - Fabled Rooks.cpp ├── 11136 - Hoax or what.cpp ├── 11137 - Ingenuous Cubrency.cpp ├── 11138 - Nuts and Bolts.cpp ├── 11149 - Power of Matrix.cpp ├── 11150 - Cola.cpp ├── 11151 - Longest Palindrome.cpp ├── 11152 - Colourful Flowers.cpp ├── 11153 - Museums.cpp ├── 11159 - Factors and Multiples.cpp ├── 11162 - Independent Attacking Zones.cpp ├── 11165 - Galactic Travel.cpp ├── 11166 - Power Signs.cpp ├── 11172 - Relational Operator.cpp ├── 11173 - Grey Codes.cpp ├── 11175 - From D to E and Back.cpp ├── 11178 - Morley's Theorem.cpp ├── 11181 - ProbabilityGiven.cpp ├── 11182 - Zeroes III.cpp ├── 11184 - Joyful Ride.cpp ├── 11185 - Ternary.cpp ├── 11186 - Circum Triangle.cpp ├── 11192 - Group Reverse.cpp └── 11198 - Dancing Digits.cpp ├── volume112 ├── 11200 - Sapitaur's labyrinth.cpp ├── 11203.c ├── 11204 - Musical instruments.cpp ├── 11205 - The broken pedometer.cpp ├── 11212 - Editing a Book.cpp ├── 11214 - Guarding the Chessboard[DLX].cpp ├── 11215 - How Many Numbers.cpp ├── 11218 - KTV.cpp ├── 11219 - How old are you.cpp ├── 11220 - Decoding the message.cpp ├── 11221 - Magic square palindromes.cpp ├── 11222 - Only I did it.cpp ├── 11223 - O dah dah dah.cpp ├── 11227 - The silver bullet.cpp ├── 11228 - Transportation system.cpp ├── 11231 - Black and white painting.cpp ├── 11233 - Deli Deli.cpp ├── 11234 - Expressions.cpp ├── 11235 - Frequent values.cpp ├── 11235 - Frequent values[vx].cpp ├── 11236 - Grocery store.cpp ├── 11238 - Innoumerous bowling games.cpp ├── 11239 - Open Source.cpp ├── 11243 - Texas Trip.cpp ├── 11244 - Counting Stars.cpp ├── 11245 - Anti-Arithmetic-Sequence.cpp ├── 11247 - Income Tax.cpp ├── 11248 - Frequency Hopping.cpp ├── 11249 - Game.cpp ├── 11254 - Consecutive Integers.cpp ├── 11258 - String Partition.cpp ├── 11259 - Coin Changing Again.cpp ├── 11260 - Odd Root Sum.cpp ├── 11262 - Weird Fence.cpp ├── 11262 - Weird Fence[v2].cpp ├── 11265 - The Sultan's Problem.cpp ├── 11266 - Equations.cpp ├── 11275 - 3D Triangles.cpp ├── 11278 - One-Handed Typist.cpp ├── 11280 - Flying to Fredericton.cpp ├── 11284 - Shopping Trip.cpp ├── 11286 - Conformity.cpp ├── 11286 - Conformity[Map].cpp ├── 11287 - Pseudoprime Numbers.cpp ├── 11289 - Friend or Foe.cpp ├── 11294 - Wedding.cpp └── 11297 - Census(zkw).cpp ├── volume113 ├── 11307 - Alternative Arborescence.cpp ├── 11309 - Counting Chaos.cpp ├── 11314 - Hardly Hard.cpp ├── 11317 - GCD+LCM.cpp ├── 11319 - Stupid Sequence.cpp ├── 11319 - Stupid Sequence[v2].cpp ├── 11323 - Satisfying Constraints.cpp ├── 11324 - The Largest Clique.cpp ├── 11327 - Enumerating Rational Numbers.cpp ├── 11332 - Summing Digits.cpp ├── 11338 - Minefield.cpp ├── 11340 - Newspaper.cpp ├── 11343 - Isolated Segments.cpp ├── 11344 - The Huge One.cpp ├── 11345 - Rectangles.cpp ├── 11347 - Multifactorials.cpp ├── 11349 - Symmetric Matrix.c ├── 11350 - Stern-Brocot Tree.cpp ├── 11353 - A Different Kind of Sorting.cpp ├── 11355 - Cool Points.cpp ├── 11358 - Faster Processing Feasibility.cpp ├── 11359 - Guards, Imbecile Guards.cpp ├── 11360 - Have Fun with Matrices.cpp ├── 11362 - Phone List.cpp ├── 11363 - Cuckoo Hashing.cpp ├── 11364 - Parking.cpp ├── 11367 - Full Tank.cpp ├── 11368 - Nested Dolls[test].cpp ├── 11369 - Shopaholic.cpp ├── 11370 - Moogle.cpp ├── 11371 - Number Theory for Newbies.cpp ├── 11375 - Matches.txt ├── 11376 - Tilt.cpp ├── 11378 - Bey Battle.cpp ├── 11379 - Chichi's Home Work.cpp ├── 11380 - Down Went The Titanic.cpp ├── 11383 - Golden Tiger Claw.cpp ├── 11385 - Da Vinci Code.cpp ├── 11386 - Triples.cpp ├── 11387 - The 3-Regular Graph.cpp ├── 11389 - The Bus Driver Problem.cpp ├── 11390 - The Sultan's Feast.cpp ├── 11391 - Blobs in the Board.cpp ├── 11394 - Digit Blocks.cpp ├── 11396 - Claw Decomposition.cpp └── 11398 - The Base-1 Number System.c ├── volume114 ├── 11401 - Triangle Counting.cpp ├── 11402 - Ahoy, Pirates.cpp ├── 11402 - Ahoy, Pirates[離散].cpp ├── 11403 - Binary Multiplication.cpp ├── 11404 - Palindromic Subsequence.cpp ├── 11407 - Squares.cpp ├── 11408 - Count DePrimes.cpp ├── 11411 - MiniMice.cpp ├── 11412 - Dig the Holes.cpp ├── 11413 - Fill the Containers.c ├── 11414 - Dream.cpp ├── 11415 - Count the Factorials.cpp ├── 11417 - GCD.c ├── 11418 - Clever Naming Patterns.cpp ├── 11421 - Arranging Cards.cpp ├── 11423 - Cache Simulator-opt.cpp ├── 11423 - Cache Simulator.cpp ├── 11424 - GCD - Extreme (I).cpp ├── 11426 - GCD - Extreme (II).cpp ├── 11428 - Cubes.cpp ├── 11439 - Maximizing the ICPC.cpp ├── 11450 - Wedding shopping.cpp ├── 11455 - Behold my quadrangle.cpp ├── 11456 - Trainsorting.cpp ├── 11457 - Classified.cpp ├── 11461 - Square Numbers.cpp ├── 11463 - Commandos.cpp ├── 11464 - Even Parity.cpp ├── 11466 - Largest Prime Divisor.cpp ├── 11470 - Square Sums.c ├── 11472 - Beautiful Numbers.cpp ├── 11473 - Campus Roads.cpp ├── 11475 - Extend to Palindrome.cpp ├── 11476 - Factorizing Larget Integers.cpp ├── 11478 - Halum.cpp ├── 11479 - Is this the easiest problem.cpp ├── 11480 - Jimmy's Balls.cpp ├── 11483 - Code Creator.cpp ├── 11485 - Extreme Discrete Summation.cpp ├── 11488 - Hyper Prefix Sets.cpp ├── 11489 - Integer Game.cpp ├── 11490 - Just Another Problem.cpp ├── 11494 - Queen.cpp └── 11498 - Division of Nlogonia.c ├── volume115 ├── 11052 - Economic phone calls.cpp ├── 11501 - Laurel Creek.cpp ├── 11503 - Virtual Friends.cpp ├── 11504 - Dominos.cpp ├── 11505 - Logo.cpp ├── 11506 - Angry Programmer.cpp ├── 11507 - Bender B. Rodríguez Problem.cpp ├── 11507 - Bender.cpp ├── 11508 - Life on Mars.cpp ├── 11511 - Frieze Patterns.cpp ├── 11513 - 9 Puzzle.cpp ├── 11516 - WiFi.cpp ├── 11517 - Exact Change.cpp ├── 11518 - Dominos 2.cpp ├── 11519 - Logo 2.cpp ├── 11520 - Fill the Square.cpp ├── 11523 - Recycling.cpp ├── 11524 - InCircle.cpp ├── 11525 - Permutation.cpp ├── 11525 - Permutation[st].cpp ├── 11526 - H(n).c ├── 11529 - Strange Tax Calculation.cpp ├── 11530 - SMS Typing.cpp ├── 11532 - Simple Adjacency Maximization.cpp ├── 11535 - Set of Marbles.cpp ├── 11536 - Smallest Sub-Array.cpp ├── 11536 - Smallest Sub-Array[v2].cpp ├── 11539 - Another Word Game.cpp ├── 11541 - Decoding.c ├── 11542 - Square.cpp ├── 11545 - Avoiding Jungle in the Dark.cpp ├── 11547 - Automatic Answer.c ├── 11548 - Blackboard Bonanza.cpp ├── 11550 - Demanding Dilemma.cpp ├── 11551 - Experienced Endeavour.cpp ├── 11552 - Fewest Flops.cpp ├── 11553 - Grid Game.cpp ├── 11555 - Aspen Avenue.cpp ├── 11556 - Best Compression Ever.cpp ├── 11559 - Event Planning.cpp ├── 11561 - Getting Gold.cpp ├── 11563 - Introspective Caching.cpp ├── 11565 - Simple Equations.cpp ├── 11567 - Moliu Number Generator.cpp ├── 11569 - Lovely Hint.cpp ├── 11573 - Ocean Currents.cpp ├── 11576 - Scrolling Sign.cpp ├── 11577 - Letter Frequency.c ├── 11579 - Triangle Trouble.cpp ├── 11585 - Nurikabe.cpp ├── 11586 - Train Tracks.cpp ├── 11587 - Brick Game.cpp ├── 11588 - Image Coding.cpp ├── 11590 - Prefix Lookup.cpp ├── 11597 - Spanning Subtree.cpp └── 11598 - Optimal Segments.cpp ├── volume116 ├── 11600 - Masud Rana.cpp ├── 11603 - Its all about the Bandwidth.cpp ├── 11605 - Lights inside a 3d Grid.cpp ├── 11607 - Cutting Cakes.cpp ├── 11609 - Teams.cpp ├── 11613 - Acme Corporation.cpp ├── 11614 - Etruscan Warriors Never Play Chess.cpp ├── 11616 - Roman Numerals.cpp ├── 11617 - An Odd Love.cpp ├── 11620 - City of Egocentrics.cpp ├── 11621 - Small Factors.cpp ├── 11624 - Fire.cpp ├── 11626 - Convex Hull.cpp ├── 11628 - Another lottery.c ├── 11629 - Ballot evaluation.cpp ├── 11630 - Cyclic antimonotonic permutations.cpp ├── 11631 - Dark roads.cpp ├── 11632 - Elias gamma coding.cpp ├── 11633 - Food portion sizes.cpp ├── 11634 - Generate random numbers.cpp ├── 11638 - Temperature Monitoring.cpp ├── 11639 - Guard the Land.cpp ├── 11646 - Athletics Track.cpp ├── 11650 - Mirror Clock.c ├── 11651 - Krypton Number System.cpp ├── 11658 - Best Coalitions.cpp ├── 11661 - Burger Time.cpp ├── 11663 - GrayInc.cpp ├── 11666 - Logarithms.cpp ├── 11667 - Income Tax Hazard II.cpp ├── 11669 - Non Decreasing Prime Sequence.cpp ├── 11670 - Physics Experiment.cpp ├── 11675 - Happy Friends.cpp ├── 11677 - Alarm Clock.cpp ├── 11680 - Dragster.cpp ├── 11686 - Pick up sticks.cpp ├── 11687 - Digits.cpp ├── 11688 - Rotate to root.cpp ├── 11689 - Soda Surpler.cpp ├── 11691 - Allergy Test.cpp ├── 11696 - Beacons.cpp └── 11697 - Playfair Cipher.cpp ├── volume117 ├── 11700 - Pipes.cpp ├── 11703 - sqrt log sin.cpp ├── 11704 - Caper pizza.cpp ├── 11705 - Grasshopper.cpp ├── 11708 - Lexicographical ranking.cpp ├── 11709 - Trust groups.cpp ├── 11710 - Expensive subway.cpp ├── 11711 - Turing.cpp ├── 11713 - Abstract Names.cpp ├── 11714 - Blind Sorting.c ├── 11715 - Car.cpp ├── 11716 - Digital Fortress.cpp ├── 11717 - Energy Saving Microcontroller.cpp ├── 11722 - Joining with Friend.cpp ├── 11723 - Numbering Roads.cpp ├── 11724 - Evaluate the Expression.cpp ├── 11725 - Colorful Board.cpp ├── 11727 - Cost Cutting.c ├── 11728 - Alternate Task.cpp ├── 11729 - Commando War.cpp ├── 11730 - Number Transformation.cpp ├── 11731 - Ex-circles.cpp ├── 11732 - “strcmp()” Anyone.cpp ├── 11733 - Airports.cpp ├── 11736 - Debugging RAM.cpp ├── 11737 - Extreme Primitive Society.cpp ├── 11742 - Social Constraints.cpp ├── 11744 - Parallel Carry Adder.cpp ├── 11745 - Slitherlin.cpp ├── 11747 - Heavy Cycle Edges.cpp ├── 11748 - Rigging Elections.cpp ├── 11751 - Installing Diagnostic Software.cpp ├── 11752 - The Super Powers.cpp ├── 11753 - Creating Palindrome.cpp ├── 11754 - Code Feat.cpp ├── 11759 - IBM Fencing.cpp ├── 11761 - Super Heronian Triangle.cpp ├── 11764 - Jumping Mario.cpp ├── 11765 - Component Placement.cpp ├── 11766 - Racing Car Computer.cpp ├── 11768 - Lattice Point or Not.cpp ├── 11769 - All Souls Night.cpp ├── 11769 - All Souls Night[v2].cpp ├── 11770 - Lighting Away.cpp ├── 11773 - King's Wish.cpp ├── 11776 - Oh Your Royal Greediness.cpp ├── 11777 - Automate the Grades.cpp ├── 11782 - Optimal Cut.cpp ├── 11783 - Nails.cpp ├── 11785 - Hypercube.cpp ├── 11786 - Global Raining at Bididibus.cpp ├── 11787 - Numeral Hieroglyphs.cpp ├── 11790 - Murcia's Skyline.cpp ├── 11792 - Krochanska is Here.cpp ├── 11795 - Mega Man's Mission.cpp ├── 11796 - Dog Distance.cpp ├── 11797 - Drutojan Express.cpp ├── 11798 - Colorful Board 2.cpp └── 11799 - Horror Dash.cpp ├── volume118 ├── 11802 - All Your Bases Belong to Us.cpp ├── 11803 - The Great Merger.cpp ├── 11804 - Argentina.cpp ├── 11805 - Bafana Bafana.cpp ├── 11813 - Shopping.cpp ├── 11817 - Tunnelling the Earth.cpp ├── 11824 - A Minimum Land Price.cpp ├── 11828 - Palindrome Again.cpp ├── 11828 - Palindrome Again[v2].cpp ├── 11830 - Contract Revision.cpp ├── 11832 - Account Book.cpp ├── 11832 - Account Book2.cpp ├── 11832 - Account Book3.cpp ├── 11837 - Musical Plagiarism.cpp ├── 11838 - Come and Go.cpp ├── 11844 - The Melding Plague.cpp ├── 11848 - Cargo Trains.cpp ├── 11849 - CD.c ├── 11850 - Alaska.cpp ├── 11851 - Celebrity Split.cpp ├── 11854 - Egypt.cpp ├── 11855 - Buzzwords.cpp ├── 11857 - Driving Range.cpp ├── 11858 - Frosh Week.cpp ├── 11858 - Frosh Week[v2].cpp ├── 11858 - Frosh Week[v3].cpp ├── 11860 - Document Analyzer.cpp ├── 11865 - Stream My Contest.cpp ├── 11869 - SOAP Response.cpp ├── 11870 - Antonyms.cpp ├── 11871 - New Land.cpp ├── 11871 - New Land[v2].cpp ├── 11871 - New Land[v3].cpp ├── 11872 - Where to Run.cpp ├── 11874 - Travel Company.cpp ├── 11875 - Brick Game.cpp ├── 11876 - N + NOD (N).cpp ├── 11877 - The Coco-Cola Store.cpp ├── 11878 - Homework Checker.cpp ├── 11879 - Multiple of 17.c ├── 11881 - Internal Rate of Return.cpp ├── 11882 - Biggest Number.cpp ├── 11883 - Repairing a Road.cpp ├── 11884 - A Shooting Game.cpp ├── 11885 - Number of Battlefields.cpp ├── 11888 - Abnormal 89's.cpp ├── 11889 - Benefit.cpp └── 11893 - Fabulous DAGy.cpp ├── volume119 ├── 11119 - Chemical Attraction.cpp ├── 11190 - Series of Powers.cpp ├── 11900 - Boiled Eggs.cpp ├── 11902 - Dominator.cpp ├── 11903 - e-Friends.cpp ├── 11908 - Skyscraper.cpp ├── 11909 - Soya Milk.cpp ├── 11910 - Closest Fractions.cpp ├── 11917 - Do Your Own Homework.cpp ├── 11918 - Traveler of Gridland.cpp ├── 11919 - Hybrid Salientia.cpp ├── 11920 - 0 s, 1 s and Marks.cpp ├── 11922 - Permutation Transformer.cpp ├── 11923 - Roundabout.cpp ├── 11925 - Generating Permutations.cpp ├── 11926 - Multitasking.cpp ├── 11926 - Multitasking[queue].cpp ├── 11930 - Rectangles.cpp ├── 11931 - Maze Escape.cpp ├── 11932 - Net Profit.cpp ├── 11933 - Splitting Numbers.cpp ├── 11934 - Magic Formula.cpp ├── 11941 - Creating a Quadtree.cpp ├── 11942 - Lumberjack Sequencing.cpp ├── 11946 - Code Number.cpp ├── 11948 - Reading a Quadtree.cpp ├── 11951 - Area.cpp ├── 11952 - Arithmetic.cpp ├── 11953 - Battleships.cpp ├── 11954 - Binary Calculator.cpp ├── 11955 - Binomial Theorem.cpp ├── 11956 - Brainfuck.cpp ├── 11957 - Checkers.cpp ├── 11958 - Coming Home.cpp ├── 11959 - Dice.cpp ├── 11960 - Divisor Game.cpp ├── 11961 - DNA.cpp ├── 11962 - DNA II.cpp ├── 11964 - Equation.cpp ├── 11965 - Extra Spaces.cpp ├── 11970 - Lucky Numbers.cpp ├── 11971 - Polygon.cpp ├── 11972 - Round Trip.cpp ├── 11973 - Sierpinski Carpet.cpp ├── 11974 - Switch The Lights.cpp ├── 11977 - Story of Tomisu Ghost.cpp ├── 11979 - Hamming Base.cpp ├── 11981 - Corrupted Friendship.cpp ├── 11983 - Weird Advertisement.cpp ├── 11984 - A Change in Thermal Unit.cpp ├── 11985 - Prime Independence.cpp ├── 11985 - Prime Independence[v2].cpp ├── 11985 - Prime Independence[v3].cpp ├── 11985 - Prime Independence[v4].cpp ├── 11987 - Almost Union-Find.cpp ├── 11988 - Broken Keyboard (a.k.a. Beiju Text).cpp ├── 11990 - Dynamic Inversion.cpp ├── 11991 - Easy Problem from Rujia Liu.cpp ├── 11992 - Fast Matrix Operations.cpp ├── 11992 - Fast Matrix Operations[四分樹].cpp ├── 11992 - Fast Matrix Operations[四分樹v2].cpp ├── 11994 - Happy Painting.cpp ├── 11995 - I Can Guess the Data Structure!.cpp ├── 11996 - Jewel Magic.cpp └── 11997 - K Smallest Sums.cpp ├── volume120 ├── 12000 - K-Transformed Permutations.cpp ├── 12002 - Happy Birthday.cpp ├── 12003 - Array Transformer.cpp ├── 12004 - Bubble Sort.cpp ├── 12005 - Find Solutions.cpp ├── 12009 - Avaricious Maryanna.cpp ├── 12010 - Boring Homework.cpp ├── 12011 - Complete the Set.cpp ├── 12012 - Detection of Extraterrestrial.cpp ├── 12013 - Entertainment.cpp ├── 12016 - Herbicide.cpp ├── 12017 - Imitation.cpp ├── 12018 - Juice Extractor.cpp ├── 12019 - Doom's Day Algorithm.cpp ├── 12022 - Ordering T-shirts.cpp ├── 12024 - Hats.c ├── 12027 - Very Big Perfect Squares.cpp ├── 12032 - The Monkey and the Oiled Bamboo.cpp ├── 12033 - Game of CS.cpp ├── 12034 - Race.cpp ├── 12035 - War Map.cpp ├── 12035 - War Map[v2].cpp ├── 12036 - Stable Grid.cpp ├── 12039 - Goldbach's Cardinality.cpp ├── 12040 - Again Lucky Numbers.cpp ├── 12041 - BFS (Binary Fibonacci String).cpp ├── 12042 - Colorful Eggs.cpp ├── 12043 - Divisors.cpp ├── 12045 - Fun with Strings.cpp ├── 12046 - Great Numbers.cpp ├── 12048 - Inhabitants.cpp ├── 12049 - Just Prune The List.cpp ├── 12050 - Palindrome Numbers.cpp ├── 12051 - Mazes in Higher Dimensions.cpp ├── 12052 - Cyber cafe.cpp ├── 12055 - Strange Research.cpp ├── 12057 - Prefix Codes.cpp ├── 12058 - Highway Monitor.cpp ├── 12060 - All Integer Average.cpp ├── 12062 - Reverse Assignment.cpp ├── 12063 - Zeros and Ones.cpp ├── 12064 - Count the Points Inside.cpp ├── 12064 - Count the Points Inside[force].cpp ├── 12064 - Count the Points Inside[simply].cpp ├── 12065 - Permutation Primes.cpp ├── 12068 - Harmonic Mean.cpp ├── 12069 - Robots inside the Labyrinth.cpp ├── 12071 - Understanding Recursion.cpp ├── 12073 - Altitude Triangle.cpp ├── 12078 - Laserbox.cpp ├── 12081 - Reduced ID Numbers.cpp ├── 12083 - Guardian of Decency.cpp ├── 12086 - Potentiometers.cpp ├── 12086 - Potentiometers[BIT].cpp ├── 12086 - Potentiometers[zkw].cpp ├── 12087 - Collecting Marbles.cpp ├── 12088 - Expression.cpp ├── 12089 - The Luncheon.cpp ├── 12091 - Multiplication.cpp ├── 12092 - Paint the Roads.cpp ├── 12094 - Battle of the Triangle.cpp └── 12096 - The SetStack Computer.cpp ├── volume121 ├── 12100 - Printer Queue.cpp ├── 12101 - Prime Path.cpp ├── 12103 - Leonardo's Notebook.cpp ├── 12105 - Bigger is Better.cpp ├── 12108 - Extraordinarily Tired Students.cpp ├── 12109 - Fairies' Defence.cpp ├── 12113 - Overlapping Squares.cpp ├── 12114 - Bachelor Arithmetic.cpp ├── 12115 - Nested Squares.cpp ├── 12117 - ACM Puzzles.cpp ├── 12118 - Inspector's Dilemma.cpp ├── 12119 - The Bells are Ringing.cpp ├── 12120 - Photographic Tour.cpp ├── 12123 - Magnetic Train Tracks.cpp ├── 12124 - Assemble.cpp ├── 12125 - March of the Penguins.cpp ├── 12126 - Containers.cpp ├── 12128 - Escape from Enemy Territory.cpp ├── 12128 - Escape from Enemy Territory[mem-less].cpp ├── 12131 - Obfuscation.cpp ├── 12132 - Tower Parking.cpp ├── 12134 - Find the Format String.cpp ├── 12135 - Switch Bulbs.cpp ├── 12136 - Schedule of a Married Man.cpp ├── 12138 - Chemical Plant-opt.cpp ├── 12141 - Line Chart.cpp ├── 12141 - Line Chart[v2.cpp ├── 12144 - Almost Shortest Path.cpp ├── 12146 - Candy.cpp ├── 12149 - Feynman.cpp ├── 12150 - Pole Position.cpp ├── 12154 - Shrinking Polygons.cpp ├── 12157 - Tariff Plan.cpp ├── 12160 - Unlock the Lock.cpp ├── 12161 - Ironman Race in Treeland.cpp ├── 12166 - Equilibrium Mobile.cpp ├── 12167 - Proving Equivalences.cpp ├── 12168 - Cat vs. Dog.cpp ├── 12169 - Disgruntled Judge.cpp ├── 12172 - Matchsticks.cpp ├── 12173 - White Water Rafting.cpp ├── 12174 - Shuffle.cpp ├── 12176 - Bring Your Own Horse.cpp ├── 12179 - Randomly-priced Tickets.cpp ├── 12182 - Toll Road.cpp ├── 12183 - Top Secret.cpp ├── 12184 - Transcribed Books.cpp ├── 12189 - Dinner Hall.cpp ├── 12191 - File Recover.cpp ├── 12192 - Grapevine.cpp ├── 12194 - Isosceles Triangles.cpp ├── 12195 - Jingle Composing.cpp ├── 12196 - Klingon Levels.cpp ├── 12197 - Trick or Treat.cpp ├── 12198 - Working at the Restaurant.cpp ├── 12524 - Arranging Heaps.cpp └── test - 12141.cpp ├── volume122 ├── 12205 - Happy Telephones.cpp ├── 12206 - Stammering Aliens.cpp ├── 12207 - That is Your Queue.cpp ├── 12208 - How Many Ones Needed.cpp ├── 12210 - A Match Making Problem.cpp ├── 12216 - How Many bases.cpp ├── 12219 - Common Subexpression Elimination.cpp ├── 12220 - Divisible Subsequences.cpp ├── 12225 - Settlers of Catan.cpp ├── 12226 - Simple Polygon.cpp ├── 12231 - Download Manager.cpp ├── 12232 - Exclusive-OR.cpp ├── 12235 - Help Bubu.cpp ├── 12239 - Bingo.cpp ├── 12240 - Cocircular Points.cpp ├── 12241 - Digits Count.cpp ├── 12243 - Flowers Flourish from France.cpp ├── 12245 - Hyperactive Girl.cpp ├── 12246 - Ingenious Metro.cpp ├── 12247 - Jollo.cpp ├── 12249 - Overlapping Scenes.cpp ├── 12254 - Electricity Connection.cpp ├── 12254 - Electricity Connection[AVX2].cpp ├── 12254 - Electricity Connection[SSE].cpp ├── 12254 - Electricity Connection[layout-opt].cpp ├── 12257 - The Queue.cpp ├── 12260 - Free Goodies.cpp ├── 12261 - High Score.cpp ├── 12263 - Rankings.cpp ├── 12265 - Selling Land.cpp ├── 12266 - Stock Prices.cpp ├── 12271 - Comparing answers.cpp ├── 12272 - Fake scoreboard.cpp ├── 12272 - Fake scoreboard[opt].cpp ├── 12273 - Palindromic DNA.cpp ├── 12274 - Jumping monkey.cpp ├── 12276 - Assembly line.cpp ├── 12277 - Locks and keys.cpp ├── 12277 - Locks and keys[opt].cpp ├── 12279 - Emoogle Balance.cpp ├── 12280 - A Digital Satire of Digital Age.cpp ├── 12281 - Hyper Box.cpp ├── 12283 - Halloween Costumes.cpp ├── 12284 - Digital Matrix.cpp ├── 12289 - One-Two-Three.cpp ├── 12290 - Counting Game.cpp ├── 12292 - Polyomino Decomposer.cpp ├── 12293 - Box Game.cpp ├── 12295 - Optimal Symmetric Paths.cpp ├── 12298 - Super Poker II.cpp └── 12299 - RMQ with Shifts.cpp ├── volume123 ├── 12300 - Smallest Regular Polygon.cpp ├── 12301 - An Angular Puzzle.cpp ├── 12302 - Nine-Point Circle.cpp ├── 12303 - Composite Transformations.cpp ├── 12307 - Smallest Enclosing Rectangle.cpp ├── 12310 - Point Location.cpp ├── 12310 - Point Location[online-ST].cpp ├── 12310 - Point Location[online].cpp ├── 12310 - Point Location[opt].cpp ├── 12311 - All-Pair Farthest Points.cpp ├── 12311 - All-Pair Farthest Points[Approx].cpp ├── 12311 - All-Pair Farthest Points[testdataGenerate].cpp ├── 12311 - All-Pair Farthest Points[v2].cpp ├── 12311 - All-Pair Farthest Points[vn].cpp ├── 12311 - All-Pair Farthest Points[vv].cpp ├── 12312 - Bounding Volume Hierarchy.cpp ├── 12312 - Bounding Volume Hierarchy[opt].cpp ├── 12316 - Sewing Buttons with Grandma.cpp ├── 12316 - Sewing Buttons with Grandma.java ├── 12317 - Document Compression.cpp ├── 12322 - Handgun Shooting Sport.cpp ├── 12325 - Zombie's Treasure Chest.cpp ├── 12327 - Xavier is Learning to Count.cpp ├── 12333 - Revenge of Fibonacci.cpp ├── 12335 - Lexicographic Order.cpp ├── 12337 - Bob's Beautiful Balls.cpp ├── 12338 - Anti-Rhyme Pairs.cpp ├── 12342 - Tax Calculator.cpp ├── 12343 - Strange Simulation.cpp ├── 12345 - Dynamic len(set(a[LR])).cpp ├── 12345 - Dynamic len(set(a[LR]))[v2].cpp ├── 12347 - Binary Search Tree.cpp ├── 12353 - Fence Making.cpp ├── 12354 - Paths in a Tree.cpp ├── 12355 - Consecutive Sums.cpp ├── 12357 - Ball Stacking.cpp ├── 12359 - Diccionario Portunol.cpp ├── 12360 - Elecrical Pollution.cpp ├── 12363 - Hedge Mazes.cpp ├── 12365 - Jupiter Atacks!.cpp ├── 12368 - Candles.cpp ├── 12368 - Candles[v2.cpp].cpp ├── 12372 - Packing for Holiday.cpp ├── 12374 - Treasure Hunt.cpp ├── 12375 - Truchet Tiling.cpp ├── 12376 - As Long as I Learn, I Live.cpp ├── 12377 - Number Coding.cpp ├── 12379 - Central Post Office.cpp ├── 12380 - Glimmr in Distress.cpp ├── 12382 - Grid of Lamps.cpp ├── 12384 - Span.cpp ├── 12385 - Interesting Sequences.cpp ├── 12386 - Smallest Polygon.cpp ├── 12389 - Cybercrime Donut Investigation.cpp ├── 12390 - Distributing Ballot Boxes.cpp ├── 12391 - Game, Set and Match.cpp ├── 12392 - Guess the Numbers.cpp ├── 12393 - Non-negative Partial Sums.cpp ├── 12394 - Peer Review.cpp ├── 12395 - Regular Convex Polygon.cpp ├── 12396 - Remoteland.cpp ├── 12397 - Roman Numerals.cpp ├── 12398 - NumPuzz I.cpp └── 12399 - NumPuzz II.cpp ├── volume124 ├── 12402 - Parallel Missions │ ├── 12402 - Parallel Missions[Astar].cpp │ └── 12402 - Parallel Missions[IDA].cpp ├── 12403 - Save Setu.c ├── 12404 - Trapezium Drawing.cpp ├── 12405 - Scaresrpw.c ├── 12406 - Help Dexter.cpp ├── 12407 - Speed Zones.cpp ├── 12412 - A Typical Homework.cpp ├── 12415 - Digit Patterns[v2].cpp ├── 12416 - Excessive Space Remover.cpp ├── 12419 - Heap Manager.cpp ├── 12424 - Answering Queries on a Tree.cpp ├── 12425 - Best Friend.cpp ├── 12429 - Finding Magic Triplets.cpp ├── 12431 - Happy 109 Day.cpp ├── 12433 - Rent a Car.cpp ├── 12436 - Rip Van Winkle's Code.cpp ├── 12436 - Rip Van Winkle's Code[v2].cpp ├── 12439 - February 29.cpp ├── 12440 - Save the Trees.cpp ├── 12442 - Forwarding Emails.cpp ├── 12444 - Bits and Pieces.cpp ├── 12445 - Happy 12.cpp ├── 12446 - How Many... in 3D.cpp ├── 12447 - Pieces and Bits.cpp ├── 12448 - Casino Advantage.cpp ├── 12450 - SpaceRecon Tournament.cpp ├── 12452 - Plants vs. Zombies HD SP.cpp ├── 12455 - Bars.cpp ├── 12456 - Mirror codes.cpp ├── 12458 - Oh, my trees!.cpp ├── 12458 - Oh, my trees![ANSI C].cpp ├── 12459 - Bees' ancestors.cpp ├── 12461 - Airplane.cpp ├── 12462 - Rectangle.cpp ├── 12463 - Little Nephew.cpp ├── 12464 - Professor Lazy, Ph.D.cpp ├── 12465 - The Turanga Leela Problem.cpp ├── 12466 - Ancestors.cpp ├── 12467 - Secret Word.cpp ├── 12468 - Zapping.cpp ├── 12469 - Stones[test].cpp ├── 12470 - Tribonacci.cpp ├── 12473 - Common Palindrome.cpp ├── 12473 - Common Palindrome[other].cpp ├── 12473 - Common Palindrome[recur].cpp ├── 12473.docx ├── 12475 - Elliptic Athletics Track.cpp ├── 12477 - Good Measures of Dispersion.cpp ├── 12478 - Hardest Problem Ever (Easy).cpp ├── 12482 - Short Story Competition.cpp ├── 12483 - Toboggan of Marbles.cpp ├── 12484 - Cards.cpp ├── 12486 - Space Elevator.cpp ├── 12487 - Midnight Cowboy.cpp ├── 12488 - Start Grid.cpp ├── 12489 - Combating cancer.cpp ├── 12491 - Words.cpp ├── 12494 - Distinct Substring.cpp ├── 12494 - Distinct Substring[v2].cpp ├── 12494 - Distinct Substring[v3].cpp ├── 12497 - Chatgaiya Postman Problem.cpp └── 12497 - Chatgaiya Postman Problem[opt].cpp ├── volume125 ├── 12501 - Bulky process of bulk reduction.cpp ├── 12502 - Three Families.cpp ├── 12503 - Robot Instructions.cpp ├── 12504 - Updating a Dictionary.cpp ├── 12505 - Searching in sqrt(n).cpp ├── 12506 - Shortest Names.cpp ├── 12507 - Kingdoms.cpp ├── 12510 - Collecting Coins.cpp ├── 12511 - Virus.cpp ├── 12517 - Digit Sum.cpp ├── 12519 - The Farnsworth Parabox.cpp ├── 12520 - Square Garden.cpp ├── 12523 - Lazy Professor.cpp ├── 12527 - Different Digits.cpp ├── 12529 - Fix the Pond.cpp ├── 12532 - Interval Product.cpp ├── 12534 - Binary Matrix 2.cpp ├── 12534 - Binary Matrix 2[opt2].cpp ├── 12534 - Binary Matrix 2[opt].cpp ├── 12534 - Binary Matrix 2[v2].cpp ├── 12535 - Probability Through Experiments.cpp ├── 12537 - Radiation.cpp ├── 12537 - Radiation_sol.cpp ├── 12538 - Version Controlled IDE.cpp ├── 12541 - Birthdates.cpp ├── 12542 - Prime Substring.cpp ├── 12543 - Longest Word.cpp ├── 12544 - Beehives.cpp ├── 12544 - Beehives[v2].cpp ├── 12546 - LCM Pair Sum.cpp ├── 12550 - How do spiders walk on water.cpp ├── 12551 - Shares.cpp ├── 12552 - The Moon of Valencia.cpp ├── 12553 - Countdown.cpp ├── 12554 - A Special Happy Birthday Song.cpp ├── 12555 - Baby Me.cpp ├── 12556 - Center of perimeter midpoints.cpp ├── 12558 - Egyptian Fractions (HARD version).cpp ├── 12559 - Finding Black Circles[Cut].cpp ├── 12560 - Good Friends │ ├── 12560 - Good Friends.cpp │ └── 12560 - Good Friends[SSE].cpp ├── 12571 - Brother & Sisters.cpp ├── 12572 - RMQ Overkill.cpp ├── 12573 - Sohel Sir's Assignment.cpp ├── 12575 - Sin Cos Problem.cpp ├── 12576 - Simply Loopy.cpp ├── 12577 - Hajj-e-Akbar.cpp ├── 12578 - 1062.cpp ├── 12582 - Wedding of Sultan.cpp ├── 12583 - Memory Overflow.cpp ├── 12587 - Reduce the Maintenance Cost.cpp ├── 12589 - Learning Vector.cpp ├── 12595 - Galactic Transmission.cpp ├── 12595 - Galactic Transmission[opt].cpp ├── 12598 - Starting School.cpp ├── 12598 - Starting School[v2].cpp └── 12599 - Black and White.cpp ├── volume126 ├── 12602 - Nice Licence Plates.cpp ├── 12604 - Caesar Cipher.cpp ├── 12607 - Amazing Maze.cpp ├── 12610 - Attractive Grid.cpp ├── 12611 - Beautiful Flag.cpp ├── 12613 - Distinct Substring 2.cpp ├── 12614 - Earn For Future.cpp ├── 12618 - I Puzzle You[IDA(slow)].cpp ├── 12618 - I Puzzle You[doubleBFS].cpp ├── 12619 - Just Make A Wish.cpp ├── 12620 - Fibonacci Sum.cpp ├── 12621 - On a Diet.cpp ├── 12626 - I love pizza.cpp ├── 12633 - Super Rooks on Chessboard.cpp ├── 12634 - Pairing Boys and Girls.cpp ├── 12636 - Disguised Giveaway.cpp ├── 12637 - 30 Minutes or Less.cpp ├── 12638 - Godel's Dream.cpp ├── 12639 - Hexagonal Puzzle.cpp ├── 12641 - Reodrnreig Lteetrs in Wrods.cpp ├── 12642 - Shuffling Cards.cpp ├── 12644 - Vocabulary.cpp ├── 12645 - Water Supply.cpp ├── 12648 - Boss.cpp ├── 12649 - Folding Machine.cpp ├── 12651 - Triangles.cpp ├── 12652 - Lines of Containers.cpp ├── 12653 - Buses.cpp ├── 12654 - Patches.cpp ├── 12655 - Trucks.cpp ├── 12656 - Almost Palindrome.cpp ├── 12657 - Boxes in a Line.cpp ├── 12661 - Funny Car Racing.cpp ├── 12662 - Good Teacher.cpp ├── 12663 - High bridge, low bridge.cpp ├── 12665 - Joking with Fermat's Last Theorem.cpp ├── 12667 - Last Blood.cpp ├── 12669 - Blogger language.cpp ├── 12670 - Counting ones.cpp ├── 12671 - Disjoint water supply.cpp ├── 12672 - Eleven.cpp ├── 12673 - Football.cpp ├── 12674 - Go up the ultras.cpp ├── 12675 - Hide and seek.cpp ├── 12677 - Join two kingdoms.cpp ├── 12679 - It Can Be Arranged.cpp ├── 12682 - Joe is learning to speak.cpp ├── 12682 - Joe is learning to speak[v2].cpp ├── 12684 - VivoParc.cpp ├── 12685 - Binary Tree.cpp ├── 12686 - Trending Topic.cpp ├── 12694 - Meeting Room Arrangement.cpp ├── 12696 - Cabin Baggage.cpp └── 12697 - Minimal Subarray Length.cpp ├── volume127 ├── 12700 - Banglawash.cpp ├── 12701 - The Twin Head Dragon.cpp ├── 12702 - Dilation.cpp ├── 12703 - Little Rakin.cpp ├── 12704 - Little Masters.cpp ├── 12705 - Breaking Board.cpp ├── 12706 - Zero-Knowledge Protocol.cpp ├── 12707 - Block Meh.cpp ├── 12708 - GCD The Largest.cpp ├── 12709 - Falling Ants.cpp ├── 12710 - Game of MJ.cpp ├── 12712 - Pattern Locker.cpp ├── 12713 - Pearl Chains.cpp ├── 12714 - Two Points Revisited.cpp ├── 12716 - GCD XOR.cpp ├── 12716 - GCD XOR[v2].cpp ├── 12717 - Fiasco.cpp ├── 12718 - Dromicpalin Substrings.cpp ├── 12719 - Fill the Cuboid.cpp ├── 12720 - Algorithm of Phil.cpp ├── 12721 - Cheap B-Subsequence.cpp ├── 12722 - Cryptography of the Floating Key.cpp ├── 12723 - Dudu, the Possum.cpp ├── 12724 - Hnelpig Arnde.cpp ├── 12725 - Fat and Orial.cpp ├── 12726 - One Friend at a Time.cpp ├── 12727 - The Sightseeing Tour.cpp ├── 12729 - Squares Game.cpp ├── 12730 - Skyrk's Bar.cpp ├── 12745 - Wishmaster.cpp ├── 12747 - Back to Edit Distance.cpp ├── 12748 - Wifi Access.cpp ├── 12749 - John's Tree.cpp ├── 12750 - Keep Rafa at Chelsea.cpp ├── 12751 - An Interesting Game.cpp ├── 12753 - Countree Song.cpp ├── 12754 - Display Problem.cpp ├── 12755 - Easy Puzzle.cpp ├── 12761 - Blue Chips.cpp ├── 12763 - Dicey Dice.cpp ├── 12764 - Exercising Emoticons.cpp ├── 12765 - Factorial Products.cpp ├── 12768 - Inspired Procrastination.cpp ├── 12769 - Kool Konstructions.cpp ├── 12770 - Palinagram.cpp ├── 12771 - Meeting Point of Circles.cpp ├── 12775 - Gift Dilemma.cpp ├── 12776 - Query for Divisor-free Numbers.cpp ├── 12778 - Minimum Sum.cpp ├── 12779 - The Largest Circle.cpp ├── 12783 - Weak Links.cpp ├── 12784 - Don't Care.cpp ├── 12785 - Emacs Plugin.cpp ├── 12786 - Friendship Networks.cpp ├── 12788 - Smooth Factor.cpp ├── 12790 - The Win-stay and Lose-shift Strategy.cpp ├── 12791 - Lap.cpp ├── 12792 - Shuffled Deck.cpp ├── 12793 - Confederation.cpp ├── 12794 - Miss Worm.cpp ├── 12795 - Ecology.cpp ├── 12796 - Teletransport.cpp ├── 12797 - Letters.cpp ├── 12798 - Handball.cpp └── 12799 - RSA.cpp ├── volume128 ├── 12800 - Cut.cpp ├── 12801 - Grandpa Pepe's Pizza.cpp ├── 12802 - Gift From the Gods.cpp ├── 12803 - Arithmetic Expressions.cpp ├── 12804 - The Necronomicon of Computing.cpp ├── 12805 - Raiders of the Lost Sign.cpp ├── 12806 - Grand Tichu.cpp ├── 12808 - Banning Balconing.cpp ├── 12809 - Binary Search Tree.cpp ├── 12810 - Sumthing.cpp ├── 12811 - The Turtle's Journey.cpp ├── 12812 - The Largest Diamond-Shaped Kite.cpp ├── 12813 - Mocking the Precision.cpp ├── 12815 - Taking the Stairs.cpp ├── 12816 - Isosceles Triangles.cpp ├── 12817 - Sleight of Hand(1).cpp ├── 12818 - Arc and Point.cpp ├── 12820 - Cool Word.cpp ├── 12821 - Double Shortest Paths.cpp ├── 12822 - Extraordinarily large LED.cpp ├── 12825 - Happy Robot.cpp ├── 12826 - Incomplete Chessboard.cpp ├── 12828 - Kick the ball!.cpp ├── 12830 - A Football Stadium.cpp ├── 12831 - Bob the Builder.cpp ├── 12832 - Chicken Lover.cpp ├── 12833 - Daily Potato.cpp ├── 12834 - Extreme Terror.cpp ├── 12837 - Hasmot Ali Professor.cpp ├── 12839 - Judge in Queue.cpp ├── 12840 - The Archery Puzzle.cpp ├── 12841 - In Puzzleland (III).cpp ├── 12841 - In Puzzleland (III)[ver2].cpp ├── 12842 - The Courier Problem.cpp ├── 12843 - Disputed Claims.cpp ├── 12844 - Outwitting the Weighing Machine.cpp ├── 12846 - A Daisy Puzzle Game.cpp ├── 12848 - In Puzzleland (IV).cpp ├── 12849 - Mother's Jam Puzzle.cpp ├── 12851 - The Tinker's Puzzle.cpp ├── 12852 - The Miser's Puzzle.cpp ├── 12853 - The Pony Cart Problem.cpp ├── 12854 - Automated Checking Machine.cpp ├── 12855 - Black and white stones.cpp ├── 12856 - Counting substhreengs.cpp ├── 12858 - Even distribution.cpp ├── 12860 - Galaxy collision.cpp ├── 12861 - Help cupid.cpp ├── 12862 - Intrepid climber.cpp ├── 12863 - Journey through the kingdom.cpp ├── 12863 - Journey through the kingdom[v2].cpp ├── 12863 - Journey through the kingdom[v3].cpp ├── 12863 - Journey through the kingdom[v4].cpp ├── 12863 - Journey through the kingdom[v5].cpp ├── 12865 - Volume Control.cpp ├── 12866 - Combination.cpp ├── 12869 - Zeroes.cpp ├── 12870 - Fishing.cpp ├── 12871 - Landmine Cleaner.cpp ├── 12872 - Hidden Plus Signs.cpp ├── 12873 - The Programmers.cpp ├── 12874 - Blanket.cpp ├── 12875 - Concert Tour.cpp ├── 12876 - City.cpp ├── 12878 - Flowery Trails.cpp ├── 12880 - Book Club.cpp ├── 12881 - Ricochet Robots.cpp ├── 12886 - The Big Painting.cpp ├── 12887 - The Soldier's Dilemma.cpp ├── 12890 - Easy Peasy.cpp ├── 12890 - Easy Peasy[v2].cpp ├── 12893 - Count It.cpp ├── 12894 - Perfect Flag.cpp ├── 12895 - Armstrong Number.cpp ├── 12896 - Mobile SMS.cpp ├── 12897 - Decoding Baby Boos.cpp └── 12898 - And Or.cpp ├── volume129 ├── 12904 - Load Balancing.cpp ├── 12905 - Volume of Revolution.cpp ├── 12930 - Bigger or Smaller.cpp ├── 12932 - Defeat the Wrong Program.cpp ├── 12933 - Easy Graph Problem.cpp ├── 12934 - Factorial Division.cpp ├── 12936 - Hehe.cpp ├── 12938 - Just Another Easy Problem.cpp ├── 12939 - Keep Fit │ ├── 12939 - Keep Fit.cpp │ └── 12939 - Keep Fit[SSE].cpp ├── 12940 - Next Palindromic Numbers.cpp ├── 12942 - Sub-expression Counting.cpp ├── 12943 - Designing an Electronic Device.cpp ├── 12944 - Earthquake Disaster.cpp ├── 12945 - Farmer Jane.cpp ├── 12946 - Peanoland contacting Gaussland.cpp ├── 12947 - Texting with Grandma.cpp ├── 12948 - Interstellar Travel.cpp ├── 12949 - Voting Duels.cpp ├── 12950 - Even Obsession.cpp ├── 12951 - Stock Market.cpp ├── 12952 - Tri-du.cpp ├── 12953 - Puzzle.cpp ├── 12953 - Puzzle[WA].cpp ├── 12954 - Spiral.cpp ├── 12955 - Factorial.cpp ├── 12956 - Curious Guardians.cpp ├── 12957 - Rectangle Park.cpp ├── 12959 - Strategy Game.cpp ├── 12960 - Palindrome.cpp ├── 12961 - Lottery.cpp ├── 12962 - Average Reuse Distance.cpp ├── 12965 - Angry Bids.cpp ├── 12967 - Spray Graphs.cpp ├── 12970 - Alcoholic Pilots.cpp ├── 12974 - Exquisite Strings.cpp ├── 12976 - Greedy Artisan_v2.cpp ├── 12981 - Secrete Master Plan.cpp ├── 12983 - The Battle of Chibi.cpp ├── 12984 - Pick The Sticks.cpp ├── 12984 - Pick The Sticks[opt].cpp ├── 12988 - Sudoku.cpp ├── 12992 - Huatuo's Medicine.cpp ├── 12995 - Farey Sequence.cpp ├── 12996 - Ultimate Mango Challenge.cpp └── 12998 - Tree Weights.cpp ├── volume130 ├── 13000 - VIP Treatment.cpp ├── 13004 - At most twice.cpp ├── 13005 - Blood groups.cpp ├── 13006 - Cake cut.cpp ├── 13007 - D as in Daedalus.cpp ├── 13008 - Exposing corruption.cpp ├── 13009 - Fence the vegetables fail.cpp ├── 13010 - Galactic taxes.cpp ├── 13011 - Height map.cpp ├── 13012 - Identifying tea.cpp ├── 13013 - Just a bit sorted.cpp ├── 13014 - Keep it energized.cpp ├── 13015 - Promotions.cpp ├── 13017 - Canvas Painting.cpp ├── 13018 - Dice Cup.cpp ├── 13022 - Sheldon Numbers.cpp ├── 13024 - Saint John Festival.cpp ├── 13025 - Back to the Past.cpp ├── 13026 - Search the Khoj.cpp ├── 13029 - Emoticons.cpp ├── 13031 - Geek Power Inc.cpp ├── 13032 - Marbles in Jars.cpp ├── 13034 - Solve Everything.cpp ├── 13035 - Another Combination Problem.cpp ├── 13036 - Birthday Gift to SJ - 2.cpp ├── 13037 - Chocolate.cpp ├── 13037 - Chocolate[v2].cpp ├── 13038 - Directed Forest.cpp ├── 13039 - Fibonacci Triangle.cpp ├── 13043 - Marbles.cpp ├── 13045 - Drawing Polygon.cpp ├── 13046 - Bus Collisions.cpp ├── 13047 - Arrows.cpp ├── 13048 - Burger Stand.cpp ├── 13049 - Combination Lock.cpp ├── 13052 - Fisa Flood.cpp ├── 13054 - Hippo Circus.cpp ├── 13055 - Inception.cpp ├── 13056 - Jerry's Game.cpp ├── 13057 - Prove Them All.cpp ├── 13059 - Tennis Championship.cpp ├── 13061 - Going Shopping with Grandma (I).cpp ├── 13067 - Prime Kebab Menu.cpp ├── 13068 - The Weakest Link.cpp ├── 13069 - The calculator machine.cpp ├── 13070 - Palm trees in the snow.cpp ├── 13071 - Double decker.cpp ├── 13072 - Duckindromes.cpp ├── 13073 - The Count of the Rose.cpp ├── 13074 - Fixed-point theorem.cpp ├── 13075 - Ice-cream cones.cpp ├── 13078 - Feeding chicks.cpp ├── 13079 - On the beach.cpp ├── 13080 - Piano keyboard.cpp ├── 13081 - XOR Sequence Revisited.cpp ├── 13082 - High School Assembly.cpp ├── 13083 - Yet another GCDSUM.cpp ├── 13085 - Forming Teams.cpp ├── 13088 - Lexicographically Smallest FPIS.cpp ├── 13090 - Base of MJ.cpp ├── 13091 - No Ball.cpp ├── 13092 - Fold the String.cpp ├── 13093 - Acronyms.cpp ├── 13094 - Tobby Bones.cpp ├── 13094 - Tobby Bones[opt].cpp ├── 13094 - Tobby Bones[pbds].cpp ├── 13095 - Tobby and Query.cpp ├── 13096 - Standard Deviation.cpp ├── 13097 - Tobby and the LED display.cpp └── 13098 - Triangular Test II.cpp ├── volume131 ├── 13100 - Painting the Wall.cpp ├── 13100 - Painting the Wall[DLX].cpp ├── 13101 - Tobby on Tree.cpp ├── 13102 - Tobby Stones.cpp ├── 13103 - Tobby and Seven.cpp ├── 13104 - Tobby and Prime Sum.cpp ├── 13105 - Alliances in Hogwarts.cpp ├── 13106 - Vogons.cpp ├── 13107 - Royale With Cheese.cpp ├── 13108 - Juanma and the Drinking Fountains.cpp ├── 13109 - Elephants.cpp ├── 13110 - Funny day in Playland.cpp ├── 13111 - The price is correct.cpp ├── 13112 - Are you ok.cpp ├── 13113 - Presidential Election.cpp ├── 13114 - Josephus lottery II.cpp ├── 13115 - Sudoku.cpp ├── 13116 - Multistory Labyrinth.cpp ├── 13117 - ACIS, A Contagious vIruS.cpp ├── 13118 - Binary Land.cpp ├── 13119 - Castaways.cpp ├── 13121 - Eclipsing Gianik Star.cpp ├── 13122 - Funny Cardiologist.cpp ├── 13123 - Christmas Lights-opt.cpp ├── 13123 - Christmas Lights.cpp ├── 13124 - socialhare.cpp ├── 13125 - Water troubles.cpp ├── 13126 - Wildcards.cpp ├── 13127 - Bank Robbery.cpp ├── 13128 - Tangamandapio.cpp ├── 13129 - Subsets.cpp ├── 13130 - Cacho.cpp ├── 13131 - Divisors.cpp ├── 13132 - Laser Mirrors.cpp ├── 13133 - ConcatFibos.cpp ├── 13134 - Generate, Sort and Search.cpp ├── 13135 - Homework.cpp ├── 13136 - Recurrences.cpp ├── 13137 - Progressions.cpp ├── 13137 - Progressions_v2.cpp ├── 13140 - Squares, Lists and Digital Sums.cpp ├── 13141 - Growing Trees.cpp ├── 13142 - Destroy the Moon to Save the Earth.cpp ├── 13144 - Go Boards.cpp ├── 13145 - Wuymul Wixcha.cpp ├── 13146 - Edid Tistance.cpp ├── 13147 - Travel Planning.cpp ├── 13148 - A Giveaway.cpp ├── 13149 - Game of XOR.cpp ├── 13150 - National Bomb Defusing Squad.cpp ├── 13151 - Rational Grading.cpp ├── 13152 - Balanced String.cpp ├── 13153 - Number of Connected Components.cpp ├── 13154 - Extreme XOR Sum.cpp ├── 13157 - Prime Distance.cpp ├── 13160 - Bribing Eve.cpp ├── 13161 - Candle Box.cpp ├── 13171 - Pixel Art.cpp ├── 13177 - Orchestral scores.cpp ├── 13178 - Is it multiple of 3.cpp ├── 13180 - The countess pearls.cpp ├── 13181 - Sleeping in hostels.cpp ├── 13182 - Tobby's Ancestors.cpp ├── 13183 - Tobby and Array │ ├── 13183 - Tobby and Array-opt.cpp │ └── 13183 - Tobby and Array.cpp ├── 13184 - Counting Edges and Graphs.cpp ├── 13185 - DPA Numbers I.cpp ├── 13186 - Tobby and the quaseEquals strings │ ├── 13186 - Tobby and the quaseEquals strings-opt.cpp │ ├── 13186 - Tobby and the quaseEquals strings-tri.cpp │ └── 13186 - Tobby and the quaseEquals strings.cpp ├── 13187 - Felipe and the Sequence.cpp ├── 13188 - Rectangular Sum.cpp ├── 13189 - Humbertov and the Triangular Spiral.cpp ├── 13190 - Rockabye Tobby.cpp ├── 13191 - Tobby Primes.cpp ├── 13193 - Rotations.cpp └── 13194 - DPA Numbers II.cpp └── volume132 ├── 13203 - Disk Madness.cpp ├── 13204 - Count these Permutations.cpp ├── 13205 - Antivirus.cpp ├── 13206 - Beautiful Triad.cpp ├── 13207 - AirCraft Monster.cpp ├── 13208 - Drought In Nlogonia.cpp ├── 13209 - My Password is a Palindromic Prime Number.cpp ├── 13211 - Geonosis-opt.cpp ├── 13211 - Geonosis.cpp ├── 13212 - How many inversions.cpp ├── 13213 - Quidditch Match.cpp ├── 13214 - The Robot's Grid.cpp ├── 13215 - Polygonal Park.cpp ├── 13216 - Problem with a ridiculously long name but with a ridiculously short description.cpp ├── 13217 - Amazing Function.cpp ├── 13221 - Elegant Pillars.cpp ├── 13227 - Katrina's Shadow.cpp ├── 13229 - Alice's Travels.cpp ├── 13241 - Blade Ranas 2040.cpp ├── 13242 - Pool Filling.cpp ├── 13243 - The broken DNA of Jack the Ripper.cpp ├── 13243 - The broken DNA of Jack the Ripper[opt].cpp ├── 13244 - Space Happiness.cpp ├── 13245 - Prime Darts.cpp ├── 13247 - Recomputing Dependencies.cpp ├── 13248 - Rogue One- Time to Impact.cpp ├── 13249 - A Contest to Meet.cpp ├── 13250 - Balance Game.cpp ├── 13251 - Compact Terms.cpp ├── 13252 - Rotating Drum.cpp ├── 13253 - Rational Coins.cpp ├── 13254 - Fish-v2.cpp ├── 13254 - Fish.cpp ├── 13256 - Hip-$n$.cpp ├── 13257 - License Plates.cpp ├── 13258 - Romeo and Juliet Secrets.cpp ├── 13259 - Soccer Championship.cpp ├── 13260 - Alice's Travels II.cpp ├── 13260 - Alice's Travels II[opt].cpp ├── 13262 - Count Equation Solutions.cpp ├── 13271 - Brick Walls.cpp ├── 13272 - Bracket Sequence.cpp ├── 13273 - Making a Team.cpp ├── 13274 - Christmas Tree.cpp ├── 13275 - Leap Birthdays.cpp ├── 13276 - Megamind.cpp ├── 13277 - XOR Path.cpp ├── 13278 - Angry Birds Transformers.cpp ├── 13279 - Divisors.cpp ├── 13280 - Substring Sorting.cpp ├── 13282 - Cakey McCakeFace ├── 13282 - Cakey McCakeFace.cpp ├── 13282 - Cakey McCakeFace[block].cpp ├── 13282 - Cakey McCakeFace[opt2].cpp └── 13282 - Cakey McCakeFace[opt].cpp ├── 13283 - Table.cpp ├── 13284 - Macarons.cpp ├── 13286 - Ingredients.cpp ├── 13287 - Shattered Cake.cpp ├── 13288 - Cordon Bleu.cpp ├── 13291 - Frosting on the Cake.cpp ├── 13292 - Blowing Candles.cpp ├── 13293 - All-star Three-point Contest.cpp ├── 13294 - Forming Better Groups.cpp ├── 13295 - Carrol's Scrabble.cpp ├── 13296 - Dominoes Magic Squares.cpp ├── 13297 - Extended Puzzle.cpp ├── 13297 - Extended Puzzle[opt].cpp ├── 13298 - A Fibonacci Family Formula.cpp └── 13298 - A Fibonacci Family Formula[L-2-R-sliding-opt].cpp /.gitignore: -------------------------------------------------------------------------------- 1 | ## 2 | 3 | *.exe 4 | -------------------------------------------------------------------------------- /OnlineJudge/HackerRank/SQL/Basic Select - Select by ID.sql: -------------------------------------------------------------------------------- 1 | SELECT * FROM CITY WHERE ID = 1661; -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/10078. Matryoshka Doll/1.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/10078. Matryoshka Doll/send.lst: -------------------------------------------------------------------------------- 1 | main.c 2 | doll.h 3 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/10078. Matryoshka Doll/source.lst: -------------------------------------------------------------------------------- 1 | doll.c 2 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/10079. Tiny Command Tool/1.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/10079. Tiny Command Tool/send.lst: -------------------------------------------------------------------------------- 1 | main.c 2 | tct.h 3 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/10079. Tiny Command Tool/source.lst: -------------------------------------------------------------------------------- 1 | tct.c 2 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/10084. Prefix Sum/send.lst: -------------------------------------------------------------------------------- 1 | utils.h 2 | secret.c 3 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/10084. Prefix Sum/source.lst: -------------------------------------------------------------------------------- 1 | prefixsum-pthread.c 2 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/10088. Prefix Sum (OpenMP)/send.lst: -------------------------------------------------------------------------------- 1 | utils.h 2 | secret.c 3 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/10088. Prefix Sum (OpenMP)/source.lst: -------------------------------------------------------------------------------- 1 | prefixsum-pthread.c 2 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/10091. Fast Matrix Multiplication (OpenCL)/foo.cl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/21. Maximum in Matrix/max.h: -------------------------------------------------------------------------------- 1 | int max(int A[][5]); 2 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/50008. Pointer Chasing/setmatrix.h: -------------------------------------------------------------------------------- 1 | void processSetMatrix(int ***ptr); 2 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/50058. Word Selection/0.out: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/50074. Tree Statistics/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gcc -std=c99 -O2 main.c trace.c -lm 3 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/GPGPU-Programming/0.in: -------------------------------------------------------------------------------- 1 | abc defg 2 | -------------------------------------------------------------------------------- /OnlineJudge/JudgeGirl/fastgdb/test.in: -------------------------------------------------------------------------------- 1 | 1 2 | 10 3 | 0 4 | -------------------------------------------------------------------------------- /OnlineJudge/KHCode/README.md: -------------------------------------------------------------------------------- 1 | # 高雄市高中職學生 - "飆程式網" 2 | 3 | http://khcode.m-school.tw/index.php -------------------------------------------------------------------------------- /OnlineJudge/POJ/POJ 1166.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/OnlineJudge/POJ/POJ 1166.cpp -------------------------------------------------------------------------------- /OnlineJudge/Paiza/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/OnlineJudge/Paiza/README.md -------------------------------------------------------------------------------- /OnlineJudge/ZEROJUDGE/A174.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/OnlineJudge/ZEROJUDGE/A174.c -------------------------------------------------------------------------------- /OnlineJudge/ZEROJUDGE/d798.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/OnlineJudge/ZEROJUDGE/d798.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/README.md -------------------------------------------------------------------------------- /UVaTestData/v1in/100.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/100.in -------------------------------------------------------------------------------- /UVaTestData/v1in/101.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/101.in -------------------------------------------------------------------------------- /UVaTestData/v1in/102.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/102.in -------------------------------------------------------------------------------- /UVaTestData/v1in/103.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/103.in -------------------------------------------------------------------------------- /UVaTestData/v1in/104.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/104.in -------------------------------------------------------------------------------- /UVaTestData/v1in/106.in: -------------------------------------------------------------------------------- 1 | 25 2 | 42 3 | 643 4 | -------------------------------------------------------------------------------- /UVaTestData/v1in/109.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/109.in -------------------------------------------------------------------------------- /UVaTestData/v1in/110.in: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /UVaTestData/v1in/115.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/115.in -------------------------------------------------------------------------------- /UVaTestData/v1in/116.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/116.in -------------------------------------------------------------------------------- /UVaTestData/v1in/118.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/118.in -------------------------------------------------------------------------------- /UVaTestData/v1in/121.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/121.in -------------------------------------------------------------------------------- /UVaTestData/v1in/122.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/122.in -------------------------------------------------------------------------------- /UVaTestData/v1in/123.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/123.in -------------------------------------------------------------------------------- /UVaTestData/v1in/125.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/125.in -------------------------------------------------------------------------------- /UVaTestData/v1in/126.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/126.in -------------------------------------------------------------------------------- /UVaTestData/v1in/128.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/128.in -------------------------------------------------------------------------------- /UVaTestData/v1in/129.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/129.in -------------------------------------------------------------------------------- /UVaTestData/v1in/130.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/130.in -------------------------------------------------------------------------------- /UVaTestData/v1in/131.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/131.in -------------------------------------------------------------------------------- /UVaTestData/v1in/132.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/132.in -------------------------------------------------------------------------------- /UVaTestData/v1in/134.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/134.in -------------------------------------------------------------------------------- /UVaTestData/v1in/137.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/137.in -------------------------------------------------------------------------------- /UVaTestData/v1in/143.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/143.in -------------------------------------------------------------------------------- /UVaTestData/v1in/149.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/149.in -------------------------------------------------------------------------------- /UVaTestData/v1in/150.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/150.in -------------------------------------------------------------------------------- /UVaTestData/v1in/157.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/157.in -------------------------------------------------------------------------------- /UVaTestData/v1in/158.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/158.in -------------------------------------------------------------------------------- /UVaTestData/v1in/162.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/162.in -------------------------------------------------------------------------------- /UVaTestData/v1in/163.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/163.in -------------------------------------------------------------------------------- /UVaTestData/v1in/164.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/164.in -------------------------------------------------------------------------------- /UVaTestData/v1in/165.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/165.in -------------------------------------------------------------------------------- /UVaTestData/v1in/167.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/167.in -------------------------------------------------------------------------------- /UVaTestData/v1in/169.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/169.in -------------------------------------------------------------------------------- /UVaTestData/v1in/171.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/171.in -------------------------------------------------------------------------------- /UVaTestData/v1in/172.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/172.in -------------------------------------------------------------------------------- /UVaTestData/v1in/173.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/173.in -------------------------------------------------------------------------------- /UVaTestData/v1in/174.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/174.in -------------------------------------------------------------------------------- /UVaTestData/v1in/175.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/175.in -------------------------------------------------------------------------------- /UVaTestData/v1in/176.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/176.in -------------------------------------------------------------------------------- /UVaTestData/v1in/180.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/180.in -------------------------------------------------------------------------------- /UVaTestData/v1in/181.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/181.in -------------------------------------------------------------------------------- /UVaTestData/v1in/182.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/182.in -------------------------------------------------------------------------------- /UVaTestData/v1in/184.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/184.in -------------------------------------------------------------------------------- /UVaTestData/v1in/185.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/185.in -------------------------------------------------------------------------------- /UVaTestData/v1in/189.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/189.in -------------------------------------------------------------------------------- /UVaTestData/v1in/192.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/192.in -------------------------------------------------------------------------------- /UVaTestData/v1in/193.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/193.in -------------------------------------------------------------------------------- /UVaTestData/v1in/194.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/194.in -------------------------------------------------------------------------------- /UVaTestData/v1in/196.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/196.in -------------------------------------------------------------------------------- /UVaTestData/v1in/198.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/198.in -------------------------------------------------------------------------------- /UVaTestData/v1in/199.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1in/199.in -------------------------------------------------------------------------------- /UVaTestData/v1out/100.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/100.out -------------------------------------------------------------------------------- /UVaTestData/v1out/101.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/101.out -------------------------------------------------------------------------------- /UVaTestData/v1out/102.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/102.out -------------------------------------------------------------------------------- /UVaTestData/v1out/103.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/103.out -------------------------------------------------------------------------------- /UVaTestData/v1out/104.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/104.out -------------------------------------------------------------------------------- /UVaTestData/v1out/105.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/105.out -------------------------------------------------------------------------------- /UVaTestData/v1out/106.out: -------------------------------------------------------------------------------- 1 | 4 9 2 | 7 12 3 | 102 133 4 | -------------------------------------------------------------------------------- /UVaTestData/v1out/107.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/107.out -------------------------------------------------------------------------------- /UVaTestData/v1out/108.out: -------------------------------------------------------------------------------- 1 | 6653 2 | -------------------------------------------------------------------------------- /UVaTestData/v1out/109.out: -------------------------------------------------------------------------------- 1 | 84350.00 2 | -------------------------------------------------------------------------------- /UVaTestData/v1out/110.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/110.out -------------------------------------------------------------------------------- /UVaTestData/v1out/111.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/111.out -------------------------------------------------------------------------------- /UVaTestData/v1out/112.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/112.out -------------------------------------------------------------------------------- /UVaTestData/v1out/113.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/113.out -------------------------------------------------------------------------------- /UVaTestData/v1out/114.out: -------------------------------------------------------------------------------- 1 | 5 2 | 400 3 | 534 4 | 530 5 | 1469 6 | -------------------------------------------------------------------------------- /UVaTestData/v1out/115.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/115.out -------------------------------------------------------------------------------- /UVaTestData/v1out/116.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/116.out -------------------------------------------------------------------------------- /UVaTestData/v1out/117.out: -------------------------------------------------------------------------------- 1 | 11 2 | 114 3 | 10 4 | 103 5 | -------------------------------------------------------------------------------- /UVaTestData/v1out/118.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/118.out -------------------------------------------------------------------------------- /UVaTestData/v1out/119.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/119.out -------------------------------------------------------------------------------- /UVaTestData/v1out/120.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/120.out -------------------------------------------------------------------------------- /UVaTestData/v1out/121.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/121.out -------------------------------------------------------------------------------- /UVaTestData/v1out/122.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/122.out -------------------------------------------------------------------------------- /UVaTestData/v1out/123.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/123.out -------------------------------------------------------------------------------- /UVaTestData/v1out/124.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/124.out -------------------------------------------------------------------------------- /UVaTestData/v1out/125.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/125.out -------------------------------------------------------------------------------- /UVaTestData/v1out/126.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/126.out -------------------------------------------------------------------------------- /UVaTestData/v1out/127.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/127.out -------------------------------------------------------------------------------- /UVaTestData/v1out/128.out: -------------------------------------------------------------------------------- 1 | 77 FD 2 | 0C 86 3 | 00 00 4 | 08 CB 5 | 44 22 6 | -------------------------------------------------------------------------------- /UVaTestData/v1out/129.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/129.out -------------------------------------------------------------------------------- /UVaTestData/v1out/130.out: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 3 4 | 13 5 | 83 6 | 5 7 | 2 8 | -------------------------------------------------------------------------------- /UVaTestData/v1out/131.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/131.out -------------------------------------------------------------------------------- /UVaTestData/v1out/132.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/132.out -------------------------------------------------------------------------------- /UVaTestData/v1out/133.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/133.out -------------------------------------------------------------------------------- /UVaTestData/v1out/134.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/134.out -------------------------------------------------------------------------------- /UVaTestData/v1out/135.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/135.out -------------------------------------------------------------------------------- /UVaTestData/v1out/136.out: -------------------------------------------------------------------------------- 1 | The 1500'th ugly number is 859963392. 2 | -------------------------------------------------------------------------------- /UVaTestData/v1out/137.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/137.out -------------------------------------------------------------------------------- /UVaTestData/v1out/138.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/138.out -------------------------------------------------------------------------------- /UVaTestData/v1out/139.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/139.out -------------------------------------------------------------------------------- /UVaTestData/v1out/140.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/140.out -------------------------------------------------------------------------------- /UVaTestData/v1out/141.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/141.out -------------------------------------------------------------------------------- /UVaTestData/v1out/142.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/142.out -------------------------------------------------------------------------------- /UVaTestData/v1out/143.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/143.out -------------------------------------------------------------------------------- /UVaTestData/v1out/144.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/144.out -------------------------------------------------------------------------------- /UVaTestData/v1out/145.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/145.out -------------------------------------------------------------------------------- /UVaTestData/v1out/146.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/146.out -------------------------------------------------------------------------------- /UVaTestData/v1out/147.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/147.out -------------------------------------------------------------------------------- /UVaTestData/v1out/148.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/148.out -------------------------------------------------------------------------------- /UVaTestData/v1out/149.out: -------------------------------------------------------------------------------- 1 | 132 2 | 92 3 | 28 4 | 4 5 | -------------------------------------------------------------------------------- /UVaTestData/v1out/150.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/150.out -------------------------------------------------------------------------------- /UVaTestData/v1out/151.out: -------------------------------------------------------------------------------- 1 | 11 2 | 1 3 | 7 4 | 15 5 | 38 6 | -------------------------------------------------------------------------------- /UVaTestData/v1out/152.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/152.out -------------------------------------------------------------------------------- /UVaTestData/v1out/153.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/153.out -------------------------------------------------------------------------------- /UVaTestData/v1out/154.out: -------------------------------------------------------------------------------- 1 | 63 2 | 1 3 | 50 4 | 69 5 | -------------------------------------------------------------------------------- /UVaTestData/v1out/155.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/155.out -------------------------------------------------------------------------------- /UVaTestData/v1out/156.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/156.out -------------------------------------------------------------------------------- /UVaTestData/v1out/157.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/157.out -------------------------------------------------------------------------------- /UVaTestData/v1out/158.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/158.out -------------------------------------------------------------------------------- /UVaTestData/v1out/159.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/159.out -------------------------------------------------------------------------------- /UVaTestData/v1out/160.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/160.out -------------------------------------------------------------------------------- /UVaTestData/v1out/161.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/161.out -------------------------------------------------------------------------------- /UVaTestData/v1out/162.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/162.out -------------------------------------------------------------------------------- /UVaTestData/v1out/163.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/163.out -------------------------------------------------------------------------------- /UVaTestData/v1out/164.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/164.out -------------------------------------------------------------------------------- /UVaTestData/v1out/165.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/165.out -------------------------------------------------------------------------------- /UVaTestData/v1out/166.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/166.out -------------------------------------------------------------------------------- /UVaTestData/v1out/167.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/167.out -------------------------------------------------------------------------------- /UVaTestData/v1out/168.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/168.out -------------------------------------------------------------------------------- /UVaTestData/v1out/169.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/169.out -------------------------------------------------------------------------------- /UVaTestData/v1out/170.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/170.out -------------------------------------------------------------------------------- /UVaTestData/v1out/171.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/171.out -------------------------------------------------------------------------------- /UVaTestData/v1out/172.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/172.out -------------------------------------------------------------------------------- /UVaTestData/v1out/173.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/173.out -------------------------------------------------------------------------------- /UVaTestData/v1out/174.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/174.out -------------------------------------------------------------------------------- /UVaTestData/v1out/175.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/175.out -------------------------------------------------------------------------------- /UVaTestData/v1out/176.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/176.out -------------------------------------------------------------------------------- /UVaTestData/v1out/177.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/177.out -------------------------------------------------------------------------------- /UVaTestData/v1out/178.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/178.out -------------------------------------------------------------------------------- /UVaTestData/v1out/179.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/179.out -------------------------------------------------------------------------------- /UVaTestData/v1out/180.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/180.out -------------------------------------------------------------------------------- /UVaTestData/v1out/181.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/181.out -------------------------------------------------------------------------------- /UVaTestData/v1out/182.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/182.out -------------------------------------------------------------------------------- /UVaTestData/v1out/183.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/183.out -------------------------------------------------------------------------------- /UVaTestData/v1out/184.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/184.out -------------------------------------------------------------------------------- /UVaTestData/v1out/185.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/185.out -------------------------------------------------------------------------------- /UVaTestData/v1out/186.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/186.out -------------------------------------------------------------------------------- /UVaTestData/v1out/187.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/187.out -------------------------------------------------------------------------------- /UVaTestData/v1out/188.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/188.out -------------------------------------------------------------------------------- /UVaTestData/v1out/189.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/189.out -------------------------------------------------------------------------------- /UVaTestData/v1out/190.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/190.out -------------------------------------------------------------------------------- /UVaTestData/v1out/191.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/191.out -------------------------------------------------------------------------------- /UVaTestData/v1out/192.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/192.out -------------------------------------------------------------------------------- /UVaTestData/v1out/194.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/194.out -------------------------------------------------------------------------------- /UVaTestData/v1out/195.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/195.out -------------------------------------------------------------------------------- /UVaTestData/v1out/196.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/196.out -------------------------------------------------------------------------------- /UVaTestData/v1out/197.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/197.out -------------------------------------------------------------------------------- /UVaTestData/v1out/198.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/198.out -------------------------------------------------------------------------------- /UVaTestData/v1out/199.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v1out/199.out -------------------------------------------------------------------------------- /UVaTestData/v2in/270.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2in/270.in -------------------------------------------------------------------------------- /UVaTestData/v2in/271.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2in/271.in -------------------------------------------------------------------------------- /UVaTestData/v2in/272.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2in/272.in -------------------------------------------------------------------------------- /UVaTestData/v2in/273.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2in/273.in -------------------------------------------------------------------------------- /UVaTestData/v2in/274.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2in/274.in -------------------------------------------------------------------------------- /UVaTestData/v2in/275.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2in/275.in -------------------------------------------------------------------------------- /UVaTestData/v2in/276.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2in/276.in -------------------------------------------------------------------------------- /UVaTestData/v2in/277.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2in/277.in -------------------------------------------------------------------------------- /UVaTestData/v2out/270.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2out/270.out -------------------------------------------------------------------------------- /UVaTestData/v2out/271.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2out/271.out -------------------------------------------------------------------------------- /UVaTestData/v2out/272.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2out/272.out -------------------------------------------------------------------------------- /UVaTestData/v2out/273.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2out/273.out -------------------------------------------------------------------------------- /UVaTestData/v2out/274.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2out/274.out -------------------------------------------------------------------------------- /UVaTestData/v2out/275.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2out/275.out -------------------------------------------------------------------------------- /UVaTestData/v2out/276.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2out/276.out -------------------------------------------------------------------------------- /UVaTestData/v2out/277.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v2out/277.out -------------------------------------------------------------------------------- /UVaTestData/v3in/300.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/300.IN -------------------------------------------------------------------------------- /UVaTestData/v3in/301.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/301.IN -------------------------------------------------------------------------------- /UVaTestData/v3in/302.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/302.IN -------------------------------------------------------------------------------- /UVaTestData/v3in/303.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/303.IN -------------------------------------------------------------------------------- /UVaTestData/v3in/304.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/304.IN -------------------------------------------------------------------------------- /UVaTestData/v3in/305.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/305.IN -------------------------------------------------------------------------------- /UVaTestData/v3in/306.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/306.IN -------------------------------------------------------------------------------- /UVaTestData/v3in/307.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/307.IN -------------------------------------------------------------------------------- /UVaTestData/v3in/308.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/308.in -------------------------------------------------------------------------------- /UVaTestData/v3in/309.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/309.in -------------------------------------------------------------------------------- /UVaTestData/v3in/310.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/310.in -------------------------------------------------------------------------------- /UVaTestData/v3in/311.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/311.in -------------------------------------------------------------------------------- /UVaTestData/v3in/312.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/312.in -------------------------------------------------------------------------------- /UVaTestData/v3in/313.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/313.in -------------------------------------------------------------------------------- /UVaTestData/v3in/314.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/314.in -------------------------------------------------------------------------------- /UVaTestData/v3in/315.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/315.in -------------------------------------------------------------------------------- /UVaTestData/v3in/316.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/316.in -------------------------------------------------------------------------------- /UVaTestData/v3in/317.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/317.in -------------------------------------------------------------------------------- /UVaTestData/v3in/318.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/318.in -------------------------------------------------------------------------------- /UVaTestData/v3in/319.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/319.in -------------------------------------------------------------------------------- /UVaTestData/v3in/320.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/320.in -------------------------------------------------------------------------------- /UVaTestData/v3in/321.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/321.in -------------------------------------------------------------------------------- /UVaTestData/v3in/322.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/322.in -------------------------------------------------------------------------------- /UVaTestData/v3in/323.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/323.in -------------------------------------------------------------------------------- /UVaTestData/v3in/324.in: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 5 4 | 10 5 | 17 6 | 366 7 | 0 8 | -------------------------------------------------------------------------------- /UVaTestData/v3in/325.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/325.in -------------------------------------------------------------------------------- /UVaTestData/v3in/326.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/326.in -------------------------------------------------------------------------------- /UVaTestData/v3in/327.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/327.in -------------------------------------------------------------------------------- /UVaTestData/v3in/328.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/328.in -------------------------------------------------------------------------------- /UVaTestData/v3in/329.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/329.in -------------------------------------------------------------------------------- /UVaTestData/v3in/330.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/330.in -------------------------------------------------------------------------------- /UVaTestData/v3in/345.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/345.in -------------------------------------------------------------------------------- /UVaTestData/v3in/346.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/346.in -------------------------------------------------------------------------------- /UVaTestData/v3in/347.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/347.in -------------------------------------------------------------------------------- /UVaTestData/v3in/348.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/348.in -------------------------------------------------------------------------------- /UVaTestData/v3in/349.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/349.in -------------------------------------------------------------------------------- /UVaTestData/v3in/350.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/350.in -------------------------------------------------------------------------------- /UVaTestData/v3in/351.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/351.in -------------------------------------------------------------------------------- /UVaTestData/v3in/377.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/377.in -------------------------------------------------------------------------------- /UVaTestData/v3in/378.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/378.in -------------------------------------------------------------------------------- /UVaTestData/v3in/379.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/379.in -------------------------------------------------------------------------------- /UVaTestData/v3in/380.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/380.in -------------------------------------------------------------------------------- /UVaTestData/v3in/381.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/381.in -------------------------------------------------------------------------------- /UVaTestData/v3in/382.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/382.in -------------------------------------------------------------------------------- /UVaTestData/v3in/383.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/383.in -------------------------------------------------------------------------------- /UVaTestData/v3in/384.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/384.in -------------------------------------------------------------------------------- /UVaTestData/v3in/385.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/385.in -------------------------------------------------------------------------------- /UVaTestData/v3in/387.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/387.in -------------------------------------------------------------------------------- /UVaTestData/v3in/388.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/388.in -------------------------------------------------------------------------------- /UVaTestData/v3in/389.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/389.in -------------------------------------------------------------------------------- /UVaTestData/v3in/390.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/390.in -------------------------------------------------------------------------------- /UVaTestData/v3in/391.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/391.in -------------------------------------------------------------------------------- /UVaTestData/v3in/392.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/392.in -------------------------------------------------------------------------------- /UVaTestData/v3in/393.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/393.in -------------------------------------------------------------------------------- /UVaTestData/v3in/394.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/394.in -------------------------------------------------------------------------------- /UVaTestData/v3in/395.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/395.in -------------------------------------------------------------------------------- /UVaTestData/v3in/396.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/396.in -------------------------------------------------------------------------------- /UVaTestData/v3in/397.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/397.in -------------------------------------------------------------------------------- /UVaTestData/v3in/398.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/398.in -------------------------------------------------------------------------------- /UVaTestData/v3in/399.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3in/399.in -------------------------------------------------------------------------------- /UVaTestData/v3out/300.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/300.OUT -------------------------------------------------------------------------------- /UVaTestData/v3out/301.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/301.OUT -------------------------------------------------------------------------------- /UVaTestData/v3out/302.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/302.OUT -------------------------------------------------------------------------------- /UVaTestData/v3out/303.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/303.OUT -------------------------------------------------------------------------------- /UVaTestData/v3out/304.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/304.OUT -------------------------------------------------------------------------------- /UVaTestData/v3out/305.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/305.OUT -------------------------------------------------------------------------------- /UVaTestData/v3out/306.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/306.OUT -------------------------------------------------------------------------------- /UVaTestData/v3out/307.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/307.OUT -------------------------------------------------------------------------------- /UVaTestData/v3out/308.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/308.out -------------------------------------------------------------------------------- /UVaTestData/v3out/309.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/309.out -------------------------------------------------------------------------------- /UVaTestData/v3out/310.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/310.out -------------------------------------------------------------------------------- /UVaTestData/v3out/311.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/311.out -------------------------------------------------------------------------------- /UVaTestData/v3out/312.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/312.out -------------------------------------------------------------------------------- /UVaTestData/v3out/313.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/313.out -------------------------------------------------------------------------------- /UVaTestData/v3out/314.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/314.out -------------------------------------------------------------------------------- /UVaTestData/v3out/315.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/315.out -------------------------------------------------------------------------------- /UVaTestData/v3out/316.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/316.out -------------------------------------------------------------------------------- /UVaTestData/v3out/317.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/317.out -------------------------------------------------------------------------------- /UVaTestData/v3out/318.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/318.out -------------------------------------------------------------------------------- /UVaTestData/v3out/319.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/319.out -------------------------------------------------------------------------------- /UVaTestData/v3out/320.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/320.out -------------------------------------------------------------------------------- /UVaTestData/v3out/321.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/321.out -------------------------------------------------------------------------------- /UVaTestData/v3out/322.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/322.out -------------------------------------------------------------------------------- /UVaTestData/v3out/323.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/323.out -------------------------------------------------------------------------------- /UVaTestData/v3out/324.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/324.out -------------------------------------------------------------------------------- /UVaTestData/v3out/325.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/325.out -------------------------------------------------------------------------------- /UVaTestData/v3out/326.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/326.out -------------------------------------------------------------------------------- /UVaTestData/v3out/327.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/327.out -------------------------------------------------------------------------------- /UVaTestData/v3out/328.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/328.out -------------------------------------------------------------------------------- /UVaTestData/v3out/329.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/329.out -------------------------------------------------------------------------------- /UVaTestData/v3out/330.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/330.out -------------------------------------------------------------------------------- /UVaTestData/v3out/345.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/345.out -------------------------------------------------------------------------------- /UVaTestData/v3out/346.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/346.out -------------------------------------------------------------------------------- /UVaTestData/v3out/347.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/347.out -------------------------------------------------------------------------------- /UVaTestData/v3out/348.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/348.out -------------------------------------------------------------------------------- /UVaTestData/v3out/349.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/349.out -------------------------------------------------------------------------------- /UVaTestData/v3out/350.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/350.out -------------------------------------------------------------------------------- /UVaTestData/v3out/377.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/377.out -------------------------------------------------------------------------------- /UVaTestData/v3out/378.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/378.out -------------------------------------------------------------------------------- /UVaTestData/v3out/379.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/379.out -------------------------------------------------------------------------------- /UVaTestData/v3out/380.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/380.out -------------------------------------------------------------------------------- /UVaTestData/v3out/381.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/381.out -------------------------------------------------------------------------------- /UVaTestData/v3out/382.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/382.out -------------------------------------------------------------------------------- /UVaTestData/v3out/383.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/383.out -------------------------------------------------------------------------------- /UVaTestData/v3out/384.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/384.out -------------------------------------------------------------------------------- /UVaTestData/v3out/385.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/385.out -------------------------------------------------------------------------------- /UVaTestData/v3out/386.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/386.out -------------------------------------------------------------------------------- /UVaTestData/v3out/387.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/387.out -------------------------------------------------------------------------------- /UVaTestData/v3out/388.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/388.out -------------------------------------------------------------------------------- /UVaTestData/v3out/389.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/389.out -------------------------------------------------------------------------------- /UVaTestData/v3out/390.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/390.out -------------------------------------------------------------------------------- /UVaTestData/v3out/391.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/391.out -------------------------------------------------------------------------------- /UVaTestData/v3out/392.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/392.out -------------------------------------------------------------------------------- /UVaTestData/v3out/393.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/393.out -------------------------------------------------------------------------------- /UVaTestData/v3out/394.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/394.out -------------------------------------------------------------------------------- /UVaTestData/v3out/395.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/395.out -------------------------------------------------------------------------------- /UVaTestData/v3out/396.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/396.out -------------------------------------------------------------------------------- /UVaTestData/v3out/397.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/397.out -------------------------------------------------------------------------------- /UVaTestData/v3out/398.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/398.out -------------------------------------------------------------------------------- /UVaTestData/v3out/399.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v3out/399.out -------------------------------------------------------------------------------- /UVaTestData/v4in/400.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/400.in -------------------------------------------------------------------------------- /UVaTestData/v4in/401.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/401.in -------------------------------------------------------------------------------- /UVaTestData/v4in/402.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/402.in -------------------------------------------------------------------------------- /UVaTestData/v4in/403.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/403.in -------------------------------------------------------------------------------- /UVaTestData/v4in/404.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/404.in -------------------------------------------------------------------------------- /UVaTestData/v4in/405.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/405.in -------------------------------------------------------------------------------- /UVaTestData/v4in/406.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/406.in -------------------------------------------------------------------------------- /UVaTestData/v4in/407.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/407.in -------------------------------------------------------------------------------- /UVaTestData/v4in/408.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/408.in -------------------------------------------------------------------------------- /UVaTestData/v4in/409.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/409.in -------------------------------------------------------------------------------- /UVaTestData/v4in/410.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/410.in -------------------------------------------------------------------------------- /UVaTestData/v4in/411.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/411.in -------------------------------------------------------------------------------- /UVaTestData/v4in/412.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/412.in -------------------------------------------------------------------------------- /UVaTestData/v4in/413.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/413.in -------------------------------------------------------------------------------- /UVaTestData/v4in/414.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/414.in -------------------------------------------------------------------------------- /UVaTestData/v4in/415.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/415.in -------------------------------------------------------------------------------- /UVaTestData/v4in/416.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/416.in -------------------------------------------------------------------------------- /UVaTestData/v4in/417.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/417.in -------------------------------------------------------------------------------- /UVaTestData/v4in/418.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/418.in -------------------------------------------------------------------------------- /UVaTestData/v4in/419.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/419.in -------------------------------------------------------------------------------- /UVaTestData/v4in/420.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/420.in -------------------------------------------------------------------------------- /UVaTestData/v4in/421.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/421.in -------------------------------------------------------------------------------- /UVaTestData/v4in/422.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/422.in -------------------------------------------------------------------------------- /UVaTestData/v4in/423.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/423.in -------------------------------------------------------------------------------- /UVaTestData/v4in/424.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/424.in -------------------------------------------------------------------------------- /UVaTestData/v4in/425.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/425.in -------------------------------------------------------------------------------- /UVaTestData/v4in/425pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/425pc.c -------------------------------------------------------------------------------- /UVaTestData/v4in/436.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/436.in -------------------------------------------------------------------------------- /UVaTestData/v4in/437.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/437.in -------------------------------------------------------------------------------- /UVaTestData/v4in/438.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/438.in -------------------------------------------------------------------------------- /UVaTestData/v4in/439.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/439.in -------------------------------------------------------------------------------- /UVaTestData/v4in/440.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/440.in -------------------------------------------------------------------------------- /UVaTestData/v4in/441.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/441.in -------------------------------------------------------------------------------- /UVaTestData/v4in/442.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/442.in -------------------------------------------------------------------------------- /UVaTestData/v4in/443.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4in/443.in -------------------------------------------------------------------------------- /UVaTestData/v4out/400.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/400.out -------------------------------------------------------------------------------- /UVaTestData/v4out/401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/401.out -------------------------------------------------------------------------------- /UVaTestData/v4out/402.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/402.out -------------------------------------------------------------------------------- /UVaTestData/v4out/403.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/403.out -------------------------------------------------------------------------------- /UVaTestData/v4out/404.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/404.out -------------------------------------------------------------------------------- /UVaTestData/v4out/405.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/405.out -------------------------------------------------------------------------------- /UVaTestData/v4out/406.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/406.out -------------------------------------------------------------------------------- /UVaTestData/v4out/407.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/407.out -------------------------------------------------------------------------------- /UVaTestData/v4out/408.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/408.out -------------------------------------------------------------------------------- /UVaTestData/v4out/409.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/409.out -------------------------------------------------------------------------------- /UVaTestData/v4out/410.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/410.out -------------------------------------------------------------------------------- /UVaTestData/v4out/411.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/411.out -------------------------------------------------------------------------------- /UVaTestData/v4out/412.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/412.out -------------------------------------------------------------------------------- /UVaTestData/v4out/413.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/413.out -------------------------------------------------------------------------------- /UVaTestData/v4out/414.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/414.out -------------------------------------------------------------------------------- /UVaTestData/v4out/415.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/415.out -------------------------------------------------------------------------------- /UVaTestData/v4out/416.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/416.out -------------------------------------------------------------------------------- /UVaTestData/v4out/417.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/417.out -------------------------------------------------------------------------------- /UVaTestData/v4out/418.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/418.out -------------------------------------------------------------------------------- /UVaTestData/v4out/419.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/419.out -------------------------------------------------------------------------------- /UVaTestData/v4out/420.out: -------------------------------------------------------------------------------- 1 | 7 642.43 2 | -------------------------------------------------------------------------------- /UVaTestData/v4out/421.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/421.out -------------------------------------------------------------------------------- /UVaTestData/v4out/422.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/422.out -------------------------------------------------------------------------------- /UVaTestData/v4out/423.out: -------------------------------------------------------------------------------- 1 | 23 2 | -------------------------------------------------------------------------------- /UVaTestData/v4out/424.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/424.out -------------------------------------------------------------------------------- /UVaTestData/v4out/425.out: -------------------------------------------------------------------------------- 1 | more2ivp 2 | -------------------------------------------------------------------------------- /UVaTestData/v4out/436.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/436.out -------------------------------------------------------------------------------- /UVaTestData/v4out/437.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/437.out -------------------------------------------------------------------------------- /UVaTestData/v4out/438.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/438.out -------------------------------------------------------------------------------- /UVaTestData/v4out/439.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/439.out -------------------------------------------------------------------------------- /UVaTestData/v4out/440.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/440.out -------------------------------------------------------------------------------- /UVaTestData/v4out/441.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/441.out -------------------------------------------------------------------------------- /UVaTestData/v4out/442.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/442.out -------------------------------------------------------------------------------- /UVaTestData/v4out/443.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v4out/443.out -------------------------------------------------------------------------------- /UVaTestData/v5in/500.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/500.in -------------------------------------------------------------------------------- /UVaTestData/v5in/501.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/501.in -------------------------------------------------------------------------------- /UVaTestData/v5in/502.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/502.in -------------------------------------------------------------------------------- /UVaTestData/v5in/503.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/503.in -------------------------------------------------------------------------------- /UVaTestData/v5in/504.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/504.in -------------------------------------------------------------------------------- /UVaTestData/v5in/505.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/505.in -------------------------------------------------------------------------------- /UVaTestData/v5in/514.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/514.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/515.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/515.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/516.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/516.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/517.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/517.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/518.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/518.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/519.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/519.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/520.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/520.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/521.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/521.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/529.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/529.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/530.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/530.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/531.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/531.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/532.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/532.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/533.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/533.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/534.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/534.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/535.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/535.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/536.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/536.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/537.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/537.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/538.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/538.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/539.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/539.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/540.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/540.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/541.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/541.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/542.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/542.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/543.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/543.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/544.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/544.IN -------------------------------------------------------------------------------- /UVaTestData/v5in/565.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/565.in -------------------------------------------------------------------------------- /UVaTestData/v5in/566.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/566.in -------------------------------------------------------------------------------- /UVaTestData/v5in/567.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/567.in -------------------------------------------------------------------------------- /UVaTestData/v5in/568.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/568.in -------------------------------------------------------------------------------- /UVaTestData/v5in/569.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/569.in -------------------------------------------------------------------------------- /UVaTestData/v5in/570.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/570.in -------------------------------------------------------------------------------- /UVaTestData/v5in/571.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/571.in -------------------------------------------------------------------------------- /UVaTestData/v5in/572.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/572.in -------------------------------------------------------------------------------- /UVaTestData/v5in/573.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/573.in -------------------------------------------------------------------------------- /UVaTestData/v5in/574.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/574.in -------------------------------------------------------------------------------- /UVaTestData/v5in/575.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/575.in -------------------------------------------------------------------------------- /UVaTestData/v5in/576.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/576.in -------------------------------------------------------------------------------- /UVaTestData/v5in/577.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/577.in -------------------------------------------------------------------------------- /UVaTestData/v5in/585.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/585.in -------------------------------------------------------------------------------- /UVaTestData/v5in/586.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/586.in -------------------------------------------------------------------------------- /UVaTestData/v5in/587.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/587.in -------------------------------------------------------------------------------- /UVaTestData/v5in/588.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/588.in -------------------------------------------------------------------------------- /UVaTestData/v5in/589.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/589.in -------------------------------------------------------------------------------- /UVaTestData/v5in/590.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/590.in -------------------------------------------------------------------------------- /UVaTestData/v5in/591.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/591.in -------------------------------------------------------------------------------- /UVaTestData/v5in/592.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/592.in -------------------------------------------------------------------------------- /UVaTestData/v5in/593.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5in/593.in -------------------------------------------------------------------------------- /UVaTestData/v5out/500.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/500.out -------------------------------------------------------------------------------- /UVaTestData/v5out/501.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/501.out -------------------------------------------------------------------------------- /UVaTestData/v5out/502.out: -------------------------------------------------------------------------------- 1 | 3,5,8,11: IMPOSSIBLE 2 | -------------------------------------------------------------------------------- /UVaTestData/v5out/503.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/503.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/504.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/504.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/505.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/505.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/514.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/514.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/515.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/515.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/516.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/516.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/517.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/517.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/518.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/518.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/519.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/519.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/520.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/520.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/521.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/521.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/529.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/529.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/530.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/530.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/531.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/531.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/532.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/532.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/533.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/533.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/534.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/534.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/535.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/535.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/536.OUT: -------------------------------------------------------------------------------- 1 | ACBFGED 2 | CDAB 3 | KVWRXSLGDBMNHETUOIYPZQJFCA 4 | -------------------------------------------------------------------------------- /UVaTestData/v5out/537.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/537.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/538.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/538.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/539.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/539.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/540.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/540.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/541.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/541.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/542.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/542.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/543.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/543.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/544.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/544.OUT -------------------------------------------------------------------------------- /UVaTestData/v5out/565.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/565.out -------------------------------------------------------------------------------- /UVaTestData/v5out/566.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/566.out -------------------------------------------------------------------------------- /UVaTestData/v5out/567.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/567.out -------------------------------------------------------------------------------- /UVaTestData/v5out/568.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/568.out -------------------------------------------------------------------------------- /UVaTestData/v5out/569.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/569.out -------------------------------------------------------------------------------- /UVaTestData/v5out/570.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/570.out -------------------------------------------------------------------------------- /UVaTestData/v5out/571.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/571.out -------------------------------------------------------------------------------- /UVaTestData/v5out/572.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/572.out -------------------------------------------------------------------------------- /UVaTestData/v5out/573.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/573.out -------------------------------------------------------------------------------- /UVaTestData/v5out/574.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/574.out -------------------------------------------------------------------------------- /UVaTestData/v5out/575.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/575.out -------------------------------------------------------------------------------- /UVaTestData/v5out/576.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/576.out -------------------------------------------------------------------------------- /UVaTestData/v5out/577.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/577.out -------------------------------------------------------------------------------- /UVaTestData/v5out/585.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/585.out -------------------------------------------------------------------------------- /UVaTestData/v5out/586.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/586.out -------------------------------------------------------------------------------- /UVaTestData/v5out/587.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/587.out -------------------------------------------------------------------------------- /UVaTestData/v5out/588.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/588.out -------------------------------------------------------------------------------- /UVaTestData/v5out/589.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/589.out -------------------------------------------------------------------------------- /UVaTestData/v5out/590.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/590.out -------------------------------------------------------------------------------- /UVaTestData/v5out/591.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/591.out -------------------------------------------------------------------------------- /UVaTestData/v5out/592.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/592.out -------------------------------------------------------------------------------- /UVaTestData/v5out/593.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v5out/593.out -------------------------------------------------------------------------------- /UVaTestData/v6in/600.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/600.in -------------------------------------------------------------------------------- /UVaTestData/v6in/601.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/601.in -------------------------------------------------------------------------------- /UVaTestData/v6in/602.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/602.in -------------------------------------------------------------------------------- /UVaTestData/v6in/603.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/603.in -------------------------------------------------------------------------------- /UVaTestData/v6in/604.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/604.in -------------------------------------------------------------------------------- /UVaTestData/v6in/605.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/605.in -------------------------------------------------------------------------------- /UVaTestData/v6in/606.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/606.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/607.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/607.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/608.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/608.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/609.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/609.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/610.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/610.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/611.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/611.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/612.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/612.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/613.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/613.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/614.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/614.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/615.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/615.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/616.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/616.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/617.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/617.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/618.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/618.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/619.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/619.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/637.IN: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 9 6 | 100 7 | 99 8 | 24 9 | 14 10 | 19 11 | 0 12 | -------------------------------------------------------------------------------- /UVaTestData/v6in/638.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/638.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/639.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/639.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/641.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/641.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/642.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/642.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/649.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/649.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/650.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/650.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/651.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/651.in -------------------------------------------------------------------------------- /UVaTestData/v6in/652.in: -------------------------------------------------------------------------------- 1 | 6 4 7 8 5 x 3 2 1 -------------------------------------------------------------------------------- /UVaTestData/v6in/653.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/653.in -------------------------------------------------------------------------------- /UVaTestData/v6in/654.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/654.in -------------------------------------------------------------------------------- /UVaTestData/v6in/655.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/655.in -------------------------------------------------------------------------------- /UVaTestData/v6in/656.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/656.in -------------------------------------------------------------------------------- /UVaTestData/v6in/657.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/657.in -------------------------------------------------------------------------------- /UVaTestData/v6in/658.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/658.in -------------------------------------------------------------------------------- /UVaTestData/v6in/659.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/659.in -------------------------------------------------------------------------------- /UVaTestData/v6in/660.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/660.in -------------------------------------------------------------------------------- /UVaTestData/v6in/661.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/661.in -------------------------------------------------------------------------------- /UVaTestData/v6in/662.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/662.in -------------------------------------------------------------------------------- /UVaTestData/v6in/663.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/663.in -------------------------------------------------------------------------------- /UVaTestData/v6in/664.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/664.in -------------------------------------------------------------------------------- /UVaTestData/v6in/665.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/665.in -------------------------------------------------------------------------------- /UVaTestData/v6in/666.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/666.in -------------------------------------------------------------------------------- /UVaTestData/v6in/667.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/667.in -------------------------------------------------------------------------------- /UVaTestData/v6in/668.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/668.in -------------------------------------------------------------------------------- /UVaTestData/v6in/669.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/669.in -------------------------------------------------------------------------------- /UVaTestData/v6in/670.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/670.in -------------------------------------------------------------------------------- /UVaTestData/v6in/671.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/671.in -------------------------------------------------------------------------------- /UVaTestData/v6in/672.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/672.in -------------------------------------------------------------------------------- /UVaTestData/v6in/686.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/686.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/687.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/687.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/688.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/688.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/689.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/689.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/690.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/690.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/691.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/691.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/692.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/692.IN -------------------------------------------------------------------------------- /UVaTestData/v6in/693.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6in/693.IN -------------------------------------------------------------------------------- /UVaTestData/v6out/600.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/600.out -------------------------------------------------------------------------------- /UVaTestData/v6out/601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/601.out -------------------------------------------------------------------------------- /UVaTestData/v6out/602.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/602.out -------------------------------------------------------------------------------- /UVaTestData/v6out/603.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/603.out -------------------------------------------------------------------------------- /UVaTestData/v6out/604.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/604.out -------------------------------------------------------------------------------- /UVaTestData/v6out/605.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/605.out -------------------------------------------------------------------------------- /UVaTestData/v6out/606.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/606.out -------------------------------------------------------------------------------- /UVaTestData/v6out/607.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/607.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/608.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/608.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/609.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/609.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/611.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/611.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/612.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/612.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/613.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/613.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/614.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/614.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/615.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/615.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/616.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/616.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/617.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/617.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/618.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/618.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/619.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/619.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/637.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/637.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/638.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/638.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/639.OUT: -------------------------------------------------------------------------------- 1 | 1 2 | 0 3 | 1 4 | 3 5 | 6 6 | 4 7 | 4 8 | -------------------------------------------------------------------------------- /UVaTestData/v6out/640.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/640.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/641.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/641.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/642.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/642.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/649.OUT: -------------------------------------------------------------------------------- 1 | 2 2 | 2 1 2 3 | 3 3 4 5 -------------------------------------------------------------------------------- /UVaTestData/v6out/650.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/650.OUT -------------------------------------------------------------------------------- /UVaTestData/v6out/651.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/651.out -------------------------------------------------------------------------------- /UVaTestData/v6out/652.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/652.out -------------------------------------------------------------------------------- /UVaTestData/v6out/653.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/653.out -------------------------------------------------------------------------------- /UVaTestData/v6out/654.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/654.out -------------------------------------------------------------------------------- /UVaTestData/v6out/655.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/655.out -------------------------------------------------------------------------------- /UVaTestData/v6out/656.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/656.out -------------------------------------------------------------------------------- /UVaTestData/v6out/657.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/657.out -------------------------------------------------------------------------------- /UVaTestData/v6out/658.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/658.out -------------------------------------------------------------------------------- /UVaTestData/v6out/659.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/659.out -------------------------------------------------------------------------------- /UVaTestData/v6out/660.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/660.out -------------------------------------------------------------------------------- /UVaTestData/v6out/661.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/661.out -------------------------------------------------------------------------------- /UVaTestData/v6out/662.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/662.out -------------------------------------------------------------------------------- /UVaTestData/v6out/663.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/663.out -------------------------------------------------------------------------------- /UVaTestData/v6out/664.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/664.out -------------------------------------------------------------------------------- /UVaTestData/v6out/665.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/665.out -------------------------------------------------------------------------------- /UVaTestData/v6out/666.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/666.out -------------------------------------------------------------------------------- /UVaTestData/v6out/667.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/667.out -------------------------------------------------------------------------------- /UVaTestData/v6out/668.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/668.out -------------------------------------------------------------------------------- /UVaTestData/v6out/669.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/669.out -------------------------------------------------------------------------------- /UVaTestData/v6out/670.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/670.out -------------------------------------------------------------------------------- /UVaTestData/v6out/671.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/671.out -------------------------------------------------------------------------------- /UVaTestData/v6out/672.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v6out/672.out -------------------------------------------------------------------------------- /UVaTestData/v7in/700.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/700.in -------------------------------------------------------------------------------- /UVaTestData/v7in/705.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/705.in -------------------------------------------------------------------------------- /UVaTestData/v7in/706.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/706.in -------------------------------------------------------------------------------- /UVaTestData/v7in/707.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/707.in -------------------------------------------------------------------------------- /UVaTestData/v7in/708.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/708.in -------------------------------------------------------------------------------- /UVaTestData/v7in/709.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/709.in -------------------------------------------------------------------------------- /UVaTestData/v7in/710.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/710.in -------------------------------------------------------------------------------- /UVaTestData/v7in/711.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/711.in -------------------------------------------------------------------------------- /UVaTestData/v7in/712.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/712.in -------------------------------------------------------------------------------- /UVaTestData/v7in/728.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/728.IN -------------------------------------------------------------------------------- /UVaTestData/v7in/730.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/730.IN -------------------------------------------------------------------------------- /UVaTestData/v7in/733.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/733.in -------------------------------------------------------------------------------- /UVaTestData/v7in/734.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/734.IN -------------------------------------------------------------------------------- /UVaTestData/v7in/735.IN: -------------------------------------------------------------------------------- 1 | 181 2 | 163 3 | 1 4 | 180 5 | 72 6 | 2 7 | -1 8 | -------------------------------------------------------------------------------- /UVaTestData/v7in/736.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/736.IN -------------------------------------------------------------------------------- /UVaTestData/v7in/737.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/737.IN -------------------------------------------------------------------------------- /UVaTestData/v7in/738.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/738.IN -------------------------------------------------------------------------------- /UVaTestData/v7in/739.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/739.IN -------------------------------------------------------------------------------- /UVaTestData/v7in/751.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/751.IN -------------------------------------------------------------------------------- /UVaTestData/v7in/752.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/752.in -------------------------------------------------------------------------------- /UVaTestData/v7in/753.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/753.in -------------------------------------------------------------------------------- /UVaTestData/v7in/754.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/754.in -------------------------------------------------------------------------------- /UVaTestData/v7in/756.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/756.IN -------------------------------------------------------------------------------- /UVaTestData/v7in/757.IN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/757.IN -------------------------------------------------------------------------------- /UVaTestData/v7in/758.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7in/758.in -------------------------------------------------------------------------------- /UVaTestData/v7out/700.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/700.out -------------------------------------------------------------------------------- /UVaTestData/v7out/705.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/705.out -------------------------------------------------------------------------------- /UVaTestData/v7out/706.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/706.out -------------------------------------------------------------------------------- /UVaTestData/v7out/707.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/707.out -------------------------------------------------------------------------------- /UVaTestData/v7out/708.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/708.out -------------------------------------------------------------------------------- /UVaTestData/v7out/709.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/709.out -------------------------------------------------------------------------------- /UVaTestData/v7out/710.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/710.out -------------------------------------------------------------------------------- /UVaTestData/v7out/711.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/711.out -------------------------------------------------------------------------------- /UVaTestData/v7out/712.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/712.out -------------------------------------------------------------------------------- /UVaTestData/v7out/728.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/728.out -------------------------------------------------------------------------------- /UVaTestData/v7out/730.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/730.OUT -------------------------------------------------------------------------------- /UVaTestData/v7out/734.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/734.OUT -------------------------------------------------------------------------------- /UVaTestData/v7out/735.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/735.OUT -------------------------------------------------------------------------------- /UVaTestData/v7out/736.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/736.OUT -------------------------------------------------------------------------------- /UVaTestData/v7out/737.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/737.OUT -------------------------------------------------------------------------------- /UVaTestData/v7out/738.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/738.OUT -------------------------------------------------------------------------------- /UVaTestData/v7out/739.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/739.OUT -------------------------------------------------------------------------------- /UVaTestData/v7out/751.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/751.OUT -------------------------------------------------------------------------------- /UVaTestData/v7out/752.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/752.out -------------------------------------------------------------------------------- /UVaTestData/v7out/753.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/753.out -------------------------------------------------------------------------------- /UVaTestData/v7out/754.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/754.OUT -------------------------------------------------------------------------------- /UVaTestData/v7out/756.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/756.OUT -------------------------------------------------------------------------------- /UVaTestData/v7out/757.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/757.OUT -------------------------------------------------------------------------------- /UVaTestData/v7out/758.OUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/UVaTestData/v7out/758.OUT -------------------------------------------------------------------------------- /contest/ITSA/ITSA桂冠盃/p3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/ITSA/ITSA桂冠盃/p3.cpp -------------------------------------------------------------------------------- /contest/ITSA/ITSA桂冠盃/p33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/ITSA/ITSA桂冠盃/p33.cpp -------------------------------------------------------------------------------- /contest/ITSA/ITSA桂冠盃/p5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/ITSA/ITSA桂冠盃/p5.cpp -------------------------------------------------------------------------------- /contest/ITSA/ITSA桂冠盃/p5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/ITSA/ITSA桂冠盃/p5.exe -------------------------------------------------------------------------------- /contest/ITSA/ITSA桂冠盃/p5.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/ITSA/ITSA桂冠盃/p5.o -------------------------------------------------------------------------------- /contest/NCPC/NPSC2012/PI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/NCPC/NPSC2012/PI.jpg -------------------------------------------------------------------------------- /contest/NCPC/NPSC2012/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/NCPC/NPSC2012/in.txt -------------------------------------------------------------------------------- /contest/NCPC/NPSC2012/out.txt: -------------------------------------------------------------------------------- 1 | 28 2 | -------------------------------------------------------------------------------- /contest/NCPC/NPSC2012/out2.txt.txt: -------------------------------------------------------------------------------- 1 | 28 -------------------------------------------------------------------------------- /contest/NCPC/NPSC2012/pa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/NCPC/NPSC2012/pa.cpp -------------------------------------------------------------------------------- /contest/NCPC/NPSC2012/pb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/NCPC/NPSC2012/pb.cpp -------------------------------------------------------------------------------- /contest/NCPC/NPSC2012/pc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/NCPC/NPSC2012/pc.cpp -------------------------------------------------------------------------------- /contest/NCPC/NPSC2012/pd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/NCPC/NPSC2012/pd.cpp -------------------------------------------------------------------------------- /contest/NCPC/NPSC2012/pf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/NCPC/NPSC2012/pf.cpp -------------------------------------------------------------------------------- /contest/NCPC/NPSC2012/pg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/NCPC/NPSC2012/pg.cpp -------------------------------------------------------------------------------- /contest/NCPC/NPSC2012/pi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/NCPC/NPSC2012/pi.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201111/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201111/C.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201111/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201111/D.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201111/E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201111/E.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201112/PA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201112/PA.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201112/PA.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201112/PA.exe -------------------------------------------------------------------------------- /contest/PTC/PTC201112/PB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201112/PB.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201112/PB.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201112/PB.exe -------------------------------------------------------------------------------- /contest/PTC/PTC201112/PC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201112/PC.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201112/PC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201112/PC.exe -------------------------------------------------------------------------------- /contest/PTC/PTC201112/PE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201112/PE.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201112/PE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201112/PE.exe -------------------------------------------------------------------------------- /contest/PTC/PTC201202/PA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201202/PA.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201202/PB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201202/PB.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201202/PC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201202/PC.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201202/PD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201202/PD.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201202/PE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201202/PE.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201203/PB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201203/PB.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201203/PC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201203/PC.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201205/pa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201205/pa.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201205/pb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201205/pb.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201205/pc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201205/pc.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201205/pd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201205/pd.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201205/pe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201205/pe.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201206/pB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201206/pB.cpp -------------------------------------------------------------------------------- /contest/PTC/PTC201206/pC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/contest/PTC/PTC201206/pC.cpp -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/equal/equal0.ans: -------------------------------------------------------------------------------- 1 | ABDEF 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/equal/equal1.ans: -------------------------------------------------------------------------------- 1 | CEG 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/equal/equal2.ans: -------------------------------------------------------------------------------- 1 | IJ 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/equal/equal3.ans: -------------------------------------------------------------------------------- 1 | DMZ 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/equal/equal4.ans: -------------------------------------------------------------------------------- 1 | AMNO 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/equal/equal5.ans: -------------------------------------------------------------------------------- 1 | HIS 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/equal/equal6.ans: -------------------------------------------------------------------------------- 1 | BIR 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/equal/equal7.ans: -------------------------------------------------------------------------------- 1 | PQ 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/equal/equal8.ans: -------------------------------------------------------------------------------- 1 | GM 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/equal/equal9.ans: -------------------------------------------------------------------------------- 1 | VXY 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/fire/fire0.ans: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/fire/fire1.ans: -------------------------------------------------------------------------------- 1 | -1 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/fire/fire2.ans: -------------------------------------------------------------------------------- 1 | 995 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/fire/fire3.ans: -------------------------------------------------------------------------------- 1 | 49992 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/fire/fire4.ans: -------------------------------------------------------------------------------- 1 | 49991 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/fire/fire5.ans: -------------------------------------------------------------------------------- 1 | 49993 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/fire/fire6.ans: -------------------------------------------------------------------------------- 1 | 49992 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/fire/fire7.ans: -------------------------------------------------------------------------------- 1 | 49992 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/fire/fire8.ans: -------------------------------------------------------------------------------- 1 | 49993 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/fire/fire9.ans: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/river/river0.ans: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/river/river1.ans: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/river/river2.ans: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/river/river3.ans: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/river/river4.ans: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/river/river5.ans: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/river/river6.ans: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/river/river7.ans: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/river/river8.ans: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/river/river9.ans: -------------------------------------------------------------------------------- 1 | 25 2 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/scholar/scholar0.ans: -------------------------------------------------------------------------------- 1 | YDCmkIYBPOy 2 | 15000 3 | 332750 4 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/scholar/scholar1.ans: -------------------------------------------------------------------------------- 1 | IXrLPdJhEekBRgsbkqI 2 | 15850 3 | 315050 4 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/scholar/scholar2.ans: -------------------------------------------------------------------------------- 1 | LyFr 2 | 15850 3 | 376500 4 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/scholar/scholar3.ans: -------------------------------------------------------------------------------- 1 | HHeXOMfgB 2 | 15000 3 | 311200 4 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/scholar/scholar4.ans: -------------------------------------------------------------------------------- 1 | IlB 2 | 14000 3 | 320050 4 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/scholar/scholar5.ans: -------------------------------------------------------------------------------- 1 | DGMqW 2 | 15000 3 | 350700 4 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/scholar/scholar6.ans: -------------------------------------------------------------------------------- 1 | F 2 | 15000 3 | 324650 4 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/scholar/scholar7.ans: -------------------------------------------------------------------------------- 1 | YBqilxkGZJx 2 | 15000 3 | 366150 4 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/scholar/scholar8.ans: -------------------------------------------------------------------------------- 1 | RaC 2 | 12000 3 | 249600 4 | -------------------------------------------------------------------------------- /contest/noip2005复赛/测试数据/scholar/scholar9.ans: -------------------------------------------------------------------------------- 1 | WtEEnIDxjkneYioJpF 2 | 15850 3 | 351900 4 | -------------------------------------------------------------------------------- /my-problem/中國餘數/b431.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/中國餘數/b431.cpp -------------------------------------------------------------------------------- /my-problem/中國餘數/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/中國餘數/pin.cpp -------------------------------------------------------------------------------- /my-problem/中間相遇法/b433.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/中間相遇法/b433.cpp -------------------------------------------------------------------------------- /my-problem/中間相遇法/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/中間相遇法/pin.cpp -------------------------------------------------------------------------------- /my-problem/人格分裂/brute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/人格分裂/brute.cpp -------------------------------------------------------------------------------- /my-problem/優勢產品/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/優勢產品/pin.cpp -------------------------------------------------------------------------------- /my-problem/八成真物/b418.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/八成真物/b418.cpp -------------------------------------------------------------------------------- /my-problem/八成真物/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/八成真物/pin.cpp -------------------------------------------------------------------------------- /my-problem/凱薩加密/b428.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/凱薩加密/b428.cpp -------------------------------------------------------------------------------- /my-problem/凱薩加密/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/凱薩加密/pin.cpp -------------------------------------------------------------------------------- /my-problem/動態前綴/brute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/動態前綴/brute.cpp -------------------------------------------------------------------------------- /my-problem/動態前綴/lcp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/動態前綴/lcp.cpp -------------------------------------------------------------------------------- /my-problem/動態前綴/lcp2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/動態前綴/lcp2.cpp -------------------------------------------------------------------------------- /my-problem/區間眾數/b417.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/區間眾數/b417.cpp -------------------------------------------------------------------------------- /my-problem/圖片匹配/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/圖片匹配/pin.cpp -------------------------------------------------------------------------------- /my-problem/妮可密碼/brute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/妮可密碼/brute.cpp -------------------------------------------------------------------------------- /my-problem/妮可密碼/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/妮可密碼/in.txt -------------------------------------------------------------------------------- /my-problem/妮可密碼/inker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/妮可密碼/inker.cpp -------------------------------------------------------------------------------- /my-problem/妮可密碼/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/妮可密碼/out.txt -------------------------------------------------------------------------------- /my-problem/妮可密碼/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/妮可密碼/sol.cpp -------------------------------------------------------------------------------- /my-problem/妮可工作/nick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/妮可工作/nick.cpp -------------------------------------------------------------------------------- /my-problem/妮可工作/nick2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/妮可工作/nick2.cpp -------------------------------------------------------------------------------- /my-problem/妮可工作/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/妮可工作/pin.cpp -------------------------------------------------------------------------------- /my-problem/子字串集合/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/子字串集合/pin.cpp -------------------------------------------------------------------------------- /my-problem/學姊日談/brute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/學姊日談/brute.cpp -------------------------------------------------------------------------------- /my-problem/學姊日談/flere2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/學姊日談/flere2.md -------------------------------------------------------------------------------- /my-problem/學姊日談/problem.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | -------------------------------------------------------------------------------- /my-problem/少女與戰車/tank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/少女與戰車/tank.cpp -------------------------------------------------------------------------------- /my-problem/快取置換機制/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/快取置換機制/pin.cpp -------------------------------------------------------------------------------- /my-problem/攻城掠地/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/攻城掠地/pin.cpp -------------------------------------------------------------------------------- /my-problem/最近餐館/brute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/最近餐館/brute.cpp -------------------------------------------------------------------------------- /my-problem/最近餐館/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/最近餐館/sol.cpp -------------------------------------------------------------------------------- /my-problem/樹形鎖頭/brute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/樹形鎖頭/brute.cpp -------------------------------------------------------------------------------- /my-problem/樹形鎖頭/tree.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/樹形鎖頭/tree.pptx -------------------------------------------------------------------------------- /my-problem/河道分界/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/河道分界/in.txt -------------------------------------------------------------------------------- /my-problem/河道分界/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/河道分界/out.txt -------------------------------------------------------------------------------- /my-problem/河道分界/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/河道分界/pin.cpp -------------------------------------------------------------------------------- /my-problem/河道分界/river.ggb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/河道分界/river.ggb -------------------------------------------------------------------------------- /my-problem/河道分界/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/河道分界/test.cpp -------------------------------------------------------------------------------- /my-problem/災難再臨/brute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/災難再臨/brute.cpp -------------------------------------------------------------------------------- /my-problem/災難再臨/image.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/災難再臨/image.PNG -------------------------------------------------------------------------------- /my-problem/災難再臨/投影片1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/災難再臨/投影片1.JPG -------------------------------------------------------------------------------- /my-problem/災難再臨/投影片10.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/災難再臨/投影片10.JPG -------------------------------------------------------------------------------- /my-problem/災難再臨/投影片11.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/災難再臨/投影片11.JPG -------------------------------------------------------------------------------- /my-problem/災難再臨/投影片12.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/災難再臨/投影片12.JPG -------------------------------------------------------------------------------- /my-problem/災難再臨/投影片13.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/災難再臨/投影片13.JPG -------------------------------------------------------------------------------- /my-problem/災難再臨/投影片2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/災難再臨/投影片2.JPG -------------------------------------------------------------------------------- /my-problem/災難再臨/投影片3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/災難再臨/投影片3.JPG -------------------------------------------------------------------------------- /my-problem/災難再臨/投影片4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/災難再臨/投影片4.JPG -------------------------------------------------------------------------------- /my-problem/災難再臨/投影片5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/災難再臨/投影片5.JPG -------------------------------------------------------------------------------- /my-problem/災難再臨/投影片6.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/災難再臨/投影片6.JPG -------------------------------------------------------------------------------- /my-problem/災難再臨/投影片7.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/災難再臨/投影片7.JPG -------------------------------------------------------------------------------- /my-problem/災難再臨/投影片8.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/災難再臨/投影片8.JPG -------------------------------------------------------------------------------- /my-problem/災難再臨/投影片9.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/災難再臨/投影片9.JPG -------------------------------------------------------------------------------- /my-problem/神魔之塔/inker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/神魔之塔/inker.md -------------------------------------------------------------------------------- /my-problem/等高線/brute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/等高線/brute.cpp -------------------------------------------------------------------------------- /my-problem/等高線/rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/等高線/rect.cpp -------------------------------------------------------------------------------- /my-problem/簡單乘法/b430.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/簡單乘法/b430.cpp -------------------------------------------------------------------------------- /my-problem/簡單乘法/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/簡單乘法/pin.cpp -------------------------------------------------------------------------------- /my-problem/虛擬女友/b413.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/虛擬女友/b413.cpp -------------------------------------------------------------------------------- /my-problem/虛擬女友/brute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/虛擬女友/brute.cpp -------------------------------------------------------------------------------- /my-problem/虛擬女友/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/虛擬女友/pin.cpp -------------------------------------------------------------------------------- /my-problem/虛擬女友/虛擬女友.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/虛擬女友/虛擬女友.html -------------------------------------------------------------------------------- /my-problem/虛擬女友/虛擬女友.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/虛擬女友/虛擬女友.md -------------------------------------------------------------------------------- /my-problem/計畫巧遇/brute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/計畫巧遇/brute.cpp -------------------------------------------------------------------------------- /my-problem/計畫巧遇/flere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/計畫巧遇/flere.md -------------------------------------------------------------------------------- /my-problem/計畫巧遇/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/計畫巧遇/in.txt -------------------------------------------------------------------------------- /my-problem/計畫巧遇/out1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/計畫巧遇/out1.txt -------------------------------------------------------------------------------- /my-problem/計畫巧遇/problem.aux: -------------------------------------------------------------------------------- 1 | \relax 2 | -------------------------------------------------------------------------------- /my-problem/變態史考古/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/變態史考古/pin.cpp -------------------------------------------------------------------------------- /my-problem/趣味加分/b432.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/趣味加分/b432.cpp -------------------------------------------------------------------------------- /my-problem/趣味加分/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/趣味加分/pin.cpp -------------------------------------------------------------------------------- /my-problem/輸出優化練習/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/輸出優化練習/pin.cpp -------------------------------------------------------------------------------- /my-problem/障礙物轉換/demo.ggb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/障礙物轉換/demo.ggb -------------------------------------------------------------------------------- /my-problem/障礙物轉換/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/障礙物轉換/demo.png -------------------------------------------------------------------------------- /my-problem/障礙物轉換/pin2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/障礙物轉換/pin2.cpp -------------------------------------------------------------------------------- /my-problem/離散對數/b429.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/離散對數/b429.cpp -------------------------------------------------------------------------------- /my-problem/離散對數/pin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/離散對數/pin.cpp -------------------------------------------------------------------------------- /my-problem/順來逆受/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/my-problem/順來逆受/sol.cpp -------------------------------------------------------------------------------- /practice/python/Median.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/python/Median.py -------------------------------------------------------------------------------- /practice/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/python/README.md -------------------------------------------------------------------------------- /practice/unknown/18豆.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/18豆.cpp -------------------------------------------------------------------------------- /practice/unknown/2013.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/2013.cpp -------------------------------------------------------------------------------- /practice/unknown/DDD2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/DDD2.cpp -------------------------------------------------------------------------------- /practice/unknown/DLS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/DLS.cpp -------------------------------------------------------------------------------- /practice/unknown/DP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/DP.txt -------------------------------------------------------------------------------- /practice/unknown/DS-6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/DS-6.cpp -------------------------------------------------------------------------------- /practice/unknown/DSE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/DSE.cpp -------------------------------------------------------------------------------- /practice/unknown/E7.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/E7.java -------------------------------------------------------------------------------- /practice/unknown/Exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/Exp.cpp -------------------------------------------------------------------------------- /practice/unknown/Gray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/Gray.cpp -------------------------------------------------------------------------------- /practice/unknown/ICOCCC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/ICOCCC.c -------------------------------------------------------------------------------- /practice/unknown/LCA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/LCA.cpp -------------------------------------------------------------------------------- /practice/unknown/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/Math.cpp -------------------------------------------------------------------------------- /practice/unknown/SA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/SA.c -------------------------------------------------------------------------------- /practice/unknown/TC模版.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/TC模版.c -------------------------------------------------------------------------------- /practice/unknown/Trie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/Trie.cpp -------------------------------------------------------------------------------- /practice/unknown/bee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/bee.cpp -------------------------------------------------------------------------------- /practice/unknown/cmdUse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/cmdUse.c -------------------------------------------------------------------------------- /practice/unknown/det.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/det.cpp -------------------------------------------------------------------------------- /practice/unknown/hw1p2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/hw1p2.c -------------------------------------------------------------------------------- /practice/unknown/pout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/pout.cpp -------------------------------------------------------------------------------- /practice/unknown/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/test.cpp -------------------------------------------------------------------------------- /practice/unknown/傳統排列.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/傳統排列.cpp -------------------------------------------------------------------------------- /practice/unknown/內件排序.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/內件排序.cpp -------------------------------------------------------------------------------- /practice/unknown/反矩陣.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/反矩陣.cpp -------------------------------------------------------------------------------- /practice/unknown/圓交.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/圓交.cpp -------------------------------------------------------------------------------- /practice/unknown/基數排序.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/基數排序.cpp -------------------------------------------------------------------------------- /practice/unknown/好多因子.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/好多因子.cpp -------------------------------------------------------------------------------- /practice/unknown/快速排列.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/快速排列.cpp -------------------------------------------------------------------------------- /practice/unknown/接線.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/接線.png -------------------------------------------------------------------------------- /practice/unknown/數獨求姊.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/數獨求姊.cpp -------------------------------------------------------------------------------- /practice/unknown/正式模仿.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/正式模仿.cpp -------------------------------------------------------------------------------- /practice/unknown/正式模仿.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/正式模仿.exe -------------------------------------------------------------------------------- /practice/unknown/跑關.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/practice/unknown/跑關.cpp -------------------------------------------------------------------------------- /temp/1120 - No Change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1120 - No Change.cpp -------------------------------------------------------------------------------- /temp/12130 - Summits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/12130 - Summits.cpp -------------------------------------------------------------------------------- /temp/12369 - Cards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/12369 - Cards.cpp -------------------------------------------------------------------------------- /temp/1303 - Wall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1303 - Wall.cpp -------------------------------------------------------------------------------- /temp/1393 - Highways.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1393 - Highways.cpp -------------------------------------------------------------------------------- /temp/1398 - Meteor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1398 - Meteor.cpp -------------------------------------------------------------------------------- /temp/1407 - Caves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1407 - Caves.cpp -------------------------------------------------------------------------------- /temp/1424 - Salesmen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1424 - Salesmen.cpp -------------------------------------------------------------------------------- /temp/1434 - YAPTCHA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1434 - YAPTCHA.cpp -------------------------------------------------------------------------------- /temp/1442 - Cav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1442 - Cav.cpp -------------------------------------------------------------------------------- /temp/1443 - Garlands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1443 - Garlands.cpp -------------------------------------------------------------------------------- /temp/1455 - Kingdom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1455 - Kingdom.cpp -------------------------------------------------------------------------------- /temp/1543 - Telescope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1543 - Telescope.cpp -------------------------------------------------------------------------------- /temp/1589 - Xiangqi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1589 - Xiangqi.cpp -------------------------------------------------------------------------------- /temp/1596 - Bug Hunt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1596 - Bug Hunt.cpp -------------------------------------------------------------------------------- /temp/1598 - Exchange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1598 - Exchange.cpp -------------------------------------------------------------------------------- /temp/1607 - Gates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1607 - Gates.cpp -------------------------------------------------------------------------------- /temp/1609 - Foul Play.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1609 - Foul Play.cpp -------------------------------------------------------------------------------- /temp/1611 - Crane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1611 - Crane.cpp -------------------------------------------------------------------------------- /temp/1612 - Guess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1612 - Guess.cpp -------------------------------------------------------------------------------- /temp/1615 - Highway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1615 - Highway.cpp -------------------------------------------------------------------------------- /temp/1617 - Laptop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1617 - Laptop.cpp -------------------------------------------------------------------------------- /temp/1618 - Weak Key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1618 - Weak Key.cpp -------------------------------------------------------------------------------- /temp/1619 - Feel Good.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1619 - Feel Good.cpp -------------------------------------------------------------------------------- /temp/1624 - Knots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1624 - Knots.cpp -------------------------------------------------------------------------------- /temp/1630 - Folding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1630 - Folding.cpp -------------------------------------------------------------------------------- /temp/1631 - Locker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1631 - Locker.cpp -------------------------------------------------------------------------------- /temp/1639 - Candy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1639 - Candy.cpp -------------------------------------------------------------------------------- /temp/1658 - Admiral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1658 - Admiral.cpp -------------------------------------------------------------------------------- /temp/1661 - Equation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1661 - Equation.cpp -------------------------------------------------------------------------------- /temp/1666 - Walk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/1666 - Walk.cpp -------------------------------------------------------------------------------- /temp/303 - Pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/303 - Pipe.cpp -------------------------------------------------------------------------------- /temp/UVaDate/ACM12647.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/UVaDate/ACM12647.cpp -------------------------------------------------------------------------------- /temp/UVaDate/DMST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/UVaDate/DMST.cpp -------------------------------------------------------------------------------- /temp/UVaDate/Problem9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/UVaDate/Problem9.cpp -------------------------------------------------------------------------------- /temp/UVaDate/gmon.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/UVaDate/gmon.out -------------------------------------------------------------------------------- /temp/b256. E. 大風吹.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/b256. E. 大風吹.cpp -------------------------------------------------------------------------------- /temp/b298[ANSI C].c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/b298[ANSI C].c -------------------------------------------------------------------------------- /temp/b327.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/b327.cpp -------------------------------------------------------------------------------- /temp/b348. 最近餐館.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/b348. 最近餐館.cpp -------------------------------------------------------------------------------- /temp/d739.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/d739.cpp -------------------------------------------------------------------------------- /temp/d739[maxflow].cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/d739[maxflow].cpp -------------------------------------------------------------------------------- /temp/prob_solve1298.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/prob_solve1298.cpp -------------------------------------------------------------------------------- /temp/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/temp/test.cpp -------------------------------------------------------------------------------- /volume003/347 - Run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume003/347 - Run.cpp -------------------------------------------------------------------------------- /volume004/402 - MASH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume004/402 - MASH.cpp -------------------------------------------------------------------------------- /volume004/412 - Pi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume004/412 - Pi.cpp -------------------------------------------------------------------------------- /volume004/433 - Bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume004/433 - Bank.cpp -------------------------------------------------------------------------------- /volume004/441 - Lotto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume004/441 - Lotto.c -------------------------------------------------------------------------------- /volume004/448 - OOPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume004/448 - OOPS.cpp -------------------------------------------------------------------------------- /volume005/509 - RAID!.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume005/509 - RAID!.cpp -------------------------------------------------------------------------------- /volume005/515 - King.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume005/515 - King.cpp -------------------------------------------------------------------------------- /volume005/545 - Heads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume005/545 - Heads.cpp -------------------------------------------------------------------------------- /volume005/547 - DDF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume005/547 - DDF.cpp -------------------------------------------------------------------------------- /volume005/548 - Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume005/548 - Tree.cpp -------------------------------------------------------------------------------- /volume005/560 - Magic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume005/560 - Magic.cpp -------------------------------------------------------------------------------- /volume005/567 - Risk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume005/567 - Risk.cpp -------------------------------------------------------------------------------- /volume005/571 - Jugs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume005/571 - Jugs.cpp -------------------------------------------------------------------------------- /volume006/623 - 500!.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume006/623 - 500!.cpp -------------------------------------------------------------------------------- /volume006/624 - CD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume006/624 - CD.cpp -------------------------------------------------------------------------------- /volume006/652 - Eight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume006/652 - Eight.cpp -------------------------------------------------------------------------------- /volume006/698 - Index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume006/698 - Index.cpp -------------------------------------------------------------------------------- /volume007/722 - Lakes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume007/722 - Lakes.cpp -------------------------------------------------------------------------------- /volume008/830 - Shark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume008/830 - Shark.cpp -------------------------------------------------------------------------------- /volume008/846 - Steps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume008/846 - Steps.cpp -------------------------------------------------------------------------------- /volume009/938 - Gilix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume009/938 - Gilix.cpp -------------------------------------------------------------------------------- /volume009/982 - Cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume009/982 - Cube.cpp -------------------------------------------------------------------------------- /volume009/989 - Su Doku.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume009/989 - Su Doku.c -------------------------------------------------------------------------------- /volume010/1027 - Toll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume010/1027 - Toll.cpp -------------------------------------------------------------------------------- /volume012/1207 - AGTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume012/1207 - AGTC.cpp -------------------------------------------------------------------------------- /volume015/1559 - Nim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume015/1559 - Nim.cpp -------------------------------------------------------------------------------- /volume015/1566 - John.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume015/1566 - John.cpp -------------------------------------------------------------------------------- /volume015/1587 - Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume015/1587 - Box.cpp -------------------------------------------------------------------------------- /volume017/1742 - Oil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume017/1742 - Oil.cpp -------------------------------------------------------------------------------- /volume047/4727 - Jump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume047/4727 - Jump.cpp -------------------------------------------------------------------------------- /volume101/10158 - War.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume101/10158 - War.cpp -------------------------------------------------------------------------------- /volume105/10539 - Almost Prime Numbers.cpp: -------------------------------------------------------------------------------- 1 | 123 2 | -------------------------------------------------------------------------------- /volume106/10680 - LCM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume106/10680 - LCM.cpp -------------------------------------------------------------------------------- /volume106/10696 - f91.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume106/10696 - f91.cpp -------------------------------------------------------------------------------- /volume107/10713 - Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume107/10713 - Map.cpp -------------------------------------------------------------------------------- /volume107/10715 - Cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume107/10715 - Cat.cpp -------------------------------------------------------------------------------- /volume112/11203.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume112/11203.c -------------------------------------------------------------------------------- /volume112/11218 - KTV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume112/11218 - KTV.cpp -------------------------------------------------------------------------------- /volume114/11417 - GCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume114/11417 - GCD.c -------------------------------------------------------------------------------- /volume115/11526 - H(n).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume115/11526 - H(n).c -------------------------------------------------------------------------------- /volume117/11715 - Car.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume117/11715 - Car.cpp -------------------------------------------------------------------------------- /volume118/11849 - CD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume118/11849 - CD.c -------------------------------------------------------------------------------- /volume119/11961 - DNA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume119/11961 - DNA.cpp -------------------------------------------------------------------------------- /volume120/12024 - Hats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume120/12024 - Hats.c -------------------------------------------------------------------------------- /volume124/12473.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume124/12473.docx -------------------------------------------------------------------------------- /volume127/12791 - Lap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume127/12791 - Lap.cpp -------------------------------------------------------------------------------- /volume127/12799 - RSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume127/12799 - RSA.cpp -------------------------------------------------------------------------------- /volume128/12800 - Cut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morris821028/UVa/HEAD/volume128/12800 - Cut.cpp --------------------------------------------------------------------------------