├── .gitignore ├── DPproblems ├── 1-TextJustification.cpp ├── 10-EditDistance.cpp ├── 11-EggDropping.cpp ├── 12-Knapsack01.cpp ├── 13-LongestCommonSubsequence.cpp ├── 14-LongestIncreasingSubsequence.cpp ├── 15-LongestPalindromicSubsequence.cpp ├── 16-MatrixMultiplicationCost.cpp ├── 17-MaxSumForNonAdjacentElements.cpp ├── 18-WeightedJobSchedulingMaximumProfit.cpp ├── 19-MaximumLengthChainPair.cpp ├── 2-BitonicSequence.cpp ├── 20-MaximumProductCutting.cpp ├── 21-MaximumSizeSubMatrix.cpp ├── 22-MaximumSumSubsequence.cpp ├── 23-MinCostPath.cpp ├── 24-MinJumpToReachEnd.cpp ├── 25-NPotGold.cpp ├── 26-NumberOfPathsInMxNMatrix.cpp ├── 27-NumberOfWaysToScorePoints.cpp ├── 28-OptimalTreeSearch.cpp ├── 29-PalindromePartition.cpp ├── 3-BreakMultipleWordsWithNoSpaceIntoSpace.cpp ├── 30-RemoveFromEndToMake2IntoMinGreaterThanMax.cpp ├── 31-SubRectangularMatrixWithMaximumSum.cpp ├── 32-SubsetSum.cpp ├── 33-SubsquareSurrounedByXs.cpp ├── 34-TwoStringInterleavingToFormThird.cpp ├── 35-UglyNumbers.cpp ├── 36-PhoneDialNumberOfCombinationOfSizeK.cpp ├── 37-CountAs.cpp ├── 38-LongestEvenLengthSubstringOffEqualHalf.cpp ├── 39-LongestCommonSubstring.cpp ├── 4-CoinChanging.cpp ├── 40-MinimumCostTrainTicket.cpp ├── 41-FibonacciSeries.cpp ├── 42-MaximumRectangularSubmatrixOf1s.cpp ├── 43-BoxStacking.cpp ├── 44-CutRodToMinimizeCost.cpp ├── 45-ScrambledString.cpp ├── 46-MaximizeSkiGates.cpp ├── 48-SymbolExpressionEvaluation.cpp ├── 49-ExpressionEvaluation.cpp ├── 5-CountNumberOfBinaryWithoutConsecutive1s.cpp ├── 6-CountNumberOfTreePreorder.cpp ├── 7-CountNumberOfTreesInBST.cpp ├── 8-CuttingRod.cpp └── 9-DiceThrowWays.cpp ├── LiveArchive ├── 2191.cpp ├── 3113.cpp ├── 3634.cpp ├── 4872.cpp └── 8078.cpp ├── README.md ├── TIMUS ├── 1017.cpp ├── 1018.cpp ├── 1263.cpp ├── 1350.cpp ├── 1525.cpp ├── 1553.cpp ├── 1638.cpp └── 1658.cpp ├── TopCoder ├── BestView.cpp ├── BouncingBalls.cpp ├── DiceGames.cpp ├── DivisiblePermutations.cpp ├── DyckwordUniformer.cpp ├── ElectronicScarecrows.cpp ├── GoblinRabblemaster.cpp ├── Manhattan.cpp ├── MarriageProblemRevised.cpp ├── MegaFactorialDiv2.cpp ├── MergersDivTwo.cpp ├── MessageMess.cpp ├── SortEstimate.cpp ├── TRY │ ├── EmptyTheBox.cpp │ └── TrivialWordSearch.cpp ├── TheNumbersLord.cpp ├── UnsealTheSafe.cpp └── WeirdSort.cpp ├── UVa ├── 100 │ ├── 10003.cpp │ ├── 10004.cpp │ ├── 10015.cpp │ ├── 10036.cpp │ ├── 10051.cpp │ ├── 10056.cpp │ ├── 10066.cpp │ └── 10099.cpp ├── 101 │ ├── 10100.cpp │ ├── 10113.cpp │ ├── 10115.cpp │ ├── 10130.cpp │ ├── 10139.cpp │ ├── 10150.cpp │ ├── 10154.cpp │ ├── 10168.cpp │ ├── 10178.cpp │ ├── 10192.cpp │ └── 10198.cpp ├── 102 │ ├── 10242.cpp │ ├── 10263.cpp │ └── 10264.cpp ├── 103 │ ├── 10301.cpp │ ├── 10302.cpp │ ├── 10304.cpp │ ├── 10305.cpp │ ├── 10308.cpp │ ├── 10325.cpp │ ├── 10330.cpp │ ├── 10340.cpp │ ├── 10342.cpp │ ├── 10344.cpp │ ├── 10368.cpp │ └── 10394.cpp ├── 104 │ ├── 10405.cpp │ ├── 10452.cpp │ ├── 10453.cpp │ ├── 10462.cpp │ ├── 10469.cpp │ ├── 10474.cpp │ ├── 10484.cpp │ ├── 10490.cpp │ ├── 10491.cpp │ ├── 10496.cpp │ └── 10534.cpp ├── 105 │ ├── 10503.cpp │ ├── 10509.cpp │ ├── 10525.cpp │ └── 10557.cpp ├── 106 │ ├── 10611.cpp │ ├── 10617.cpp │ ├── 10622.cpp │ ├── 10626.cpp │ ├── 10635.cpp │ ├── 10651.cpp │ ├── 10653.cpp │ ├── 10667.cpp │ ├── 10684.cpp │ ├── 10686.cpp │ └── 10699.cpp ├── 107 │ ├── 10703.cpp │ ├── 10706.cpp │ ├── 10717.cpp │ ├── 10723.cpp │ ├── 10739.cpp │ └── 10790.cpp ├── 108 │ ├── 10801.cpp │ ├── 10812.cpp │ ├── 10815.cpp │ ├── 10816.cpp │ ├── 10827.cpp │ ├── 10843.cpp │ ├── 10865.cpp │ ├── 10891.cpp │ └── 10892.cpp ├── 109 │ ├── 10911.cpp │ ├── 10920.cpp │ ├── 10928.cpp │ ├── 10930.cpp │ ├── 10935.cpp │ ├── 10945.cpp │ ├── 10954.cpp │ ├── 10976.cpp │ └── 10986.cpp ├── 110 │ ├── 11003.cpp │ ├── 11026.cpp │ ├── 11053.cpp │ ├── 11059.cpp │ ├── 11062.cpp │ └── 11094.cpp ├── 111 │ └── 11151.cpp ├── 112 │ ├── 11207.cpp │ ├── 11283.cpp │ ├── 11284.cpp │ └── 11286.cpp ├── 113 │ ├── 11341.cpp │ ├── 11343.cpp │ ├── 11345.cpp │ ├── 11368.cpp │ ├── 11374.cpp │ ├── 11375.cpp │ └── 11388.cpp ├── 114 │ ├── 11402.cpp │ ├── 11404.cpp │ ├── 11413.cpp │ ├── 11417.cpp │ ├── 11420.cpp │ ├── 11462.cpp │ ├── 11473.cpp │ └── 11495.cpp ├── 115 │ ├── 11518.cpp │ ├── 11520.cpp │ ├── 11536.cpp │ ├── 11550.cpp │ ├── 11561.cpp │ ├── 11565.cpp │ └── 11573.cpp ├── 116 │ ├── 11628.cpp │ ├── 11658.cpp │ ├── 11661.cpp │ └── 11679.cpp ├── 117 │ ├── 11703.cpp │ ├── 11709.cpp │ ├── 11730.cpp │ ├── 11733.cpp │ └── 11753.cpp ├── 118 │ ├── 11838.cpp │ └── 11849.cpp ├── 119 │ ├── 11900.cpp │ ├── 11933.cpp │ ├── 11953.cpp │ ├── 11988.cpp │ ├── 11991.cpp │ └── 11995.cpp ├── 120 │ ├── 12032.cpp │ ├── 12034.cpp │ └── 12095.cpp ├── 121 │ ├── 12124.cpp │ └── 12147.cpp ├── 122 │ ├── 12263.cpp │ ├── 12289.cpp │ └── 12299.cpp ├── 123 │ ├── 12318.cpp │ ├── 12321.cpp │ ├── 12346.cpp │ └── 12379.cpp ├── 124 │ ├── 12405.cpp │ ├── 12442.cpp │ ├── 12461.cpp │ └── 12484.cpp ├── 125 │ ├── 12504.cpp │ ├── 12526.cpp │ └── 12532.cpp ├── 126 │ └── 12626.cpp ├── 127 │ └── 12748.cpp ├── 128 │ └── 12869.cpp ├── 129 │ └── 12952.cpp ├── 001 │ ├── 101.cpp │ ├── 113.cpp │ ├── 116.cpp │ ├── 122.cpp │ ├── 125.cpp │ ├── 127.cpp │ ├── 128.cpp │ ├── 153.cpp │ ├── 167.cpp │ ├── 191.cpp │ ├── 193.cpp │ └── 196.cpp ├── 002 │ ├── 229.cpp │ ├── 264.cpp │ ├── 270.cpp │ ├── 273.cpp │ ├── 280.cpp │ └── 294.cpp ├── 003 │ ├── 315.cpp │ ├── 334.cpp │ ├── 348.cpp │ ├── 352.cpp │ ├── 356.cpp │ ├── 369.cpp │ ├── 374.cpp │ ├── 378.cpp │ ├── 382.cpp │ └── 389.cpp ├── 004 │ ├── 408.cpp │ ├── 414.cpp │ ├── 417.cpp │ ├── 438.cpp │ ├── 453.cpp │ ├── 460.cpp │ ├── 466.cpp │ ├── 473.cpp │ ├── 476.cpp │ ├── 477.cpp │ ├── 481.cpp │ ├── 483.cpp │ ├── 494.cpp │ └── 498.cpp ├── 005 │ ├── 507.cpp │ ├── 514.cpp │ ├── 516.cpp │ ├── 524.cpp │ ├── 534.cpp │ ├── 541.cpp │ ├── 558.cpp │ ├── 562.cpp │ ├── 571.cpp │ ├── 574.cpp │ ├── 583.cpp │ └── 599.cpp ├── 006 │ ├── 610.cpp │ ├── 615.cpp │ ├── 616.cpp │ ├── 624.cpp │ ├── 657.cpp │ ├── 662.cpp │ ├── 668.cpp │ └── 697.cpp ├── 007 │ ├── 737.cpp │ ├── 750.cpp │ ├── 757.cpp │ ├── 784.cpp │ └── 796.cpp ├── 008 │ ├── 825.cpp │ ├── 836.cpp │ ├── 852.cpp │ ├── 866.cpp │ ├── 872.cpp │ └── 884.cpp ├── 009 │ ├── 907.cpp │ ├── 929.cpp │ ├── 986.cpp │ └── 990.cpp ├── 010 │ ├── 1096.cpp │ └── 1099.cpp ├── 011 │ ├── 1112.cpp │ ├── 1121.cpp │ └── 1158.cpp ├── 012 │ ├── 1203.cpp │ ├── 1207.cpp │ ├── 1209.cpp │ ├── 1213.cpp │ ├── 1216.cpp │ ├── 1223.cpp │ ├── 1229.cpp │ ├── 1230.cpp │ ├── 1231.cpp │ ├── 1234.cpp │ ├── 1235.cpp │ ├── 1238.cpp │ ├── 1239.cpp │ └── 1260.cpp ├── 013 │ ├── 1346.cpp │ ├── 1362.cpp │ └── 1395.cpp └── 015 │ ├── 1555.cpp │ └── 1556.cpp ├── leetCode ├── burst-balloons.cpp ├── decode-ways.cpp ├── distinct-subsequences.cpp ├── dungeon-game.cpp ├── house-robber-ii.cpp ├── house-robber.cpp ├── longest-increasing-path-in-a-matrix.cpp ├── max-value-of-equation.cpp ├── number-of-subsequences-that-satisfy-the-given-sum-condition.cpp ├── palindrome-partitioning-ii.cpp ├── palindrome-partitioning.cpp ├── range-sum-query-2d-immutable.cpp ├── regular-expression-matching.cpp ├── scramble-string.cpp ├── super-ugly-number.cpp ├── ugly-number-ii.cpp ├── word-break-ii.cpp └── word-break.cpp ├── newcomers ├── basics math algorithms.cpp └── difference between subarray and subsequence.md └── spoj ├── ABA12E.cpp ├── AGGRCOW.cpp ├── ALIENS.cpp ├── ANARC08A.cpp ├── ASSIGN.cpp ├── BENEFACT.cpp ├── BIA.cpp ├── BITMAP.cpp ├── BLOPER.cpp ├── BRCKTS.cpp ├── BYTESM2.cpp ├── CAPCITY.cpp ├── CDC12_H.cpp ├── CHOCOLA.cpp ├── CNTPRIME.cpp ├── COURIER.cpp ├── DICT.cpp ├── ELIS.cpp ├── FACENEMY.cpp ├── FREQUENT.cpp ├── FUNPROB.cpp ├── GRASSPL.cpp ├── GSS1.cpp ├── GSS3.cpp ├── HORRIBLE.cpp ├── INVCNT.cpp ├── KATHTHI.cpp ├── KGSS.cpp ├── KOMPICI.cpp ├── LITE.cpp ├── LUCKYNUM.cpp ├── MAKETREE.cpp ├── MULTQ3.cpp ├── ONP.cpp ├── PERMUT1.cpp ├── PHONELST.cpp ├── PIR.cpp ├── POTHOLE.cpp ├── POUR1.cpp ├── PPATH.cpp ├── PT07Y.cpp ├── PT07Z.cpp ├── QTREE.cpp ├── QUEEN.cpp ├── RMQSQ.cpp ├── SHOP.cpp ├── SHPATH.cpp ├── STSTRING.cpp ├── SUBMERGE.cpp ├── SUB_PROB.cpp ├── TFRIENDS.cpp ├── TOE1.cpp ├── TORNJEVI.cpp ├── TRT.cpp ├── TWINSNOW.cpp ├── WEIRDFN.cpp └── XOINC.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/.gitignore -------------------------------------------------------------------------------- /DPproblems/1-TextJustification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/1-TextJustification.cpp -------------------------------------------------------------------------------- /DPproblems/10-EditDistance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/10-EditDistance.cpp -------------------------------------------------------------------------------- /DPproblems/11-EggDropping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/11-EggDropping.cpp -------------------------------------------------------------------------------- /DPproblems/12-Knapsack01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/12-Knapsack01.cpp -------------------------------------------------------------------------------- /DPproblems/13-LongestCommonSubsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/13-LongestCommonSubsequence.cpp -------------------------------------------------------------------------------- /DPproblems/14-LongestIncreasingSubsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/14-LongestIncreasingSubsequence.cpp -------------------------------------------------------------------------------- /DPproblems/15-LongestPalindromicSubsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/15-LongestPalindromicSubsequence.cpp -------------------------------------------------------------------------------- /DPproblems/16-MatrixMultiplicationCost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/16-MatrixMultiplicationCost.cpp -------------------------------------------------------------------------------- /DPproblems/17-MaxSumForNonAdjacentElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/17-MaxSumForNonAdjacentElements.cpp -------------------------------------------------------------------------------- /DPproblems/18-WeightedJobSchedulingMaximumProfit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/18-WeightedJobSchedulingMaximumProfit.cpp -------------------------------------------------------------------------------- /DPproblems/19-MaximumLengthChainPair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/19-MaximumLengthChainPair.cpp -------------------------------------------------------------------------------- /DPproblems/2-BitonicSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/2-BitonicSequence.cpp -------------------------------------------------------------------------------- /DPproblems/20-MaximumProductCutting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/20-MaximumProductCutting.cpp -------------------------------------------------------------------------------- /DPproblems/21-MaximumSizeSubMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/21-MaximumSizeSubMatrix.cpp -------------------------------------------------------------------------------- /DPproblems/22-MaximumSumSubsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/22-MaximumSumSubsequence.cpp -------------------------------------------------------------------------------- /DPproblems/23-MinCostPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/23-MinCostPath.cpp -------------------------------------------------------------------------------- /DPproblems/24-MinJumpToReachEnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/24-MinJumpToReachEnd.cpp -------------------------------------------------------------------------------- /DPproblems/25-NPotGold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/25-NPotGold.cpp -------------------------------------------------------------------------------- /DPproblems/26-NumberOfPathsInMxNMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/26-NumberOfPathsInMxNMatrix.cpp -------------------------------------------------------------------------------- /DPproblems/27-NumberOfWaysToScorePoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/27-NumberOfWaysToScorePoints.cpp -------------------------------------------------------------------------------- /DPproblems/28-OptimalTreeSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/28-OptimalTreeSearch.cpp -------------------------------------------------------------------------------- /DPproblems/29-PalindromePartition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/29-PalindromePartition.cpp -------------------------------------------------------------------------------- /DPproblems/3-BreakMultipleWordsWithNoSpaceIntoSpace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/3-BreakMultipleWordsWithNoSpaceIntoSpace.cpp -------------------------------------------------------------------------------- /DPproblems/30-RemoveFromEndToMake2IntoMinGreaterThanMax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/30-RemoveFromEndToMake2IntoMinGreaterThanMax.cpp -------------------------------------------------------------------------------- /DPproblems/31-SubRectangularMatrixWithMaximumSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/31-SubRectangularMatrixWithMaximumSum.cpp -------------------------------------------------------------------------------- /DPproblems/32-SubsetSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/32-SubsetSum.cpp -------------------------------------------------------------------------------- /DPproblems/33-SubsquareSurrounedByXs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/33-SubsquareSurrounedByXs.cpp -------------------------------------------------------------------------------- /DPproblems/34-TwoStringInterleavingToFormThird.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/34-TwoStringInterleavingToFormThird.cpp -------------------------------------------------------------------------------- /DPproblems/35-UglyNumbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/35-UglyNumbers.cpp -------------------------------------------------------------------------------- /DPproblems/36-PhoneDialNumberOfCombinationOfSizeK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/36-PhoneDialNumberOfCombinationOfSizeK.cpp -------------------------------------------------------------------------------- /DPproblems/37-CountAs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/37-CountAs.cpp -------------------------------------------------------------------------------- /DPproblems/38-LongestEvenLengthSubstringOffEqualHalf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/38-LongestEvenLengthSubstringOffEqualHalf.cpp -------------------------------------------------------------------------------- /DPproblems/39-LongestCommonSubstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/39-LongestCommonSubstring.cpp -------------------------------------------------------------------------------- /DPproblems/4-CoinChanging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/4-CoinChanging.cpp -------------------------------------------------------------------------------- /DPproblems/40-MinimumCostTrainTicket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/40-MinimumCostTrainTicket.cpp -------------------------------------------------------------------------------- /DPproblems/41-FibonacciSeries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/41-FibonacciSeries.cpp -------------------------------------------------------------------------------- /DPproblems/42-MaximumRectangularSubmatrixOf1s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/42-MaximumRectangularSubmatrixOf1s.cpp -------------------------------------------------------------------------------- /DPproblems/43-BoxStacking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/43-BoxStacking.cpp -------------------------------------------------------------------------------- /DPproblems/44-CutRodToMinimizeCost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/44-CutRodToMinimizeCost.cpp -------------------------------------------------------------------------------- /DPproblems/45-ScrambledString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/45-ScrambledString.cpp -------------------------------------------------------------------------------- /DPproblems/46-MaximizeSkiGates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/46-MaximizeSkiGates.cpp -------------------------------------------------------------------------------- /DPproblems/48-SymbolExpressionEvaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/48-SymbolExpressionEvaluation.cpp -------------------------------------------------------------------------------- /DPproblems/49-ExpressionEvaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/49-ExpressionEvaluation.cpp -------------------------------------------------------------------------------- /DPproblems/5-CountNumberOfBinaryWithoutConsecutive1s.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/5-CountNumberOfBinaryWithoutConsecutive1s.cpp -------------------------------------------------------------------------------- /DPproblems/6-CountNumberOfTreePreorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/6-CountNumberOfTreePreorder.cpp -------------------------------------------------------------------------------- /DPproblems/7-CountNumberOfTreesInBST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/7-CountNumberOfTreesInBST.cpp -------------------------------------------------------------------------------- /DPproblems/8-CuttingRod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/8-CuttingRod.cpp -------------------------------------------------------------------------------- /DPproblems/9-DiceThrowWays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/DPproblems/9-DiceThrowWays.cpp -------------------------------------------------------------------------------- /LiveArchive/2191.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/LiveArchive/2191.cpp -------------------------------------------------------------------------------- /LiveArchive/3113.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/LiveArchive/3113.cpp -------------------------------------------------------------------------------- /LiveArchive/3634.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/LiveArchive/3634.cpp -------------------------------------------------------------------------------- /LiveArchive/4872.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/LiveArchive/4872.cpp -------------------------------------------------------------------------------- /LiveArchive/8078.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/LiveArchive/8078.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # competitiveProgramming 2 | -------------------------------------------------------------------------------- /TIMUS/1017.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TIMUS/1017.cpp -------------------------------------------------------------------------------- /TIMUS/1018.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TIMUS/1018.cpp -------------------------------------------------------------------------------- /TIMUS/1263.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TIMUS/1263.cpp -------------------------------------------------------------------------------- /TIMUS/1350.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TIMUS/1350.cpp -------------------------------------------------------------------------------- /TIMUS/1525.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TIMUS/1525.cpp -------------------------------------------------------------------------------- /TIMUS/1553.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TIMUS/1553.cpp -------------------------------------------------------------------------------- /TIMUS/1638.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TIMUS/1638.cpp -------------------------------------------------------------------------------- /TIMUS/1658.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TIMUS/1658.cpp -------------------------------------------------------------------------------- /TopCoder/BestView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/BestView.cpp -------------------------------------------------------------------------------- /TopCoder/BouncingBalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/BouncingBalls.cpp -------------------------------------------------------------------------------- /TopCoder/DiceGames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/DiceGames.cpp -------------------------------------------------------------------------------- /TopCoder/DivisiblePermutations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/DivisiblePermutations.cpp -------------------------------------------------------------------------------- /TopCoder/DyckwordUniformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/DyckwordUniformer.cpp -------------------------------------------------------------------------------- /TopCoder/ElectronicScarecrows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/ElectronicScarecrows.cpp -------------------------------------------------------------------------------- /TopCoder/GoblinRabblemaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/GoblinRabblemaster.cpp -------------------------------------------------------------------------------- /TopCoder/Manhattan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/Manhattan.cpp -------------------------------------------------------------------------------- /TopCoder/MarriageProblemRevised.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/MarriageProblemRevised.cpp -------------------------------------------------------------------------------- /TopCoder/MegaFactorialDiv2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/MegaFactorialDiv2.cpp -------------------------------------------------------------------------------- /TopCoder/MergersDivTwo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/MergersDivTwo.cpp -------------------------------------------------------------------------------- /TopCoder/MessageMess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/MessageMess.cpp -------------------------------------------------------------------------------- /TopCoder/SortEstimate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/SortEstimate.cpp -------------------------------------------------------------------------------- /TopCoder/TRY/EmptyTheBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/TRY/EmptyTheBox.cpp -------------------------------------------------------------------------------- /TopCoder/TRY/TrivialWordSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/TRY/TrivialWordSearch.cpp -------------------------------------------------------------------------------- /TopCoder/TheNumbersLord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/TheNumbersLord.cpp -------------------------------------------------------------------------------- /TopCoder/UnsealTheSafe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/UnsealTheSafe.cpp -------------------------------------------------------------------------------- /TopCoder/WeirdSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/TopCoder/WeirdSort.cpp -------------------------------------------------------------------------------- /UVa/001/101.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/001/101.cpp -------------------------------------------------------------------------------- /UVa/001/113.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/001/113.cpp -------------------------------------------------------------------------------- /UVa/001/116.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/001/116.cpp -------------------------------------------------------------------------------- /UVa/001/122.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/001/122.cpp -------------------------------------------------------------------------------- /UVa/001/125.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/001/125.cpp -------------------------------------------------------------------------------- /UVa/001/127.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/001/127.cpp -------------------------------------------------------------------------------- /UVa/001/128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/001/128.cpp -------------------------------------------------------------------------------- /UVa/001/153.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/001/153.cpp -------------------------------------------------------------------------------- /UVa/001/167.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/001/167.cpp -------------------------------------------------------------------------------- /UVa/001/191.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/001/191.cpp -------------------------------------------------------------------------------- /UVa/001/193.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/001/193.cpp -------------------------------------------------------------------------------- /UVa/001/196.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/001/196.cpp -------------------------------------------------------------------------------- /UVa/002/229.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/002/229.cpp -------------------------------------------------------------------------------- /UVa/002/264.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/002/264.cpp -------------------------------------------------------------------------------- /UVa/002/270.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/002/270.cpp -------------------------------------------------------------------------------- /UVa/002/273.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/002/273.cpp -------------------------------------------------------------------------------- /UVa/002/280.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/002/280.cpp -------------------------------------------------------------------------------- /UVa/002/294.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/002/294.cpp -------------------------------------------------------------------------------- /UVa/003/315.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/003/315.cpp -------------------------------------------------------------------------------- /UVa/003/334.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/003/334.cpp -------------------------------------------------------------------------------- /UVa/003/348.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/003/348.cpp -------------------------------------------------------------------------------- /UVa/003/352.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/003/352.cpp -------------------------------------------------------------------------------- /UVa/003/356.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/003/356.cpp -------------------------------------------------------------------------------- /UVa/003/369.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/003/369.cpp -------------------------------------------------------------------------------- /UVa/003/374.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/003/374.cpp -------------------------------------------------------------------------------- /UVa/003/378.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/003/378.cpp -------------------------------------------------------------------------------- /UVa/003/382.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/003/382.cpp -------------------------------------------------------------------------------- /UVa/003/389.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/003/389.cpp -------------------------------------------------------------------------------- /UVa/004/408.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/004/408.cpp -------------------------------------------------------------------------------- /UVa/004/414.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/004/414.cpp -------------------------------------------------------------------------------- /UVa/004/417.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/004/417.cpp -------------------------------------------------------------------------------- /UVa/004/438.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/004/438.cpp -------------------------------------------------------------------------------- /UVa/004/453.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/004/453.cpp -------------------------------------------------------------------------------- /UVa/004/460.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/004/460.cpp -------------------------------------------------------------------------------- /UVa/004/466.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/004/466.cpp -------------------------------------------------------------------------------- /UVa/004/473.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/004/473.cpp -------------------------------------------------------------------------------- /UVa/004/476.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/004/476.cpp -------------------------------------------------------------------------------- /UVa/004/477.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/004/477.cpp -------------------------------------------------------------------------------- /UVa/004/481.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/004/481.cpp -------------------------------------------------------------------------------- /UVa/004/483.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/004/483.cpp -------------------------------------------------------------------------------- /UVa/004/494.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/004/494.cpp -------------------------------------------------------------------------------- /UVa/004/498.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/004/498.cpp -------------------------------------------------------------------------------- /UVa/005/507.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/005/507.cpp -------------------------------------------------------------------------------- /UVa/005/514.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/005/514.cpp -------------------------------------------------------------------------------- /UVa/005/516.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/005/516.cpp -------------------------------------------------------------------------------- /UVa/005/524.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/005/524.cpp -------------------------------------------------------------------------------- /UVa/005/534.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/005/534.cpp -------------------------------------------------------------------------------- /UVa/005/541.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/005/541.cpp -------------------------------------------------------------------------------- /UVa/005/558.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/005/558.cpp -------------------------------------------------------------------------------- /UVa/005/562.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/005/562.cpp -------------------------------------------------------------------------------- /UVa/005/571.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/005/571.cpp -------------------------------------------------------------------------------- /UVa/005/574.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/005/574.cpp -------------------------------------------------------------------------------- /UVa/005/583.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/005/583.cpp -------------------------------------------------------------------------------- /UVa/005/599.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/005/599.cpp -------------------------------------------------------------------------------- /UVa/006/610.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/006/610.cpp -------------------------------------------------------------------------------- /UVa/006/615.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/006/615.cpp -------------------------------------------------------------------------------- /UVa/006/616.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/006/616.cpp -------------------------------------------------------------------------------- /UVa/006/624.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/006/624.cpp -------------------------------------------------------------------------------- /UVa/006/657.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/006/657.cpp -------------------------------------------------------------------------------- /UVa/006/662.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/006/662.cpp -------------------------------------------------------------------------------- /UVa/006/668.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/006/668.cpp -------------------------------------------------------------------------------- /UVa/006/697.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/006/697.cpp -------------------------------------------------------------------------------- /UVa/007/737.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/007/737.cpp -------------------------------------------------------------------------------- /UVa/007/750.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/007/750.cpp -------------------------------------------------------------------------------- /UVa/007/757.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/007/757.cpp -------------------------------------------------------------------------------- /UVa/007/784.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/007/784.cpp -------------------------------------------------------------------------------- /UVa/007/796.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/007/796.cpp -------------------------------------------------------------------------------- /UVa/008/825.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/008/825.cpp -------------------------------------------------------------------------------- /UVa/008/836.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/008/836.cpp -------------------------------------------------------------------------------- /UVa/008/852.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/008/852.cpp -------------------------------------------------------------------------------- /UVa/008/866.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/008/866.cpp -------------------------------------------------------------------------------- /UVa/008/872.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/008/872.cpp -------------------------------------------------------------------------------- /UVa/008/884.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/008/884.cpp -------------------------------------------------------------------------------- /UVa/009/907.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/009/907.cpp -------------------------------------------------------------------------------- /UVa/009/929.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/009/929.cpp -------------------------------------------------------------------------------- /UVa/009/986.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/009/986.cpp -------------------------------------------------------------------------------- /UVa/009/990.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/009/990.cpp -------------------------------------------------------------------------------- /UVa/010/1096.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/010/1096.cpp -------------------------------------------------------------------------------- /UVa/010/1099.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/010/1099.cpp -------------------------------------------------------------------------------- /UVa/011/1112.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/011/1112.cpp -------------------------------------------------------------------------------- /UVa/011/1121.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/011/1121.cpp -------------------------------------------------------------------------------- /UVa/011/1158.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/011/1158.cpp -------------------------------------------------------------------------------- /UVa/012/1203.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/012/1203.cpp -------------------------------------------------------------------------------- /UVa/012/1207.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/012/1207.cpp -------------------------------------------------------------------------------- /UVa/012/1209.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/012/1209.cpp -------------------------------------------------------------------------------- /UVa/012/1213.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/012/1213.cpp -------------------------------------------------------------------------------- /UVa/012/1216.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/012/1216.cpp -------------------------------------------------------------------------------- /UVa/012/1223.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/012/1223.cpp -------------------------------------------------------------------------------- /UVa/012/1229.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/012/1229.cpp -------------------------------------------------------------------------------- /UVa/012/1230.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/012/1230.cpp -------------------------------------------------------------------------------- /UVa/012/1231.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/012/1231.cpp -------------------------------------------------------------------------------- /UVa/012/1234.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/012/1234.cpp -------------------------------------------------------------------------------- /UVa/012/1235.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/012/1235.cpp -------------------------------------------------------------------------------- /UVa/012/1238.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/012/1238.cpp -------------------------------------------------------------------------------- /UVa/012/1239.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/012/1239.cpp -------------------------------------------------------------------------------- /UVa/012/1260.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/012/1260.cpp -------------------------------------------------------------------------------- /UVa/013/1346.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/013/1346.cpp -------------------------------------------------------------------------------- /UVa/013/1362.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/013/1362.cpp -------------------------------------------------------------------------------- /UVa/013/1395.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/013/1395.cpp -------------------------------------------------------------------------------- /UVa/015/1555.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/015/1555.cpp -------------------------------------------------------------------------------- /UVa/015/1556.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/015/1556.cpp -------------------------------------------------------------------------------- /UVa/100/10003.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/100/10003.cpp -------------------------------------------------------------------------------- /UVa/100/10004.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/100/10004.cpp -------------------------------------------------------------------------------- /UVa/100/10015.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/100/10015.cpp -------------------------------------------------------------------------------- /UVa/100/10036.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/100/10036.cpp -------------------------------------------------------------------------------- /UVa/100/10051.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/100/10051.cpp -------------------------------------------------------------------------------- /UVa/100/10056.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/100/10056.cpp -------------------------------------------------------------------------------- /UVa/100/10066.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/100/10066.cpp -------------------------------------------------------------------------------- /UVa/100/10099.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/100/10099.cpp -------------------------------------------------------------------------------- /UVa/101/10100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/101/10100.cpp -------------------------------------------------------------------------------- /UVa/101/10113.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/101/10113.cpp -------------------------------------------------------------------------------- /UVa/101/10115.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/101/10115.cpp -------------------------------------------------------------------------------- /UVa/101/10130.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/101/10130.cpp -------------------------------------------------------------------------------- /UVa/101/10139.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/101/10139.cpp -------------------------------------------------------------------------------- /UVa/101/10150.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/101/10150.cpp -------------------------------------------------------------------------------- /UVa/101/10154.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/101/10154.cpp -------------------------------------------------------------------------------- /UVa/101/10168.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/101/10168.cpp -------------------------------------------------------------------------------- /UVa/101/10178.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/101/10178.cpp -------------------------------------------------------------------------------- /UVa/101/10192.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/101/10192.cpp -------------------------------------------------------------------------------- /UVa/101/10198.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/101/10198.cpp -------------------------------------------------------------------------------- /UVa/102/10242.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/102/10242.cpp -------------------------------------------------------------------------------- /UVa/102/10263.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/102/10263.cpp -------------------------------------------------------------------------------- /UVa/102/10264.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/102/10264.cpp -------------------------------------------------------------------------------- /UVa/103/10301.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/103/10301.cpp -------------------------------------------------------------------------------- /UVa/103/10302.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/103/10302.cpp -------------------------------------------------------------------------------- /UVa/103/10304.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/103/10304.cpp -------------------------------------------------------------------------------- /UVa/103/10305.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/103/10305.cpp -------------------------------------------------------------------------------- /UVa/103/10308.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/103/10308.cpp -------------------------------------------------------------------------------- /UVa/103/10325.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/103/10325.cpp -------------------------------------------------------------------------------- /UVa/103/10330.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/103/10330.cpp -------------------------------------------------------------------------------- /UVa/103/10340.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/103/10340.cpp -------------------------------------------------------------------------------- /UVa/103/10342.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/103/10342.cpp -------------------------------------------------------------------------------- /UVa/103/10344.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/103/10344.cpp -------------------------------------------------------------------------------- /UVa/103/10368.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/103/10368.cpp -------------------------------------------------------------------------------- /UVa/103/10394.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/103/10394.cpp -------------------------------------------------------------------------------- /UVa/104/10405.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/104/10405.cpp -------------------------------------------------------------------------------- /UVa/104/10452.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/104/10452.cpp -------------------------------------------------------------------------------- /UVa/104/10453.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/104/10453.cpp -------------------------------------------------------------------------------- /UVa/104/10462.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/104/10462.cpp -------------------------------------------------------------------------------- /UVa/104/10469.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/104/10469.cpp -------------------------------------------------------------------------------- /UVa/104/10474.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/104/10474.cpp -------------------------------------------------------------------------------- /UVa/104/10484.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/104/10484.cpp -------------------------------------------------------------------------------- /UVa/104/10490.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/104/10490.cpp -------------------------------------------------------------------------------- /UVa/104/10491.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/104/10491.cpp -------------------------------------------------------------------------------- /UVa/104/10496.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/104/10496.cpp -------------------------------------------------------------------------------- /UVa/104/10534.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/104/10534.cpp -------------------------------------------------------------------------------- /UVa/105/10503.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/105/10503.cpp -------------------------------------------------------------------------------- /UVa/105/10509.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/105/10509.cpp -------------------------------------------------------------------------------- /UVa/105/10525.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/105/10525.cpp -------------------------------------------------------------------------------- /UVa/105/10557.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/105/10557.cpp -------------------------------------------------------------------------------- /UVa/106/10611.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/106/10611.cpp -------------------------------------------------------------------------------- /UVa/106/10617.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/106/10617.cpp -------------------------------------------------------------------------------- /UVa/106/10622.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/106/10622.cpp -------------------------------------------------------------------------------- /UVa/106/10626.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/106/10626.cpp -------------------------------------------------------------------------------- /UVa/106/10635.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/106/10635.cpp -------------------------------------------------------------------------------- /UVa/106/10651.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/106/10651.cpp -------------------------------------------------------------------------------- /UVa/106/10653.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/106/10653.cpp -------------------------------------------------------------------------------- /UVa/106/10667.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/106/10667.cpp -------------------------------------------------------------------------------- /UVa/106/10684.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/106/10684.cpp -------------------------------------------------------------------------------- /UVa/106/10686.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/106/10686.cpp -------------------------------------------------------------------------------- /UVa/106/10699.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/106/10699.cpp -------------------------------------------------------------------------------- /UVa/107/10703.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/107/10703.cpp -------------------------------------------------------------------------------- /UVa/107/10706.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/107/10706.cpp -------------------------------------------------------------------------------- /UVa/107/10717.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/107/10717.cpp -------------------------------------------------------------------------------- /UVa/107/10723.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/107/10723.cpp -------------------------------------------------------------------------------- /UVa/107/10739.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/107/10739.cpp -------------------------------------------------------------------------------- /UVa/107/10790.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/107/10790.cpp -------------------------------------------------------------------------------- /UVa/108/10801.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/108/10801.cpp -------------------------------------------------------------------------------- /UVa/108/10812.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/108/10812.cpp -------------------------------------------------------------------------------- /UVa/108/10815.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/108/10815.cpp -------------------------------------------------------------------------------- /UVa/108/10816.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/108/10816.cpp -------------------------------------------------------------------------------- /UVa/108/10827.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/108/10827.cpp -------------------------------------------------------------------------------- /UVa/108/10843.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/108/10843.cpp -------------------------------------------------------------------------------- /UVa/108/10865.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/108/10865.cpp -------------------------------------------------------------------------------- /UVa/108/10891.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/108/10891.cpp -------------------------------------------------------------------------------- /UVa/108/10892.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/108/10892.cpp -------------------------------------------------------------------------------- /UVa/109/10911.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/109/10911.cpp -------------------------------------------------------------------------------- /UVa/109/10920.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/109/10920.cpp -------------------------------------------------------------------------------- /UVa/109/10928.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/109/10928.cpp -------------------------------------------------------------------------------- /UVa/109/10930.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/109/10930.cpp -------------------------------------------------------------------------------- /UVa/109/10935.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/109/10935.cpp -------------------------------------------------------------------------------- /UVa/109/10945.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/109/10945.cpp -------------------------------------------------------------------------------- /UVa/109/10954.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/109/10954.cpp -------------------------------------------------------------------------------- /UVa/109/10976.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/109/10976.cpp -------------------------------------------------------------------------------- /UVa/109/10986.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/109/10986.cpp -------------------------------------------------------------------------------- /UVa/110/11003.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/110/11003.cpp -------------------------------------------------------------------------------- /UVa/110/11026.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/110/11026.cpp -------------------------------------------------------------------------------- /UVa/110/11053.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/110/11053.cpp -------------------------------------------------------------------------------- /UVa/110/11059.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/110/11059.cpp -------------------------------------------------------------------------------- /UVa/110/11062.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/110/11062.cpp -------------------------------------------------------------------------------- /UVa/110/11094.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/110/11094.cpp -------------------------------------------------------------------------------- /UVa/111/11151.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/111/11151.cpp -------------------------------------------------------------------------------- /UVa/112/11207.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/112/11207.cpp -------------------------------------------------------------------------------- /UVa/112/11283.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/112/11283.cpp -------------------------------------------------------------------------------- /UVa/112/11284.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/112/11284.cpp -------------------------------------------------------------------------------- /UVa/112/11286.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/112/11286.cpp -------------------------------------------------------------------------------- /UVa/113/11341.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/113/11341.cpp -------------------------------------------------------------------------------- /UVa/113/11343.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/113/11343.cpp -------------------------------------------------------------------------------- /UVa/113/11345.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/113/11345.cpp -------------------------------------------------------------------------------- /UVa/113/11368.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/113/11368.cpp -------------------------------------------------------------------------------- /UVa/113/11374.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/113/11374.cpp -------------------------------------------------------------------------------- /UVa/113/11375.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/113/11375.cpp -------------------------------------------------------------------------------- /UVa/113/11388.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/113/11388.cpp -------------------------------------------------------------------------------- /UVa/114/11402.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/114/11402.cpp -------------------------------------------------------------------------------- /UVa/114/11404.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/114/11404.cpp -------------------------------------------------------------------------------- /UVa/114/11413.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/114/11413.cpp -------------------------------------------------------------------------------- /UVa/114/11417.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/114/11417.cpp -------------------------------------------------------------------------------- /UVa/114/11420.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/114/11420.cpp -------------------------------------------------------------------------------- /UVa/114/11462.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/114/11462.cpp -------------------------------------------------------------------------------- /UVa/114/11473.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/114/11473.cpp -------------------------------------------------------------------------------- /UVa/114/11495.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/114/11495.cpp -------------------------------------------------------------------------------- /UVa/115/11518.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/115/11518.cpp -------------------------------------------------------------------------------- /UVa/115/11520.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/115/11520.cpp -------------------------------------------------------------------------------- /UVa/115/11536.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/115/11536.cpp -------------------------------------------------------------------------------- /UVa/115/11550.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/115/11550.cpp -------------------------------------------------------------------------------- /UVa/115/11561.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/115/11561.cpp -------------------------------------------------------------------------------- /UVa/115/11565.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/115/11565.cpp -------------------------------------------------------------------------------- /UVa/115/11573.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/115/11573.cpp -------------------------------------------------------------------------------- /UVa/116/11628.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/116/11628.cpp -------------------------------------------------------------------------------- /UVa/116/11658.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/116/11658.cpp -------------------------------------------------------------------------------- /UVa/116/11661.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/116/11661.cpp -------------------------------------------------------------------------------- /UVa/116/11679.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/116/11679.cpp -------------------------------------------------------------------------------- /UVa/117/11703.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/117/11703.cpp -------------------------------------------------------------------------------- /UVa/117/11709.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/117/11709.cpp -------------------------------------------------------------------------------- /UVa/117/11730.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/117/11730.cpp -------------------------------------------------------------------------------- /UVa/117/11733.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/117/11733.cpp -------------------------------------------------------------------------------- /UVa/117/11753.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/117/11753.cpp -------------------------------------------------------------------------------- /UVa/118/11838.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/118/11838.cpp -------------------------------------------------------------------------------- /UVa/118/11849.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/118/11849.cpp -------------------------------------------------------------------------------- /UVa/119/11900.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/119/11900.cpp -------------------------------------------------------------------------------- /UVa/119/11933.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/119/11933.cpp -------------------------------------------------------------------------------- /UVa/119/11953.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/119/11953.cpp -------------------------------------------------------------------------------- /UVa/119/11988.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/119/11988.cpp -------------------------------------------------------------------------------- /UVa/119/11991.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/119/11991.cpp -------------------------------------------------------------------------------- /UVa/119/11995.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/119/11995.cpp -------------------------------------------------------------------------------- /UVa/120/12032.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/120/12032.cpp -------------------------------------------------------------------------------- /UVa/120/12034.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/120/12034.cpp -------------------------------------------------------------------------------- /UVa/120/12095.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/120/12095.cpp -------------------------------------------------------------------------------- /UVa/121/12124.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/121/12124.cpp -------------------------------------------------------------------------------- /UVa/121/12147.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/121/12147.cpp -------------------------------------------------------------------------------- /UVa/122/12263.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/122/12263.cpp -------------------------------------------------------------------------------- /UVa/122/12289.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/122/12289.cpp -------------------------------------------------------------------------------- /UVa/122/12299.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/122/12299.cpp -------------------------------------------------------------------------------- /UVa/123/12318.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/123/12318.cpp -------------------------------------------------------------------------------- /UVa/123/12321.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/123/12321.cpp -------------------------------------------------------------------------------- /UVa/123/12346.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/123/12346.cpp -------------------------------------------------------------------------------- /UVa/123/12379.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/123/12379.cpp -------------------------------------------------------------------------------- /UVa/124/12405.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/124/12405.cpp -------------------------------------------------------------------------------- /UVa/124/12442.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/124/12442.cpp -------------------------------------------------------------------------------- /UVa/124/12461.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/124/12461.cpp -------------------------------------------------------------------------------- /UVa/124/12484.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/124/12484.cpp -------------------------------------------------------------------------------- /UVa/125/12504.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/125/12504.cpp -------------------------------------------------------------------------------- /UVa/125/12526.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/125/12526.cpp -------------------------------------------------------------------------------- /UVa/125/12532.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/125/12532.cpp -------------------------------------------------------------------------------- /UVa/126/12626.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/126/12626.cpp -------------------------------------------------------------------------------- /UVa/127/12748.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/127/12748.cpp -------------------------------------------------------------------------------- /UVa/128/12869.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/128/12869.cpp -------------------------------------------------------------------------------- /UVa/129/12952.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/UVa/129/12952.cpp -------------------------------------------------------------------------------- /leetCode/burst-balloons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/burst-balloons.cpp -------------------------------------------------------------------------------- /leetCode/decode-ways.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/decode-ways.cpp -------------------------------------------------------------------------------- /leetCode/distinct-subsequences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/distinct-subsequences.cpp -------------------------------------------------------------------------------- /leetCode/dungeon-game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/dungeon-game.cpp -------------------------------------------------------------------------------- /leetCode/house-robber-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/house-robber-ii.cpp -------------------------------------------------------------------------------- /leetCode/house-robber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/house-robber.cpp -------------------------------------------------------------------------------- /leetCode/longest-increasing-path-in-a-matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/longest-increasing-path-in-a-matrix.cpp -------------------------------------------------------------------------------- /leetCode/max-value-of-equation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/max-value-of-equation.cpp -------------------------------------------------------------------------------- /leetCode/number-of-subsequences-that-satisfy-the-given-sum-condition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/number-of-subsequences-that-satisfy-the-given-sum-condition.cpp -------------------------------------------------------------------------------- /leetCode/palindrome-partitioning-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/palindrome-partitioning-ii.cpp -------------------------------------------------------------------------------- /leetCode/palindrome-partitioning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/palindrome-partitioning.cpp -------------------------------------------------------------------------------- /leetCode/range-sum-query-2d-immutable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/range-sum-query-2d-immutable.cpp -------------------------------------------------------------------------------- /leetCode/regular-expression-matching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/regular-expression-matching.cpp -------------------------------------------------------------------------------- /leetCode/scramble-string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/scramble-string.cpp -------------------------------------------------------------------------------- /leetCode/super-ugly-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/super-ugly-number.cpp -------------------------------------------------------------------------------- /leetCode/ugly-number-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/ugly-number-ii.cpp -------------------------------------------------------------------------------- /leetCode/word-break-ii.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/word-break-ii.cpp -------------------------------------------------------------------------------- /leetCode/word-break.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/leetCode/word-break.cpp -------------------------------------------------------------------------------- /newcomers/basics math algorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/newcomers/basics math algorithms.cpp -------------------------------------------------------------------------------- /newcomers/difference between subarray and subsequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/newcomers/difference between subarray and subsequence.md -------------------------------------------------------------------------------- /spoj/ABA12E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/ABA12E.cpp -------------------------------------------------------------------------------- /spoj/AGGRCOW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/AGGRCOW.cpp -------------------------------------------------------------------------------- /spoj/ALIENS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/ALIENS.cpp -------------------------------------------------------------------------------- /spoj/ANARC08A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/ANARC08A.cpp -------------------------------------------------------------------------------- /spoj/ASSIGN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/ASSIGN.cpp -------------------------------------------------------------------------------- /spoj/BENEFACT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/BENEFACT.cpp -------------------------------------------------------------------------------- /spoj/BIA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/BIA.cpp -------------------------------------------------------------------------------- /spoj/BITMAP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/BITMAP.cpp -------------------------------------------------------------------------------- /spoj/BLOPER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/BLOPER.cpp -------------------------------------------------------------------------------- /spoj/BRCKTS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/BRCKTS.cpp -------------------------------------------------------------------------------- /spoj/BYTESM2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/BYTESM2.cpp -------------------------------------------------------------------------------- /spoj/CAPCITY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/CAPCITY.cpp -------------------------------------------------------------------------------- /spoj/CDC12_H.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/CDC12_H.cpp -------------------------------------------------------------------------------- /spoj/CHOCOLA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/CHOCOLA.cpp -------------------------------------------------------------------------------- /spoj/CNTPRIME.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/CNTPRIME.cpp -------------------------------------------------------------------------------- /spoj/COURIER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/COURIER.cpp -------------------------------------------------------------------------------- /spoj/DICT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/DICT.cpp -------------------------------------------------------------------------------- /spoj/ELIS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/ELIS.cpp -------------------------------------------------------------------------------- /spoj/FACENEMY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/FACENEMY.cpp -------------------------------------------------------------------------------- /spoj/FREQUENT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/FREQUENT.cpp -------------------------------------------------------------------------------- /spoj/FUNPROB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/FUNPROB.cpp -------------------------------------------------------------------------------- /spoj/GRASSPL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/GRASSPL.cpp -------------------------------------------------------------------------------- /spoj/GSS1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/GSS1.cpp -------------------------------------------------------------------------------- /spoj/GSS3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/GSS3.cpp -------------------------------------------------------------------------------- /spoj/HORRIBLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/HORRIBLE.cpp -------------------------------------------------------------------------------- /spoj/INVCNT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/INVCNT.cpp -------------------------------------------------------------------------------- /spoj/KATHTHI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/KATHTHI.cpp -------------------------------------------------------------------------------- /spoj/KGSS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/KGSS.cpp -------------------------------------------------------------------------------- /spoj/KOMPICI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/KOMPICI.cpp -------------------------------------------------------------------------------- /spoj/LITE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/LITE.cpp -------------------------------------------------------------------------------- /spoj/LUCKYNUM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/LUCKYNUM.cpp -------------------------------------------------------------------------------- /spoj/MAKETREE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/MAKETREE.cpp -------------------------------------------------------------------------------- /spoj/MULTQ3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/MULTQ3.cpp -------------------------------------------------------------------------------- /spoj/ONP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/ONP.cpp -------------------------------------------------------------------------------- /spoj/PERMUT1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/PERMUT1.cpp -------------------------------------------------------------------------------- /spoj/PHONELST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/PHONELST.cpp -------------------------------------------------------------------------------- /spoj/PIR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/PIR.cpp -------------------------------------------------------------------------------- /spoj/POTHOLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/POTHOLE.cpp -------------------------------------------------------------------------------- /spoj/POUR1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/POUR1.cpp -------------------------------------------------------------------------------- /spoj/PPATH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/PPATH.cpp -------------------------------------------------------------------------------- /spoj/PT07Y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/PT07Y.cpp -------------------------------------------------------------------------------- /spoj/PT07Z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/PT07Z.cpp -------------------------------------------------------------------------------- /spoj/QTREE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/QTREE.cpp -------------------------------------------------------------------------------- /spoj/QUEEN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/QUEEN.cpp -------------------------------------------------------------------------------- /spoj/RMQSQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/RMQSQ.cpp -------------------------------------------------------------------------------- /spoj/SHOP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/SHOP.cpp -------------------------------------------------------------------------------- /spoj/SHPATH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/SHPATH.cpp -------------------------------------------------------------------------------- /spoj/STSTRING.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/STSTRING.cpp -------------------------------------------------------------------------------- /spoj/SUBMERGE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/SUBMERGE.cpp -------------------------------------------------------------------------------- /spoj/SUB_PROB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/SUB_PROB.cpp -------------------------------------------------------------------------------- /spoj/TFRIENDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/TFRIENDS.cpp -------------------------------------------------------------------------------- /spoj/TOE1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/TOE1.cpp -------------------------------------------------------------------------------- /spoj/TORNJEVI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/TORNJEVI.cpp -------------------------------------------------------------------------------- /spoj/TRT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/TRT.cpp -------------------------------------------------------------------------------- /spoj/TWINSNOW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/TWINSNOW.cpp -------------------------------------------------------------------------------- /spoj/WEIRDFN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/WEIRDFN.cpp -------------------------------------------------------------------------------- /spoj/XOINC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedEzzatG/competitiveProgramming/HEAD/spoj/XOINC.cpp --------------------------------------------------------------------------------