├── Material ├── DP_consider_one_element.cpp ├── DP_state_graphs.cpp ├── DP_subarrys.cpp ├── LCA.cpp └── Sieve.cpp ├── README.md └── Solutions ├── Codeforces ├── 101840D - Dream Team.cpp ├── 1143D.cpp ├── 236B-Easy-Number-Challenge.cpp ├── 385C.cpp ├── 558C.cpp ├── 767C.cpp ├── 776B.cpp └── 884C.cpp ├── Codility ├── MaxDoubleSliceSum.cpp ├── MaxSliceSum_1.cpp ├── MaxSliceSum_2.cpp ├── NumberSolitaire.cpp ├── SemiPrimes.cpp └── countNonDivisible.cpp ├── SPOJ ├── BUGLIFE.cpp └── MST.cpp └── UVA ├── 10090 - Marbles.cpp ├── 10104 - Euclid Problem.cpp ├── 10147 - Highways.cpp ├── 10369 - Arctic Network.cpp ├── 10673 - Play with Floor and Ceil.cpp └── 852 - Deciding victory in Go.cpp /Material/DP_consider_one_element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Material/DP_consider_one_element.cpp -------------------------------------------------------------------------------- /Material/DP_state_graphs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Material/DP_state_graphs.cpp -------------------------------------------------------------------------------- /Material/DP_subarrys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Material/DP_subarrys.cpp -------------------------------------------------------------------------------- /Material/LCA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Material/LCA.cpp -------------------------------------------------------------------------------- /Material/Sieve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Material/Sieve.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/README.md -------------------------------------------------------------------------------- /Solutions/Codeforces/101840D - Dream Team.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/Codeforces/101840D - Dream Team.cpp -------------------------------------------------------------------------------- /Solutions/Codeforces/1143D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/Codeforces/1143D.cpp -------------------------------------------------------------------------------- /Solutions/Codeforces/236B-Easy-Number-Challenge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/Codeforces/236B-Easy-Number-Challenge.cpp -------------------------------------------------------------------------------- /Solutions/Codeforces/385C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/Codeforces/385C.cpp -------------------------------------------------------------------------------- /Solutions/Codeforces/558C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/Codeforces/558C.cpp -------------------------------------------------------------------------------- /Solutions/Codeforces/767C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/Codeforces/767C.cpp -------------------------------------------------------------------------------- /Solutions/Codeforces/776B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/Codeforces/776B.cpp -------------------------------------------------------------------------------- /Solutions/Codeforces/884C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/Codeforces/884C.cpp -------------------------------------------------------------------------------- /Solutions/Codility/MaxDoubleSliceSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/Codility/MaxDoubleSliceSum.cpp -------------------------------------------------------------------------------- /Solutions/Codility/MaxSliceSum_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/Codility/MaxSliceSum_1.cpp -------------------------------------------------------------------------------- /Solutions/Codility/MaxSliceSum_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/Codility/MaxSliceSum_2.cpp -------------------------------------------------------------------------------- /Solutions/Codility/NumberSolitaire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/Codility/NumberSolitaire.cpp -------------------------------------------------------------------------------- /Solutions/Codility/SemiPrimes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/Codility/SemiPrimes.cpp -------------------------------------------------------------------------------- /Solutions/Codility/countNonDivisible.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/Codility/countNonDivisible.cpp -------------------------------------------------------------------------------- /Solutions/SPOJ/BUGLIFE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/SPOJ/BUGLIFE.cpp -------------------------------------------------------------------------------- /Solutions/SPOJ/MST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/SPOJ/MST.cpp -------------------------------------------------------------------------------- /Solutions/UVA/10090 - Marbles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/UVA/10090 - Marbles.cpp -------------------------------------------------------------------------------- /Solutions/UVA/10104 - Euclid Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/UVA/10104 - Euclid Problem.cpp -------------------------------------------------------------------------------- /Solutions/UVA/10147 - Highways.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/UVA/10147 - Highways.cpp -------------------------------------------------------------------------------- /Solutions/UVA/10369 - Arctic Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/UVA/10369 - Arctic Network.cpp -------------------------------------------------------------------------------- /Solutions/UVA/10673 - Play with Floor and Ceil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/UVA/10673 - Play with Floor and Ceil.cpp -------------------------------------------------------------------------------- /Solutions/UVA/852 - Deciding victory in Go.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohamedAfifii/ProblemSolving--Arabic-II/HEAD/Solutions/UVA/852 - Deciding victory in Go.cpp --------------------------------------------------------------------------------