├── .gitignore ├── apac ├── round 1b │ ├── A-large.in │ ├── A-small-attempt0.in │ ├── A-small.cpp │ ├── B-largecode.cpp │ ├── B-small-attempt0.in │ ├── B-small.cpp │ ├── C-small-attempt0.in │ ├── C-small.cpp │ └── sub-src-3.zip ├── round 1e │ ├── A-large.in │ ├── A-output.txt │ ├── A-small-attempt0.in │ ├── A-small.cpp │ ├── B-large.in │ ├── B-output.txt │ ├── B-small-attempt0.in │ ├── B-small.cpp │ ├── C-large.in │ ├── C-small-attempt0.in │ └── C-small.cpp └── round1d │ ├── A-small-attempt0.in │ ├── A-small.cpp │ ├── A-small.in │ ├── B-large.in │ ├── B-largecode.cpp │ ├── B-small-attempt0.in │ ├── B-small.cpp │ ├── C-large.in │ ├── C-small.cpp │ ├── D-small-attempt0.in │ ├── D-small.cpp │ └── Vote.cpp ├── codechef ├── ACMIND17 │ ├── COMPEXP.cpp │ ├── EQUALMOD.cpp │ └── ORDTEAMS.cpp ├── April Challenge 17 │ ├── CHEFDIV.cpp │ ├── CLIQUED.cpp │ ├── DISHLIFE.cpp │ ├── ROWSOLD.cpp │ ├── SIMDISH.cpp │ └── SMARKET.cpp ├── August Challenge 16 │ ├── CHCHCL.cpp │ ├── CHEFCRUN.cpp │ ├── CHEFCRUNutil.cpp │ ├── CHEFRRUN.cpp │ └── input.txt ├── August Challenge 17 │ ├── CHEFFA.cpp │ ├── CHEFMOVR.cpp │ ├── GCAC.cpp │ ├── PALINGAM.cpp │ ├── RAINBOWA.cpp │ └── STRINGRA.cpp ├── August Lunchtime 16 │ ├── ALPHABET.cpp │ └── LFSTACK.cpp ├── BITFLIT │ ├── APJSWG.cpp │ ├── JUMBSTRY.cpp │ ├── SPECRK.cpp │ ├── SPECRK.py │ └── THESAV.cpp ├── BYD1610.cpp ├── CAKEDOOM.cpp ├── CB03.cpp ├── CHEFARRP.cpp ├── CHEFSPL.cpp ├── CHEFST.py ├── COOK89 │ ├── BTAR.cpp │ ├── FBMT.cpp │ └── MINSUBAR.cpp ├── COOK90 │ ├── MAGA.cpp │ ├── MULTHREE.cpp │ └── SURVIVE.cpp ├── COOK91 │ ├── CARRAY.cpp │ ├── CCOOK.cpp │ ├── CSUBSEQ.cpp │ └── CTHREE.cpp ├── COSH1503.cpp ├── December Challenge 16 │ ├── ALEXROSE-naive.cpp │ ├── ANKTRAIN.cpp │ ├── BASE-naive.cpp │ ├── BASE.cpp │ ├── KIRLAB-naive.cpp │ ├── KIRLAB.cpp │ ├── KIRLAB.py │ ├── KTHMAX-misunderstood_approach.cpp │ ├── KTHMAX.cpp │ └── THREECOL.cpp ├── December Challenge 17 │ ├── CHEFEXQ.cpp │ ├── CHEFHAM.cpp │ ├── CHEFUNI.cpp │ ├── CPLAY.cpp │ ├── GIT01.cpp │ ├── REDBLUE-naive.cpp │ ├── REDBLUE.py │ └── VK18.cpp ├── February Challenge 17 │ ├── CHEFAPAR.cpp │ ├── GERMANDE.cpp │ └── MAKETRI.cpp ├── GCDQ.cpp ├── JAN18 │ ├── KCON.cpp │ ├── MAXSC.cpp │ ├── MONSTER.cpp │ ├── PRTITION.cpp │ ├── RECTANGL.cpp │ └── STRMRG.cpp ├── January Challenge 17 │ ├── CAPIMOVE.cpp │ ├── CATSDOGS.cpp │ ├── CHEFCIRC.cpp │ ├── DIGITSEP.cpp │ ├── FOURSQ.cpp │ ├── RESERVOI.cpp │ └── TOURISTS.cpp ├── July long Challenge 17 │ ├── EXPTREE.cpp │ ├── IPCTRAIN.cpp │ └── PSHTTR.cpp ├── June Challenge 16 │ ├── BINOP.cpp │ ├── CHCOINSG.cpp │ ├── CHEARMY.cpp │ ├── CHEFARK.cpp │ ├── CHSQARR.cpp │ ├── DEVARRAY.cpp │ └── FRJUMP.cpp ├── June Challenge 17 │ ├── GOODSET.cpp │ ├── NE001.cpp │ ├── PRMQ.cpp │ ├── SUMQ.cpp │ ├── UNIONSET.cpp │ └── XENRANK.cpp ├── June Cook-Off 17 │ ├── ADACRA.cpp │ ├── ADADET.cpp │ ├── CENTREE.cpp │ ├── KNICOV.cpp │ └── SNACKUP.cpp ├── KOL15B.cpp ├── KTTABLE.cpp ├── MAXISUM.cpp ├── MMSUM.cpp ├── MTRNSFRM.cpp ├── May Challenge 16 │ ├── CHBLLS.cpp │ ├── CHEFMATH.cpp │ ├── CHEFNUM.cpp │ ├── CHEFSOC2.cpp │ ├── FORESTGA.cpp │ ├── LADDU.cpp │ ├── SEAGCD2.cpp │ ├── bruteCHEFMATH.cpp │ └── bruteSEAGCD2.cpp ├── November Chellenge 17 │ ├── CHEFHPAL.cpp │ ├── CSUBQ.cpp │ ├── PERPALIN.cpp │ └── SEGPROD.cpp ├── November Lunch Time 16 │ ├── CHEFSSET.cpp │ └── CHEFSTUD.cpp ├── OCT17 │ ├── CHEFCCYL.cpp │ ├── MEX.cpp │ ├── PERFCONT.cpp │ ├── temp_output0 │ ├── temp_output1 │ └── temp_output2 ├── ORACLCS.py ├── October Challenge 16 │ ├── BGQRS.cpp │ ├── CHDOGS.cpp │ ├── CHEFKEY.cpp │ ├── CHEFTWOS.cpp │ ├── FENWITER.cpp │ ├── GEOCHEAT_naive.cpp │ ├── SEARRI.cpp │ └── input.txt ├── PLANEDIV.py ├── SOPC2017 │ ├── OPC1702.cpp │ └── OPC1703.cpp ├── STRPALIN.cpp ├── September Challenge 16 │ ├── CHEFKC.cpp │ ├── CHFNFRN-brute.cpp │ ├── CHFNFRN.cpp │ ├── CHMTDV.cpp │ ├── DIVMAC-naive.cpp │ ├── DIVMAC.cpp │ ├── JTREE.cpp │ ├── LEXOPAL.cpp │ ├── LONGSEQ.cpp │ ├── RESCALC.cpp │ ├── input.txt │ └── newDIVMAC.cpp ├── September Challenge 17 │ ├── CHEFPDIG.cpp │ ├── CHEFSUM.cpp │ ├── FILLMTR.cpp │ ├── MINPERM.cpp │ ├── SEACO.cpp │ └── WEASELTX.cpp ├── September Cook Off 16 │ ├── TAASEQ.cpp │ ├── TACNTSTR.cpp │ └── TALAZY.cpp ├── SnackDown-16 │ ├── SnackDown elimination round │ │ ├── ALLIANCE.cpp │ │ ├── ARITHM.cpp │ │ ├── COLTREE.cpp │ │ └── RWALK.cpp │ ├── Snackdown Pre-Elimination round A │ │ ├── MAKELIS.cpp │ │ └── SUBSEG2.cpp │ └── Snackdown Pre-Elimination round B │ │ ├── ENTEXAM.cpp │ │ └── MMPROD.cpp ├── SnackDown-17 │ ├── Elimination Round 17 │ │ ├── ANCESTOR.cpp │ │ ├── MEXDIV.cpp │ │ └── PLUSMUL.cpp │ ├── Pre-Elimination round A │ │ ├── CONSESNK.cpp │ │ ├── PROTEPOI.cpp │ │ └── SNTEMPLE.cpp │ └── Pre-Elimination round B │ │ ├── SNCOUP.cpp │ │ ├── SNDISCUS.cpp │ │ ├── SNGRAPH.cpp │ │ └── SNSOCIAL.cpp ├── TSTIND17 │ ├── CHN05.cpp │ └── TYTACTIC.cpp ├── bruteMMSUM.cpp ├── march long challenge 17 │ ├── BANDMATR.cpp │ ├── EXTRAN.cpp │ ├── PSHTBRTH.cpp │ ├── SCHEDULE.cpp │ └── XENTASK.cpp ├── prefix_power_of_2.py └── shaastraOPc │ ├── SOPC1501.cpp │ ├── SOPC1502.cpp │ ├── SOPC1503.cpp │ ├── SOPC1504.cpp │ ├── SOPC1505.cpp │ ├── SOPC1506.cpp │ ├── SPC1601.cpp │ └── SPC1602.cpp ├── codefights ├── CodeLeader.cpp ├── May_Marathon │ └── hello world.cpp ├── christmastree.cpp ├── davinci.cpp ├── even.cpp ├── fibonaccicodingIII.cpp ├── fractalMatrix.cpp ├── poke_game.cpp ├── vending_machine.cpp └── waterFilling.cpp ├── codeforces ├── 1009A-Game_shopping.cpp ├── 1009B-Minimum_terenary_string.cpp ├── 1009C-Annoying_present.cpp ├── 1009D-Relatively_prime_graph.cpp ├── 1009E-Intercity_Travelling.cpp ├── 101510B.cpp ├── 101510D.cpp ├── 110A-nearly_lucky_number.cpp ├── 119A-epic_game.cpp ├── 122A-Lucky_division.cpp ├── 131A-caps_lock.cpp ├── 136A-presents.cpp ├── 148A-insomnia_cure.cpp ├── 148A-insomnia_cure.cpp~ ├── 158B-taxi.cpp ├── 208A-Dubstep.cpp ├── 231A-Team.cpp ├── 236A-boyorgirl.cpp ├── 271A-beautiful_year.cpp ├── 282A-Bit++.cpp ├── 344A-magnets.cpp ├── 383A-Arpas_hard_exam.cpp ├── 383B-Arpas_obvious_problem.cpp ├── 383C-arpas_loud_owf.cpp ├── 383D-arpas_weak_amphitheatre.cpp ├── 385A-hongcow_learns_cyclic_shift.cpp ├── 385B-hongcow_solves_puzzle.cpp ├── 385C-hongcow_builds_a_nation.cpp ├── 420A-startup.cpp ├── 425A-sasha_and_sticks.cpp ├── 425B-petya_and_exam.cpp ├── 425D-Misha_grisha_and_underground.cpp ├── 451A-game_with_sticks.cpp ├── 460A-vasya&socks.cpp ├── 467A-george_and_accomodation.cpp ├── 472A-learn_from_math.cpp ├── 540A-combination_lock.cpp ├── 540C-Ice_cave.cpp ├── 567A-lineland_mail.cpp ├── 567B-berland_national_library.cpp ├── 570A-elections.cpp ├── 570B-simple_game.cpp ├── 570C-replacement.cpp ├── 570D-tree_requests.cpp ├── 570d-tree_requests.py ├── 573B-bear_blocks.cpp ├── 58A-chat_room.cpp ├── 606B.cpp ├── 606C.cpp ├── 610A.cpp ├── 610B.cpp ├── 656A-Da_Vinci_Powers.cpp ├── 656A-Da_Vinci_Powers.py ├── 656G-You're_a_professional.cpp ├── 675A-Infinite_sequence.cpp ├── 675B-Restoring_painting.cpp ├── 675C-Money_Transfers.cpp ├── 675D-Tree_Construction.cpp ├── 676A-Nicholas_and_permutation.cpp ├── 676B-Pyramid_of_glasses.cpp ├── 676C-Vasya_and_String.cpp ├── 680A-Bear_and_Five_cards.cpp ├── 680B-Bear_and_finding_criminals.cpp ├── 680C-Bear_and_prime100.cpp ├── 680D-Bear_and_tower_of_cubes.cpp ├── 680bruteD-Bear_and_tower_of_cubes.cpp ├── 702A-Maximum_Increasse.cpp ├── 702B-Powers_of_Two.cpp ├── 702C-Cellular_Network.cpp ├── 709A-juicer.cpp ├── 709B-Checkpoints.cpp ├── 709C-Letters_Cyclic_shift.cpp ├── 709D-Recover_the_string.cpp ├── 712A-memory_and_crow.cpp ├── 712B-memory_and_trident.cpp ├── 712C-memory_and_deevolution.cpp ├── 714A-meeting_of_old_friends.cpp ├── 714B-Filya_and_homework.cpp ├── 714C-Sonya_and_queries.cpp ├── 714D-Searching_rectangles.cpp ├── 731A-Night_at_the_museum.cpp ├── 731B-Coupons_and_discounts.cpp ├── 731C-Socks.cpp ├── 732A-Buy_a_shovel.cpp ├── 732B-Cormen.cpp ├── 732C-Sanatorium.cpp ├── 735A-Ostap_and_grasshopper.cpp ├── 735B-Urbanization.cpp ├── 735C-Tennis_Championship.cpp ├── 735D-Taxes.cpp ├── 754A-Lesha_array_splitting.cpp ├── 754B-Ilya_and_tic_tac_toe_game.cpp ├── 754C-Vladik_and_chat.py ├── 755A-polandball_and_hypothesis.cpp ├── 755B-polandball_and_game.cpp ├── 755C-polandball_and_forest.cpp ├── 755D-polandball_and_polygon.cpp ├── 757A-Gotta_catch_em_all.cpp ├── 757B-Bashs_big_day.cpp ├── 757C-Felicity_is_coming.cpp ├── 760A-petr_and_calendar.cpp ├── 760B-Frodo_and_pillows.cpp ├── 760C-Pavel_and_barbeque.cpp ├── 760D-travel_card.cpp ├── 764A-Taymyr_is_calling_you.cpp ├── 764B-Timofey_and_cubes.cpp ├── 764C-Timofey_and_a_tree.cpp ├── 764D-Timofey_and_rectangels.cpp ├── 789A-Anastasia_and_pebbles.cpp ├── 822A-bored_with_life.cpp ├── 822B-Crossword_Solving.cpp ├── 822C-pack_your_bags.cpp ├── 822D-My_pretty_girl_noora.cpp ├── 828A-Restuarant_tables.cpp ├── 828B-Black_Square.cpp ├── 828C-String_reconstruction.cpp ├── 828D-High_Load.cpp ├── 82A-double_cola.cpp ├── 847A-Union_of_doubly_linked_lists.cpp ├── 847D-Dog_Show.cpp ├── 847E-Packmen.cpp ├── 847H-Load_testing.cpp ├── 847I-Noise_level.cpp ├── 847K-Travel_cards.cpp ├── 847M-Weather_tomorrow.cpp ├── 895A-Pizza_separation.cpp ├── 895B-XK_Segments.cpp ├── 897A-Scarborough_fair.cpp ├── 897B-Chthollys_request.py ├── 897C-Nephren_gives_a_riddle.cpp ├── 897C-Nephren_gives_a_riddle.py ├── 908A-CountingCards.cpp ├── 908B-Buggy_Bot.cpp ├── 908C-Curling.cpp ├── 911A-nearest_minimum.cpp ├── 911B-Two_cakes.cpp ├── 911C-garland.cpp ├── 911D-InversionCounting.cpp ├── 911E-Stack_sorting.cpp ├── 911F-Tree_Destruction.cpp ├── 911G-Mass_change_querries.cpp ├── 912A-Tricky_alchemy.cpp ├── 912B-New_years_eve.cpp ├── 912C-perun_ult.cpp ├── 912D-Fishes.cpp ├── 916A-Jaime_And_alarm_snooze.cpp ├── 916B-Jaime_and_binary_sequence.cpp ├── 916C-interesting_graph.cpp ├── 918A-Eleven.cpp ├── 918B-radio_station.cpp ├── 918C-Monster.cpp ├── 918D-MadMax.cpp ├── 922A-Cloning_toys.cpp ├── 922B-Magic_Forest.cpp ├── 922C-cave_painting.cpp ├── 922C-cave_painting.py ├── 922D-robot_vaccuum_cleaner.cpp ├── 935A-Fafa_and_his_company.cpp ├── 935B-Fafa_and_the_gates.cpp ├── 935C-Fifa_and_fafa.cpp ├── 935D-Fafa_and_ancient_alphabet.cpp ├── 959A-even-odd-game.cpp ├── 959B-ME-the-message.cpp ├── 959C-ME-wrong-algorithm.cpp ├── 959D-ME-another-array-construction-naive.cpp ├── 959E-ME-xor-MST.cpp ├── 959F-ME-yet-another-xor-task.cpp ├── 998A-balloons.cpp ├── 998B-Cutting.cpp ├── 998C-Convert_to_ones.cpp ├── Erothesthenes_seive.cpp ├── String_task-cf.cpp ├── avltree_insertion_non-recursive.c ├── bfs.cpp ├── dominoes_piling.cpp ├── floyd_warshall_recursion.cpp └── template ├── codejam-16 ├── qualification round │ ├── A-large.in │ ├── A-small-attempt0.in │ ├── B-large.in │ ├── B-small-attempt0.in │ ├── B-small-input.in │ ├── D-small-attempt0.in │ ├── Fractiles.cpp │ ├── Fractiles_util.cpp │ ├── INMO-2016 English Version.pdf │ ├── coin-jam.cpp │ ├── combinations │ ├── counting_sheep.py │ ├── input │ ├── jam-coin.py │ ├── primes.py │ ├── revenge_of_the_pancakes.cpp │ └── sol-inmo16.pdf ├── round 1a │ ├── A-large.in │ ├── A-small-attempt-0.in │ ├── A-small-attempt0.in │ ├── B-large.in │ ├── B-small-attempt0.in │ ├── BFF.cpp │ ├── C-small-attempt0.in │ ├── Rank_and_File.cpp │ ├── failed │ ├── sub-src-3.zip │ └── the_last_word.cpp ├── round 1b │ ├── A-large.in │ ├── A-small-attempt0.in │ ├── A.cpp │ ├── B-small-attempt0.in │ ├── B.cpp │ ├── BFF.cpp │ ├── C-small-attempt0.in │ ├── C.py │ ├── Rank_and_File.cpp │ ├── output │ ├── output1 │ ├── output3 │ ├── sub-1.in │ ├── sub-src-1.zip │ └── the_last_word.cpp └── round 1c │ ├── A-large.in │ ├── A-small-attempt0.in │ ├── A.cpp │ ├── B-large.in │ ├── B-small-attempt0.in │ ├── B.cpp │ ├── C-small-attempt.in │ ├── C-small-attempt0.in │ ├── C.cpp │ └── C.py ├── codejam-17 ├── qualification_round_2017 │ ├── A-small-attempt0.in │ ├── A-small.cpp │ ├── B-large.in │ ├── B-small-attempt0.in │ ├── B-small.cpp │ ├── C-large-correct.cpp │ ├── C-large-practice.in │ ├── C-large.in │ ├── C-small-2-attempt0.in │ ├── C-small-attempt0.in │ └── C-small.cpp ├── round 1b │ ├── A-large.in │ ├── A-small-attempt0.in │ ├── A-small.cpp │ ├── B-large.in │ ├── B-sample.in │ ├── B-small-attempt0.in │ ├── B-small.cpp │ ├── C-large-correct.cpp │ ├── C-small-attempt0.in │ └── C-small.cpp └── round 1c │ ├── A-large.in │ ├── A-small-attempt.in │ ├── A-small-attempt0.in │ ├── A-small-attempt1.in │ ├── A-small.cpp │ ├── B-large.in │ ├── B-small-attempt.in │ ├── B-small-attempt0.in │ ├── B-small.cpp │ ├── C-large-correct.cpp │ ├── C-small-1-attempt0.in │ ├── C-small-attempt0.in │ └── C-small.cpp ├── codejam-18 ├── qualification_round_2018 │ ├── A-small.cpp │ ├── B-small.cpp │ └── testing_tool.py ├── round 1b │ ├── mysterious_road_signs.cpp │ ├── rounding_error.cpp │ └── transmutation.cpp └── round 1c │ ├── a-whole-new-world.cpp │ └── ant-stack.cpp ├── hackercup ├── 2017 │ ├── qualification round │ │ ├── fighting_the_zombie.cpp │ │ ├── lazy_loading.cpp │ │ └── progress_pie.cpp │ ├── round1 │ │ ├── fighting_the_zombie.cpp │ │ ├── input_generator.py │ │ ├── manic_moving.cpp │ │ └── progress_pie.cpp │ └── round2 │ │ ├── big_top.cpp │ │ ├── fighting_the_zombie.cpp │ │ ├── naive.cpp │ │ └── subtle_sabotage.cpp └── 2018 │ └── qualification round │ ├── ethan_searches_for_a_string.cpp │ └── interception.cpp ├── hackerearth ├── codathon18-nitbhopal │ ├── day-1.cpp │ ├── day-2.cpp │ ├── day-3-game-of-disks.cpp │ ├── day-3-graph-question.cpp │ ├── day-4-training-the-joker.cpp │ ├── day-6.cpp │ ├── day-7.cpp │ └── test-gen.py └── lets-code-20 │ ├── bot-game.cpp │ ├── coin-problem.cpp │ ├── find_median_without_sorting.cpp │ ├── help-shivam-naive.cpp │ ├── help-shivam.cpp │ ├── lets-run.cpp │ └── mavis-and-his-problem.cpp ├── hackerrank ├── codeagon_contest_gohanandblocks.cpp ├── codestorm15 │ ├── boomarang.py │ ├── little-alexeys-tree-map.cpp │ └── little-alexeys-tree.cpp ├── hourrank11 │ ├── lcsreturns.cpp │ └── strangecounter.cpp ├── hourrank3 │ ├── divisor-exploration-4-problem-tester.cpp │ └── divisor-exploration-4.cpp ├── weekofcode17 │ ├── 13friday.cpp │ ├── cp.cpp │ ├── ctr.py │ └── roads_building.cpp ├── weekofcode19 │ └── two_robots.cpp ├── weekofcode21 │ └── n-letter.cpp ├── weekofcode23 │ └── lighthouse.cpp ├── world-code-sprint-April │ ├── permuations.cpp │ └── toh.cpp └── worldcup-university_level_hack │ ├── bishop-war │ └── bwar.cpp │ ├── delivery.cpp │ ├── quantumland.py │ └── worldcupcity.cpp ├── icpc16 ├── b.cpp ├── d.cpp ├── f.cpp ├── g.cpp ├── input.txt └── template.cpp ├── kickstart-17 ├── round c │ ├── A-large.in │ ├── A-small-attempt0.in │ ├── A-small.cpp │ ├── B-large.in │ ├── B-small-attempt0.in │ ├── B-small-attempt1.in │ ├── B-small-attempt2.in │ ├── B-small-attempt3.in │ ├── B-small.cpp │ ├── C-large.in │ ├── C-small-attempt0.in │ ├── C-small.cpp │ ├── D-small-attempt0.in │ └── D-small.cpp └── round f │ ├── A-large.in │ ├── A-small-attempt0.in │ ├── A-small.cpp │ ├── B-large.in │ ├── B-small-attempt0.in │ ├── B-small-attempt1.in │ ├── B-small.cpp │ ├── C-small-attempt0.in │ ├── C-small.cpp │ ├── D-generator.cpp │ ├── D-large.in │ ├── D-small-attempt0.in │ └── D-small.cpp ├── programming templates ├── Circles.cpp ├── Enumerating_MIS.cpp ├── Floyd_Warshall.cpp ├── Heavy_Light_Decomposition.cpp ├── Knapsack.cpp ├── LCA.cpp ├── LCS_dp.cpp ├── articulate_points.cpp ├── bfs_template.cpp ├── bitmask_template.cpp ├── connected_components.cpp ├── dfs_template.cpp ├── diameter_of_a_tree.cpp ├── dijkstras.cpp ├── divisorsOfAllNumbers.cpp ├── enumerating_subsequences.cpp ├── euler_totient.cpp ├── factorialMod.cpp ├── fasterPartitionProblem.cpp ├── fibonacci_matrix_logn.cpp ├── firstDigitProduct.cpp ├── graph_matrix_representation.cpp ├── kadane.cpp ├── lagranges_square_theorem.cpp ├── main_template.cpp ├── matrixTranspose.cpp ├── max_key_IndependentSet.cpp ├── multiplicative_Modular_Inverse.cpp ├── nCk.cpp ├── no_palindromic_subsequence.cpp ├── partition problem.cpp ├── point&ray.cpp ├── rank_a_tree.cpp ├── root_unrooted_tree.cpp ├── segment_trees.cpp ├── segment_trees_lazy_propagation.cpp ├── sieve_of_eratosthenes.cpp ├── sliding_Window_Maximum_1D.cpp ├── sliding_Window_Maximum_2D.cpp └── sumsubMatrix.cpp └── topcoder ├── BuildStrings.cpp ├── FrogSquare.cpp ├── StepsConstruct.cpp ├── armorup.cpp ├── poison.cpp └── sol.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/.gitignore -------------------------------------------------------------------------------- /apac/round 1b/A-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1b/A-large.in -------------------------------------------------------------------------------- /apac/round 1b/A-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1b/A-small-attempt0.in -------------------------------------------------------------------------------- /apac/round 1b/A-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1b/A-small.cpp -------------------------------------------------------------------------------- /apac/round 1b/B-largecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1b/B-largecode.cpp -------------------------------------------------------------------------------- /apac/round 1b/B-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1b/B-small-attempt0.in -------------------------------------------------------------------------------- /apac/round 1b/B-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1b/B-small.cpp -------------------------------------------------------------------------------- /apac/round 1b/C-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1b/C-small-attempt0.in -------------------------------------------------------------------------------- /apac/round 1b/C-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1b/C-small.cpp -------------------------------------------------------------------------------- /apac/round 1b/sub-src-3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1b/sub-src-3.zip -------------------------------------------------------------------------------- /apac/round 1e/A-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1e/A-large.in -------------------------------------------------------------------------------- /apac/round 1e/A-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1e/A-output.txt -------------------------------------------------------------------------------- /apac/round 1e/A-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1e/A-small-attempt0.in -------------------------------------------------------------------------------- /apac/round 1e/A-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1e/A-small.cpp -------------------------------------------------------------------------------- /apac/round 1e/B-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1e/B-large.in -------------------------------------------------------------------------------- /apac/round 1e/B-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1e/B-output.txt -------------------------------------------------------------------------------- /apac/round 1e/B-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1e/B-small-attempt0.in -------------------------------------------------------------------------------- /apac/round 1e/B-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1e/B-small.cpp -------------------------------------------------------------------------------- /apac/round 1e/C-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1e/C-large.in -------------------------------------------------------------------------------- /apac/round 1e/C-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1e/C-small-attempt0.in -------------------------------------------------------------------------------- /apac/round 1e/C-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round 1e/C-small.cpp -------------------------------------------------------------------------------- /apac/round1d/A-small-attempt0.in: -------------------------------------------------------------------------------- 1 | 2 2 | 2 1 3 | 3 1 4 | -------------------------------------------------------------------------------- /apac/round1d/A-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round1d/A-small.cpp -------------------------------------------------------------------------------- /apac/round1d/A-small.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apac/round1d/B-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round1d/B-large.in -------------------------------------------------------------------------------- /apac/round1d/B-largecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round1d/B-largecode.cpp -------------------------------------------------------------------------------- /apac/round1d/B-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round1d/B-small-attempt0.in -------------------------------------------------------------------------------- /apac/round1d/B-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round1d/B-small.cpp -------------------------------------------------------------------------------- /apac/round1d/C-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round1d/C-large.in -------------------------------------------------------------------------------- /apac/round1d/C-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round1d/C-small.cpp -------------------------------------------------------------------------------- /apac/round1d/D-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round1d/D-small-attempt0.in -------------------------------------------------------------------------------- /apac/round1d/D-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round1d/D-small.cpp -------------------------------------------------------------------------------- /apac/round1d/Vote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/apac/round1d/Vote.cpp -------------------------------------------------------------------------------- /codechef/ACMIND17/COMPEXP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/ACMIND17/COMPEXP.cpp -------------------------------------------------------------------------------- /codechef/ACMIND17/EQUALMOD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/ACMIND17/EQUALMOD.cpp -------------------------------------------------------------------------------- /codechef/ACMIND17/ORDTEAMS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/ACMIND17/ORDTEAMS.cpp -------------------------------------------------------------------------------- /codechef/April Challenge 17/CHEFDIV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/April Challenge 17/CHEFDIV.cpp -------------------------------------------------------------------------------- /codechef/April Challenge 17/CLIQUED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/April Challenge 17/CLIQUED.cpp -------------------------------------------------------------------------------- /codechef/April Challenge 17/DISHLIFE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/April Challenge 17/DISHLIFE.cpp -------------------------------------------------------------------------------- /codechef/April Challenge 17/ROWSOLD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/April Challenge 17/ROWSOLD.cpp -------------------------------------------------------------------------------- /codechef/April Challenge 17/SIMDISH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/April Challenge 17/SIMDISH.cpp -------------------------------------------------------------------------------- /codechef/April Challenge 17/SMARKET.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/April Challenge 17/SMARKET.cpp -------------------------------------------------------------------------------- /codechef/August Challenge 16/CHCHCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/August Challenge 16/CHCHCL.cpp -------------------------------------------------------------------------------- /codechef/August Challenge 16/CHEFCRUN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/August Challenge 16/CHEFCRUN.cpp -------------------------------------------------------------------------------- /codechef/August Challenge 16/CHEFCRUNutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/August Challenge 16/CHEFCRUNutil.cpp -------------------------------------------------------------------------------- /codechef/August Challenge 16/CHEFRRUN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/August Challenge 16/CHEFRRUN.cpp -------------------------------------------------------------------------------- /codechef/August Challenge 16/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/August Challenge 16/input.txt -------------------------------------------------------------------------------- /codechef/August Challenge 17/CHEFFA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/August Challenge 17/CHEFFA.cpp -------------------------------------------------------------------------------- /codechef/August Challenge 17/CHEFMOVR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/August Challenge 17/CHEFMOVR.cpp -------------------------------------------------------------------------------- /codechef/August Challenge 17/GCAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/August Challenge 17/GCAC.cpp -------------------------------------------------------------------------------- /codechef/August Challenge 17/PALINGAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/August Challenge 17/PALINGAM.cpp -------------------------------------------------------------------------------- /codechef/August Challenge 17/RAINBOWA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/August Challenge 17/RAINBOWA.cpp -------------------------------------------------------------------------------- /codechef/August Challenge 17/STRINGRA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/August Challenge 17/STRINGRA.cpp -------------------------------------------------------------------------------- /codechef/August Lunchtime 16/ALPHABET.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/August Lunchtime 16/ALPHABET.cpp -------------------------------------------------------------------------------- /codechef/August Lunchtime 16/LFSTACK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/August Lunchtime 16/LFSTACK.cpp -------------------------------------------------------------------------------- /codechef/BITFLIT/APJSWG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/BITFLIT/APJSWG.cpp -------------------------------------------------------------------------------- /codechef/BITFLIT/JUMBSTRY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/BITFLIT/JUMBSTRY.cpp -------------------------------------------------------------------------------- /codechef/BITFLIT/SPECRK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/BITFLIT/SPECRK.cpp -------------------------------------------------------------------------------- /codechef/BITFLIT/SPECRK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/BITFLIT/SPECRK.py -------------------------------------------------------------------------------- /codechef/BITFLIT/THESAV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/BITFLIT/THESAV.cpp -------------------------------------------------------------------------------- /codechef/BYD1610.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/BYD1610.cpp -------------------------------------------------------------------------------- /codechef/CAKEDOOM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/CAKEDOOM.cpp -------------------------------------------------------------------------------- /codechef/CB03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/CB03.cpp -------------------------------------------------------------------------------- /codechef/CHEFARRP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/CHEFARRP.cpp -------------------------------------------------------------------------------- /codechef/CHEFSPL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/CHEFSPL.cpp -------------------------------------------------------------------------------- /codechef/CHEFST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/CHEFST.py -------------------------------------------------------------------------------- /codechef/COOK89/BTAR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/COOK89/BTAR.cpp -------------------------------------------------------------------------------- /codechef/COOK89/FBMT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/COOK89/FBMT.cpp -------------------------------------------------------------------------------- /codechef/COOK89/MINSUBAR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/COOK89/MINSUBAR.cpp -------------------------------------------------------------------------------- /codechef/COOK90/MAGA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/COOK90/MAGA.cpp -------------------------------------------------------------------------------- /codechef/COOK90/MULTHREE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/COOK90/MULTHREE.cpp -------------------------------------------------------------------------------- /codechef/COOK90/SURVIVE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/COOK90/SURVIVE.cpp -------------------------------------------------------------------------------- /codechef/COOK91/CARRAY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/COOK91/CARRAY.cpp -------------------------------------------------------------------------------- /codechef/COOK91/CCOOK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/COOK91/CCOOK.cpp -------------------------------------------------------------------------------- /codechef/COOK91/CSUBSEQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/COOK91/CSUBSEQ.cpp -------------------------------------------------------------------------------- /codechef/COOK91/CTHREE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/COOK91/CTHREE.cpp -------------------------------------------------------------------------------- /codechef/COSH1503.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/COSH1503.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 16/ALEXROSE-naive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 16/ALEXROSE-naive.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 16/ANKTRAIN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 16/ANKTRAIN.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 16/BASE-naive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 16/BASE-naive.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 16/BASE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 16/BASE.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 16/KIRLAB-naive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 16/KIRLAB-naive.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 16/KIRLAB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 16/KIRLAB.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 16/KIRLAB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 16/KIRLAB.py -------------------------------------------------------------------------------- /codechef/December Challenge 16/KTHMAX-misunderstood_approach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 16/KTHMAX-misunderstood_approach.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 16/KTHMAX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 16/KTHMAX.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 16/THREECOL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 16/THREECOL.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 17/CHEFEXQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 17/CHEFEXQ.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 17/CHEFHAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 17/CHEFHAM.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 17/CHEFUNI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 17/CHEFUNI.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 17/CPLAY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 17/CPLAY.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 17/GIT01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 17/GIT01.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 17/REDBLUE-naive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 17/REDBLUE-naive.cpp -------------------------------------------------------------------------------- /codechef/December Challenge 17/REDBLUE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 17/REDBLUE.py -------------------------------------------------------------------------------- /codechef/December Challenge 17/VK18.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/December Challenge 17/VK18.cpp -------------------------------------------------------------------------------- /codechef/February Challenge 17/CHEFAPAR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/February Challenge 17/CHEFAPAR.cpp -------------------------------------------------------------------------------- /codechef/February Challenge 17/GERMANDE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/February Challenge 17/GERMANDE.cpp -------------------------------------------------------------------------------- /codechef/February Challenge 17/MAKETRI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/February Challenge 17/MAKETRI.cpp -------------------------------------------------------------------------------- /codechef/GCDQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/GCDQ.cpp -------------------------------------------------------------------------------- /codechef/JAN18/KCON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/JAN18/KCON.cpp -------------------------------------------------------------------------------- /codechef/JAN18/MAXSC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/JAN18/MAXSC.cpp -------------------------------------------------------------------------------- /codechef/JAN18/MONSTER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/JAN18/MONSTER.cpp -------------------------------------------------------------------------------- /codechef/JAN18/PRTITION.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/JAN18/PRTITION.cpp -------------------------------------------------------------------------------- /codechef/JAN18/RECTANGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/JAN18/RECTANGL.cpp -------------------------------------------------------------------------------- /codechef/JAN18/STRMRG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/JAN18/STRMRG.cpp -------------------------------------------------------------------------------- /codechef/January Challenge 17/CAPIMOVE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/January Challenge 17/CAPIMOVE.cpp -------------------------------------------------------------------------------- /codechef/January Challenge 17/CATSDOGS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/January Challenge 17/CATSDOGS.cpp -------------------------------------------------------------------------------- /codechef/January Challenge 17/CHEFCIRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/January Challenge 17/CHEFCIRC.cpp -------------------------------------------------------------------------------- /codechef/January Challenge 17/DIGITSEP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/January Challenge 17/DIGITSEP.cpp -------------------------------------------------------------------------------- /codechef/January Challenge 17/FOURSQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/January Challenge 17/FOURSQ.cpp -------------------------------------------------------------------------------- /codechef/January Challenge 17/RESERVOI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/January Challenge 17/RESERVOI.cpp -------------------------------------------------------------------------------- /codechef/January Challenge 17/TOURISTS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/January Challenge 17/TOURISTS.cpp -------------------------------------------------------------------------------- /codechef/July long Challenge 17/EXPTREE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/July long Challenge 17/EXPTREE.cpp -------------------------------------------------------------------------------- /codechef/July long Challenge 17/IPCTRAIN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/July long Challenge 17/IPCTRAIN.cpp -------------------------------------------------------------------------------- /codechef/July long Challenge 17/PSHTTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/July long Challenge 17/PSHTTR.cpp -------------------------------------------------------------------------------- /codechef/June Challenge 16/BINOP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Challenge 16/BINOP.cpp -------------------------------------------------------------------------------- /codechef/June Challenge 16/CHCOINSG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Challenge 16/CHCOINSG.cpp -------------------------------------------------------------------------------- /codechef/June Challenge 16/CHEARMY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Challenge 16/CHEARMY.cpp -------------------------------------------------------------------------------- /codechef/June Challenge 16/CHEFARK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Challenge 16/CHEFARK.cpp -------------------------------------------------------------------------------- /codechef/June Challenge 16/CHSQARR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Challenge 16/CHSQARR.cpp -------------------------------------------------------------------------------- /codechef/June Challenge 16/DEVARRAY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Challenge 16/DEVARRAY.cpp -------------------------------------------------------------------------------- /codechef/June Challenge 16/FRJUMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Challenge 16/FRJUMP.cpp -------------------------------------------------------------------------------- /codechef/June Challenge 17/GOODSET.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Challenge 17/GOODSET.cpp -------------------------------------------------------------------------------- /codechef/June Challenge 17/NE001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Challenge 17/NE001.cpp -------------------------------------------------------------------------------- /codechef/June Challenge 17/PRMQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Challenge 17/PRMQ.cpp -------------------------------------------------------------------------------- /codechef/June Challenge 17/SUMQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Challenge 17/SUMQ.cpp -------------------------------------------------------------------------------- /codechef/June Challenge 17/UNIONSET.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Challenge 17/UNIONSET.cpp -------------------------------------------------------------------------------- /codechef/June Challenge 17/XENRANK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Challenge 17/XENRANK.cpp -------------------------------------------------------------------------------- /codechef/June Cook-Off 17/ADACRA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Cook-Off 17/ADACRA.cpp -------------------------------------------------------------------------------- /codechef/June Cook-Off 17/ADADET.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Cook-Off 17/ADADET.cpp -------------------------------------------------------------------------------- /codechef/June Cook-Off 17/CENTREE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Cook-Off 17/CENTREE.cpp -------------------------------------------------------------------------------- /codechef/June Cook-Off 17/KNICOV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Cook-Off 17/KNICOV.cpp -------------------------------------------------------------------------------- /codechef/June Cook-Off 17/SNACKUP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/June Cook-Off 17/SNACKUP.cpp -------------------------------------------------------------------------------- /codechef/KOL15B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/KOL15B.cpp -------------------------------------------------------------------------------- /codechef/KTTABLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/KTTABLE.cpp -------------------------------------------------------------------------------- /codechef/MAXISUM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/MAXISUM.cpp -------------------------------------------------------------------------------- /codechef/MMSUM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/MMSUM.cpp -------------------------------------------------------------------------------- /codechef/MTRNSFRM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/MTRNSFRM.cpp -------------------------------------------------------------------------------- /codechef/May Challenge 16/CHBLLS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/May Challenge 16/CHBLLS.cpp -------------------------------------------------------------------------------- /codechef/May Challenge 16/CHEFMATH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/May Challenge 16/CHEFMATH.cpp -------------------------------------------------------------------------------- /codechef/May Challenge 16/CHEFNUM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/May Challenge 16/CHEFNUM.cpp -------------------------------------------------------------------------------- /codechef/May Challenge 16/CHEFSOC2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/May Challenge 16/CHEFSOC2.cpp -------------------------------------------------------------------------------- /codechef/May Challenge 16/FORESTGA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/May Challenge 16/FORESTGA.cpp -------------------------------------------------------------------------------- /codechef/May Challenge 16/LADDU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/May Challenge 16/LADDU.cpp -------------------------------------------------------------------------------- /codechef/May Challenge 16/SEAGCD2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/May Challenge 16/SEAGCD2.cpp -------------------------------------------------------------------------------- /codechef/May Challenge 16/bruteCHEFMATH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/May Challenge 16/bruteCHEFMATH.cpp -------------------------------------------------------------------------------- /codechef/May Challenge 16/bruteSEAGCD2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/May Challenge 16/bruteSEAGCD2.cpp -------------------------------------------------------------------------------- /codechef/November Chellenge 17/CHEFHPAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/November Chellenge 17/CHEFHPAL.cpp -------------------------------------------------------------------------------- /codechef/November Chellenge 17/CSUBQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/November Chellenge 17/CSUBQ.cpp -------------------------------------------------------------------------------- /codechef/November Chellenge 17/PERPALIN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/November Chellenge 17/PERPALIN.cpp -------------------------------------------------------------------------------- /codechef/November Chellenge 17/SEGPROD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/November Chellenge 17/SEGPROD.cpp -------------------------------------------------------------------------------- /codechef/November Lunch Time 16/CHEFSSET.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/November Lunch Time 16/CHEFSSET.cpp -------------------------------------------------------------------------------- /codechef/November Lunch Time 16/CHEFSTUD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/November Lunch Time 16/CHEFSTUD.cpp -------------------------------------------------------------------------------- /codechef/OCT17/CHEFCCYL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/OCT17/CHEFCCYL.cpp -------------------------------------------------------------------------------- /codechef/OCT17/MEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/OCT17/MEX.cpp -------------------------------------------------------------------------------- /codechef/OCT17/PERFCONT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/OCT17/PERFCONT.cpp -------------------------------------------------------------------------------- /codechef/OCT17/temp_output0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codechef/OCT17/temp_output1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codechef/OCT17/temp_output2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codechef/ORACLCS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/ORACLCS.py -------------------------------------------------------------------------------- /codechef/October Challenge 16/BGQRS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/October Challenge 16/BGQRS.cpp -------------------------------------------------------------------------------- /codechef/October Challenge 16/CHDOGS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/October Challenge 16/CHDOGS.cpp -------------------------------------------------------------------------------- /codechef/October Challenge 16/CHEFKEY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/October Challenge 16/CHEFKEY.cpp -------------------------------------------------------------------------------- /codechef/October Challenge 16/CHEFTWOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/October Challenge 16/CHEFTWOS.cpp -------------------------------------------------------------------------------- /codechef/October Challenge 16/FENWITER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/October Challenge 16/FENWITER.cpp -------------------------------------------------------------------------------- /codechef/October Challenge 16/GEOCHEAT_naive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/October Challenge 16/GEOCHEAT_naive.cpp -------------------------------------------------------------------------------- /codechef/October Challenge 16/SEARRI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/October Challenge 16/SEARRI.cpp -------------------------------------------------------------------------------- /codechef/October Challenge 16/input.txt: -------------------------------------------------------------------------------- 1 | 3 1 1 2 | 1 2 3 3 | -------------------------------------------------------------------------------- /codechef/PLANEDIV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/PLANEDIV.py -------------------------------------------------------------------------------- /codechef/SOPC2017/OPC1702.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SOPC2017/OPC1702.cpp -------------------------------------------------------------------------------- /codechef/SOPC2017/OPC1703.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SOPC2017/OPC1703.cpp -------------------------------------------------------------------------------- /codechef/STRPALIN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/STRPALIN.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 16/CHEFKC.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | int main(){ 4 | 5 | return 0; 6 | } -------------------------------------------------------------------------------- /codechef/September Challenge 16/CHFNFRN-brute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 16/CHFNFRN-brute.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 16/CHFNFRN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 16/CHFNFRN.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 16/CHMTDV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 16/CHMTDV.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 16/DIVMAC-naive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 16/DIVMAC-naive.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 16/DIVMAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 16/DIVMAC.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 16/JTREE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 16/JTREE.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 16/LEXOPAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 16/LEXOPAL.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 16/LONGSEQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 16/LONGSEQ.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 16/RESCALC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 16/RESCALC.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 16/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 16/input.txt -------------------------------------------------------------------------------- /codechef/September Challenge 16/newDIVMAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 16/newDIVMAC.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 17/CHEFPDIG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 17/CHEFPDIG.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 17/CHEFSUM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 17/CHEFSUM.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 17/FILLMTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 17/FILLMTR.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 17/MINPERM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 17/MINPERM.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 17/SEACO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 17/SEACO.cpp -------------------------------------------------------------------------------- /codechef/September Challenge 17/WEASELTX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Challenge 17/WEASELTX.cpp -------------------------------------------------------------------------------- /codechef/September Cook Off 16/TAASEQ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Cook Off 16/TAASEQ.cpp -------------------------------------------------------------------------------- /codechef/September Cook Off 16/TACNTSTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Cook Off 16/TACNTSTR.cpp -------------------------------------------------------------------------------- /codechef/September Cook Off 16/TALAZY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/September Cook Off 16/TALAZY.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-16/SnackDown elimination round/ALLIANCE.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codechef/SnackDown-16/SnackDown elimination round/ARITHM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-16/SnackDown elimination round/ARITHM.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-16/SnackDown elimination round/COLTREE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-16/SnackDown elimination round/COLTREE.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-16/SnackDown elimination round/RWALK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-16/SnackDown elimination round/RWALK.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-16/Snackdown Pre-Elimination round A/MAKELIS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-16/Snackdown Pre-Elimination round A/MAKELIS.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-16/Snackdown Pre-Elimination round A/SUBSEG2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-16/Snackdown Pre-Elimination round A/SUBSEG2.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-16/Snackdown Pre-Elimination round B/ENTEXAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-16/Snackdown Pre-Elimination round B/ENTEXAM.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-16/Snackdown Pre-Elimination round B/MMPROD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-16/Snackdown Pre-Elimination round B/MMPROD.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-17/Elimination Round 17/ANCESTOR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-17/Elimination Round 17/ANCESTOR.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-17/Elimination Round 17/MEXDIV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-17/Elimination Round 17/MEXDIV.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-17/Elimination Round 17/PLUSMUL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-17/Elimination Round 17/PLUSMUL.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-17/Pre-Elimination round A/CONSESNK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-17/Pre-Elimination round A/CONSESNK.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-17/Pre-Elimination round A/PROTEPOI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-17/Pre-Elimination round A/PROTEPOI.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-17/Pre-Elimination round A/SNTEMPLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-17/Pre-Elimination round A/SNTEMPLE.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-17/Pre-Elimination round B/SNCOUP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-17/Pre-Elimination round B/SNCOUP.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-17/Pre-Elimination round B/SNDISCUS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-17/Pre-Elimination round B/SNDISCUS.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-17/Pre-Elimination round B/SNGRAPH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-17/Pre-Elimination round B/SNGRAPH.cpp -------------------------------------------------------------------------------- /codechef/SnackDown-17/Pre-Elimination round B/SNSOCIAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/SnackDown-17/Pre-Elimination round B/SNSOCIAL.cpp -------------------------------------------------------------------------------- /codechef/TSTIND17/CHN05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/TSTIND17/CHN05.cpp -------------------------------------------------------------------------------- /codechef/TSTIND17/TYTACTIC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/TSTIND17/TYTACTIC.cpp -------------------------------------------------------------------------------- /codechef/bruteMMSUM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/bruteMMSUM.cpp -------------------------------------------------------------------------------- /codechef/march long challenge 17/BANDMATR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/march long challenge 17/BANDMATR.cpp -------------------------------------------------------------------------------- /codechef/march long challenge 17/EXTRAN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/march long challenge 17/EXTRAN.cpp -------------------------------------------------------------------------------- /codechef/march long challenge 17/PSHTBRTH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/march long challenge 17/PSHTBRTH.cpp -------------------------------------------------------------------------------- /codechef/march long challenge 17/SCHEDULE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/march long challenge 17/SCHEDULE.cpp -------------------------------------------------------------------------------- /codechef/march long challenge 17/XENTASK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/march long challenge 17/XENTASK.cpp -------------------------------------------------------------------------------- /codechef/prefix_power_of_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/prefix_power_of_2.py -------------------------------------------------------------------------------- /codechef/shaastraOPc/SOPC1501.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/shaastraOPc/SOPC1501.cpp -------------------------------------------------------------------------------- /codechef/shaastraOPc/SOPC1502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/shaastraOPc/SOPC1502.cpp -------------------------------------------------------------------------------- /codechef/shaastraOPc/SOPC1503.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/shaastraOPc/SOPC1503.cpp -------------------------------------------------------------------------------- /codechef/shaastraOPc/SOPC1504.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/shaastraOPc/SOPC1504.cpp -------------------------------------------------------------------------------- /codechef/shaastraOPc/SOPC1505.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/shaastraOPc/SOPC1505.cpp -------------------------------------------------------------------------------- /codechef/shaastraOPc/SOPC1506.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/shaastraOPc/SOPC1506.cpp -------------------------------------------------------------------------------- /codechef/shaastraOPc/SPC1601.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/shaastraOPc/SPC1601.cpp -------------------------------------------------------------------------------- /codechef/shaastraOPc/SPC1602.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codechef/shaastraOPc/SPC1602.cpp -------------------------------------------------------------------------------- /codefights/CodeLeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codefights/CodeLeader.cpp -------------------------------------------------------------------------------- /codefights/May_Marathon/hello world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codefights/May_Marathon/hello world.cpp -------------------------------------------------------------------------------- /codefights/christmastree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codefights/christmastree.cpp -------------------------------------------------------------------------------- /codefights/davinci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codefights/davinci.cpp -------------------------------------------------------------------------------- /codefights/even.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codefights/even.cpp -------------------------------------------------------------------------------- /codefights/fibonaccicodingIII.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codefights/fibonaccicodingIII.cpp -------------------------------------------------------------------------------- /codefights/fractalMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codefights/fractalMatrix.cpp -------------------------------------------------------------------------------- /codefights/poke_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codefights/poke_game.cpp -------------------------------------------------------------------------------- /codefights/vending_machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codefights/vending_machine.cpp -------------------------------------------------------------------------------- /codefights/waterFilling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codefights/waterFilling.cpp -------------------------------------------------------------------------------- /codeforces/1009A-Game_shopping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/1009A-Game_shopping.cpp -------------------------------------------------------------------------------- /codeforces/1009B-Minimum_terenary_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/1009B-Minimum_terenary_string.cpp -------------------------------------------------------------------------------- /codeforces/1009C-Annoying_present.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/1009C-Annoying_present.cpp -------------------------------------------------------------------------------- /codeforces/1009D-Relatively_prime_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/1009D-Relatively_prime_graph.cpp -------------------------------------------------------------------------------- /codeforces/1009E-Intercity_Travelling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/1009E-Intercity_Travelling.cpp -------------------------------------------------------------------------------- /codeforces/101510B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/101510B.cpp -------------------------------------------------------------------------------- /codeforces/101510D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/101510D.cpp -------------------------------------------------------------------------------- /codeforces/110A-nearly_lucky_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/110A-nearly_lucky_number.cpp -------------------------------------------------------------------------------- /codeforces/119A-epic_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/119A-epic_game.cpp -------------------------------------------------------------------------------- /codeforces/122A-Lucky_division.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/122A-Lucky_division.cpp -------------------------------------------------------------------------------- /codeforces/131A-caps_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/131A-caps_lock.cpp -------------------------------------------------------------------------------- /codeforces/136A-presents.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | int main() 4 | { 5 | return 0; 6 | } -------------------------------------------------------------------------------- /codeforces/148A-insomnia_cure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/148A-insomnia_cure.cpp -------------------------------------------------------------------------------- /codeforces/148A-insomnia_cure.cpp~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/148A-insomnia_cure.cpp~ -------------------------------------------------------------------------------- /codeforces/158B-taxi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/158B-taxi.cpp -------------------------------------------------------------------------------- /codeforces/208A-Dubstep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/208A-Dubstep.cpp -------------------------------------------------------------------------------- /codeforces/231A-Team.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/231A-Team.cpp -------------------------------------------------------------------------------- /codeforces/236A-boyorgirl.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | int main() 4 | { 5 | 6 | return 0; 7 | } -------------------------------------------------------------------------------- /codeforces/271A-beautiful_year.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/271A-beautiful_year.cpp -------------------------------------------------------------------------------- /codeforces/282A-Bit++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/282A-Bit++.cpp -------------------------------------------------------------------------------- /codeforces/344A-magnets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/344A-magnets.cpp -------------------------------------------------------------------------------- /codeforces/383A-Arpas_hard_exam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/383A-Arpas_hard_exam.cpp -------------------------------------------------------------------------------- /codeforces/383B-Arpas_obvious_problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/383B-Arpas_obvious_problem.cpp -------------------------------------------------------------------------------- /codeforces/383C-arpas_loud_owf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/383C-arpas_loud_owf.cpp -------------------------------------------------------------------------------- /codeforces/383D-arpas_weak_amphitheatre.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/383D-arpas_weak_amphitheatre.cpp -------------------------------------------------------------------------------- /codeforces/385A-hongcow_learns_cyclic_shift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/385A-hongcow_learns_cyclic_shift.cpp -------------------------------------------------------------------------------- /codeforces/385B-hongcow_solves_puzzle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/385B-hongcow_solves_puzzle.cpp -------------------------------------------------------------------------------- /codeforces/385C-hongcow_builds_a_nation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/385C-hongcow_builds_a_nation.cpp -------------------------------------------------------------------------------- /codeforces/420A-startup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/420A-startup.cpp -------------------------------------------------------------------------------- /codeforces/425A-sasha_and_sticks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/425A-sasha_and_sticks.cpp -------------------------------------------------------------------------------- /codeforces/425B-petya_and_exam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/425B-petya_and_exam.cpp -------------------------------------------------------------------------------- /codeforces/425D-Misha_grisha_and_underground.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/425D-Misha_grisha_and_underground.cpp -------------------------------------------------------------------------------- /codeforces/451A-game_with_sticks.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | int main() 4 | { 5 | 6 | return 0; 7 | } -------------------------------------------------------------------------------- /codeforces/460A-vasya&socks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/460A-vasya&socks.cpp -------------------------------------------------------------------------------- /codeforces/467A-george_and_accomodation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/467A-george_and_accomodation.cpp -------------------------------------------------------------------------------- /codeforces/472A-learn_from_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/472A-learn_from_math.cpp -------------------------------------------------------------------------------- /codeforces/540A-combination_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/540A-combination_lock.cpp -------------------------------------------------------------------------------- /codeforces/540C-Ice_cave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/540C-Ice_cave.cpp -------------------------------------------------------------------------------- /codeforces/567A-lineland_mail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/567A-lineland_mail.cpp -------------------------------------------------------------------------------- /codeforces/567B-berland_national_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/567B-berland_national_library.cpp -------------------------------------------------------------------------------- /codeforces/570A-elections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/570A-elections.cpp -------------------------------------------------------------------------------- /codeforces/570B-simple_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/570B-simple_game.cpp -------------------------------------------------------------------------------- /codeforces/570C-replacement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/570C-replacement.cpp -------------------------------------------------------------------------------- /codeforces/570D-tree_requests.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | int main() 4 | { 5 | 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /codeforces/570d-tree_requests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codeforces/573B-bear_blocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/573B-bear_blocks.cpp -------------------------------------------------------------------------------- /codeforces/58A-chat_room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/58A-chat_room.cpp -------------------------------------------------------------------------------- /codeforces/606B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/606B.cpp -------------------------------------------------------------------------------- /codeforces/606C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/606C.cpp -------------------------------------------------------------------------------- /codeforces/610A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/610A.cpp -------------------------------------------------------------------------------- /codeforces/610B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/610B.cpp -------------------------------------------------------------------------------- /codeforces/656A-Da_Vinci_Powers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/656A-Da_Vinci_Powers.cpp -------------------------------------------------------------------------------- /codeforces/656A-Da_Vinci_Powers.py: -------------------------------------------------------------------------------- 1 | x = input() 2 | print 2**x 3 | -------------------------------------------------------------------------------- /codeforces/656G-You're_a_professional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/656G-You're_a_professional.cpp -------------------------------------------------------------------------------- /codeforces/675A-Infinite_sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/675A-Infinite_sequence.cpp -------------------------------------------------------------------------------- /codeforces/675B-Restoring_painting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/675B-Restoring_painting.cpp -------------------------------------------------------------------------------- /codeforces/675C-Money_Transfers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/675C-Money_Transfers.cpp -------------------------------------------------------------------------------- /codeforces/675D-Tree_Construction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/675D-Tree_Construction.cpp -------------------------------------------------------------------------------- /codeforces/676A-Nicholas_and_permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/676A-Nicholas_and_permutation.cpp -------------------------------------------------------------------------------- /codeforces/676B-Pyramid_of_glasses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/676B-Pyramid_of_glasses.cpp -------------------------------------------------------------------------------- /codeforces/676C-Vasya_and_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/676C-Vasya_and_String.cpp -------------------------------------------------------------------------------- /codeforces/680A-Bear_and_Five_cards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/680A-Bear_and_Five_cards.cpp -------------------------------------------------------------------------------- /codeforces/680B-Bear_and_finding_criminals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/680B-Bear_and_finding_criminals.cpp -------------------------------------------------------------------------------- /codeforces/680C-Bear_and_prime100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/680C-Bear_and_prime100.cpp -------------------------------------------------------------------------------- /codeforces/680D-Bear_and_tower_of_cubes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/680D-Bear_and_tower_of_cubes.cpp -------------------------------------------------------------------------------- /codeforces/680bruteD-Bear_and_tower_of_cubes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/680bruteD-Bear_and_tower_of_cubes.cpp -------------------------------------------------------------------------------- /codeforces/702A-Maximum_Increasse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/702A-Maximum_Increasse.cpp -------------------------------------------------------------------------------- /codeforces/702B-Powers_of_Two.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/702B-Powers_of_Two.cpp -------------------------------------------------------------------------------- /codeforces/702C-Cellular_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/702C-Cellular_Network.cpp -------------------------------------------------------------------------------- /codeforces/709A-juicer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/709A-juicer.cpp -------------------------------------------------------------------------------- /codeforces/709B-Checkpoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/709B-Checkpoints.cpp -------------------------------------------------------------------------------- /codeforces/709C-Letters_Cyclic_shift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/709C-Letters_Cyclic_shift.cpp -------------------------------------------------------------------------------- /codeforces/709D-Recover_the_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/709D-Recover_the_string.cpp -------------------------------------------------------------------------------- /codeforces/712A-memory_and_crow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/712A-memory_and_crow.cpp -------------------------------------------------------------------------------- /codeforces/712B-memory_and_trident.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/712B-memory_and_trident.cpp -------------------------------------------------------------------------------- /codeforces/712C-memory_and_deevolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/712C-memory_and_deevolution.cpp -------------------------------------------------------------------------------- /codeforces/714A-meeting_of_old_friends.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/714A-meeting_of_old_friends.cpp -------------------------------------------------------------------------------- /codeforces/714B-Filya_and_homework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/714B-Filya_and_homework.cpp -------------------------------------------------------------------------------- /codeforces/714C-Sonya_and_queries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/714C-Sonya_and_queries.cpp -------------------------------------------------------------------------------- /codeforces/714D-Searching_rectangles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/714D-Searching_rectangles.cpp -------------------------------------------------------------------------------- /codeforces/731A-Night_at_the_museum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/731A-Night_at_the_museum.cpp -------------------------------------------------------------------------------- /codeforces/731B-Coupons_and_discounts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/731B-Coupons_and_discounts.cpp -------------------------------------------------------------------------------- /codeforces/731C-Socks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/731C-Socks.cpp -------------------------------------------------------------------------------- /codeforces/732A-Buy_a_shovel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/732A-Buy_a_shovel.cpp -------------------------------------------------------------------------------- /codeforces/732B-Cormen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/732B-Cormen.cpp -------------------------------------------------------------------------------- /codeforces/732C-Sanatorium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/732C-Sanatorium.cpp -------------------------------------------------------------------------------- /codeforces/735A-Ostap_and_grasshopper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/735A-Ostap_and_grasshopper.cpp -------------------------------------------------------------------------------- /codeforces/735B-Urbanization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/735B-Urbanization.cpp -------------------------------------------------------------------------------- /codeforces/735C-Tennis_Championship.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/735C-Tennis_Championship.cpp -------------------------------------------------------------------------------- /codeforces/735D-Taxes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/735D-Taxes.cpp -------------------------------------------------------------------------------- /codeforces/754A-Lesha_array_splitting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/754A-Lesha_array_splitting.cpp -------------------------------------------------------------------------------- /codeforces/754B-Ilya_and_tic_tac_toe_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/754B-Ilya_and_tic_tac_toe_game.cpp -------------------------------------------------------------------------------- /codeforces/754C-Vladik_and_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/754C-Vladik_and_chat.py -------------------------------------------------------------------------------- /codeforces/755A-polandball_and_hypothesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/755A-polandball_and_hypothesis.cpp -------------------------------------------------------------------------------- /codeforces/755B-polandball_and_game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/755B-polandball_and_game.cpp -------------------------------------------------------------------------------- /codeforces/755C-polandball_and_forest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/755C-polandball_and_forest.cpp -------------------------------------------------------------------------------- /codeforces/755D-polandball_and_polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/755D-polandball_and_polygon.cpp -------------------------------------------------------------------------------- /codeforces/757A-Gotta_catch_em_all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/757A-Gotta_catch_em_all.cpp -------------------------------------------------------------------------------- /codeforces/757B-Bashs_big_day.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/757B-Bashs_big_day.cpp -------------------------------------------------------------------------------- /codeforces/757C-Felicity_is_coming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/757C-Felicity_is_coming.cpp -------------------------------------------------------------------------------- /codeforces/760A-petr_and_calendar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/760A-petr_and_calendar.cpp -------------------------------------------------------------------------------- /codeforces/760B-Frodo_and_pillows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/760B-Frodo_and_pillows.cpp -------------------------------------------------------------------------------- /codeforces/760C-Pavel_and_barbeque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/760C-Pavel_and_barbeque.cpp -------------------------------------------------------------------------------- /codeforces/760D-travel_card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/760D-travel_card.cpp -------------------------------------------------------------------------------- /codeforces/764A-Taymyr_is_calling_you.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/764A-Taymyr_is_calling_you.cpp -------------------------------------------------------------------------------- /codeforces/764B-Timofey_and_cubes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/764B-Timofey_and_cubes.cpp -------------------------------------------------------------------------------- /codeforces/764C-Timofey_and_a_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/764C-Timofey_and_a_tree.cpp -------------------------------------------------------------------------------- /codeforces/764D-Timofey_and_rectangels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/764D-Timofey_and_rectangels.cpp -------------------------------------------------------------------------------- /codeforces/789A-Anastasia_and_pebbles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/789A-Anastasia_and_pebbles.cpp -------------------------------------------------------------------------------- /codeforces/822A-bored_with_life.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/822A-bored_with_life.cpp -------------------------------------------------------------------------------- /codeforces/822B-Crossword_Solving.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/822B-Crossword_Solving.cpp -------------------------------------------------------------------------------- /codeforces/822C-pack_your_bags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/822C-pack_your_bags.cpp -------------------------------------------------------------------------------- /codeforces/822D-My_pretty_girl_noora.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/822D-My_pretty_girl_noora.cpp -------------------------------------------------------------------------------- /codeforces/828A-Restuarant_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/828A-Restuarant_tables.cpp -------------------------------------------------------------------------------- /codeforces/828B-Black_Square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/828B-Black_Square.cpp -------------------------------------------------------------------------------- /codeforces/828C-String_reconstruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/828C-String_reconstruction.cpp -------------------------------------------------------------------------------- /codeforces/828D-High_Load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/828D-High_Load.cpp -------------------------------------------------------------------------------- /codeforces/82A-double_cola.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/82A-double_cola.cpp -------------------------------------------------------------------------------- /codeforces/847A-Union_of_doubly_linked_lists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/847A-Union_of_doubly_linked_lists.cpp -------------------------------------------------------------------------------- /codeforces/847D-Dog_Show.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/847D-Dog_Show.cpp -------------------------------------------------------------------------------- /codeforces/847E-Packmen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/847E-Packmen.cpp -------------------------------------------------------------------------------- /codeforces/847H-Load_testing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/847H-Load_testing.cpp -------------------------------------------------------------------------------- /codeforces/847I-Noise_level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/847I-Noise_level.cpp -------------------------------------------------------------------------------- /codeforces/847K-Travel_cards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/847K-Travel_cards.cpp -------------------------------------------------------------------------------- /codeforces/847M-Weather_tomorrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/847M-Weather_tomorrow.cpp -------------------------------------------------------------------------------- /codeforces/895A-Pizza_separation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/895A-Pizza_separation.cpp -------------------------------------------------------------------------------- /codeforces/895B-XK_Segments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/895B-XK_Segments.cpp -------------------------------------------------------------------------------- /codeforces/897A-Scarborough_fair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/897A-Scarborough_fair.cpp -------------------------------------------------------------------------------- /codeforces/897B-Chthollys_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/897B-Chthollys_request.py -------------------------------------------------------------------------------- /codeforces/897C-Nephren_gives_a_riddle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/897C-Nephren_gives_a_riddle.cpp -------------------------------------------------------------------------------- /codeforces/897C-Nephren_gives_a_riddle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/897C-Nephren_gives_a_riddle.py -------------------------------------------------------------------------------- /codeforces/908A-CountingCards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/908A-CountingCards.cpp -------------------------------------------------------------------------------- /codeforces/908B-Buggy_Bot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/908B-Buggy_Bot.cpp -------------------------------------------------------------------------------- /codeforces/908C-Curling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/908C-Curling.cpp -------------------------------------------------------------------------------- /codeforces/911A-nearest_minimum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/911A-nearest_minimum.cpp -------------------------------------------------------------------------------- /codeforces/911B-Two_cakes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/911B-Two_cakes.cpp -------------------------------------------------------------------------------- /codeforces/911C-garland.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/911C-garland.cpp -------------------------------------------------------------------------------- /codeforces/911D-InversionCounting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/911D-InversionCounting.cpp -------------------------------------------------------------------------------- /codeforces/911E-Stack_sorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/911E-Stack_sorting.cpp -------------------------------------------------------------------------------- /codeforces/911F-Tree_Destruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/911F-Tree_Destruction.cpp -------------------------------------------------------------------------------- /codeforces/911G-Mass_change_querries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/911G-Mass_change_querries.cpp -------------------------------------------------------------------------------- /codeforces/912A-Tricky_alchemy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/912A-Tricky_alchemy.cpp -------------------------------------------------------------------------------- /codeforces/912B-New_years_eve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/912B-New_years_eve.cpp -------------------------------------------------------------------------------- /codeforces/912C-perun_ult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/912C-perun_ult.cpp -------------------------------------------------------------------------------- /codeforces/912D-Fishes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/912D-Fishes.cpp -------------------------------------------------------------------------------- /codeforces/916A-Jaime_And_alarm_snooze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/916A-Jaime_And_alarm_snooze.cpp -------------------------------------------------------------------------------- /codeforces/916B-Jaime_and_binary_sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/916B-Jaime_and_binary_sequence.cpp -------------------------------------------------------------------------------- /codeforces/916C-interesting_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/916C-interesting_graph.cpp -------------------------------------------------------------------------------- /codeforces/918A-Eleven.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/918A-Eleven.cpp -------------------------------------------------------------------------------- /codeforces/918B-radio_station.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/918B-radio_station.cpp -------------------------------------------------------------------------------- /codeforces/918C-Monster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/918C-Monster.cpp -------------------------------------------------------------------------------- /codeforces/918D-MadMax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/918D-MadMax.cpp -------------------------------------------------------------------------------- /codeforces/922A-Cloning_toys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/922A-Cloning_toys.cpp -------------------------------------------------------------------------------- /codeforces/922B-Magic_Forest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/922B-Magic_Forest.cpp -------------------------------------------------------------------------------- /codeforces/922C-cave_painting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/922C-cave_painting.cpp -------------------------------------------------------------------------------- /codeforces/922C-cave_painting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/922C-cave_painting.py -------------------------------------------------------------------------------- /codeforces/922D-robot_vaccuum_cleaner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/922D-robot_vaccuum_cleaner.cpp -------------------------------------------------------------------------------- /codeforces/935A-Fafa_and_his_company.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/935A-Fafa_and_his_company.cpp -------------------------------------------------------------------------------- /codeforces/935B-Fafa_and_the_gates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/935B-Fafa_and_the_gates.cpp -------------------------------------------------------------------------------- /codeforces/935C-Fifa_and_fafa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/935C-Fifa_and_fafa.cpp -------------------------------------------------------------------------------- /codeforces/935D-Fafa_and_ancient_alphabet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/935D-Fafa_and_ancient_alphabet.cpp -------------------------------------------------------------------------------- /codeforces/959A-even-odd-game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/959A-even-odd-game.cpp -------------------------------------------------------------------------------- /codeforces/959B-ME-the-message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/959B-ME-the-message.cpp -------------------------------------------------------------------------------- /codeforces/959C-ME-wrong-algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/959C-ME-wrong-algorithm.cpp -------------------------------------------------------------------------------- /codeforces/959D-ME-another-array-construction-naive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/959D-ME-another-array-construction-naive.cpp -------------------------------------------------------------------------------- /codeforces/959E-ME-xor-MST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/959E-ME-xor-MST.cpp -------------------------------------------------------------------------------- /codeforces/959F-ME-yet-another-xor-task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/959F-ME-yet-another-xor-task.cpp -------------------------------------------------------------------------------- /codeforces/998A-balloons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/998A-balloons.cpp -------------------------------------------------------------------------------- /codeforces/998B-Cutting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/998B-Cutting.cpp -------------------------------------------------------------------------------- /codeforces/998C-Convert_to_ones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/998C-Convert_to_ones.cpp -------------------------------------------------------------------------------- /codeforces/Erothesthenes_seive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/Erothesthenes_seive.cpp -------------------------------------------------------------------------------- /codeforces/String_task-cf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/String_task-cf.cpp -------------------------------------------------------------------------------- /codeforces/avltree_insertion_non-recursive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/avltree_insertion_non-recursive.c -------------------------------------------------------------------------------- /codeforces/bfs.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | int main() 4 | { 5 | 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /codeforces/dominoes_piling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/dominoes_piling.cpp -------------------------------------------------------------------------------- /codeforces/floyd_warshall_recursion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codeforces/floyd_warshall_recursion.cpp -------------------------------------------------------------------------------- /codeforces/template: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | int main() 4 | { 5 | 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /codejam-16/qualification round/A-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/qualification round/A-large.in -------------------------------------------------------------------------------- /codejam-16/qualification round/A-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/qualification round/A-small-attempt0.in -------------------------------------------------------------------------------- /codejam-16/qualification round/B-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/qualification round/B-large.in -------------------------------------------------------------------------------- /codejam-16/qualification round/B-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/qualification round/B-small-attempt0.in -------------------------------------------------------------------------------- /codejam-16/qualification round/B-small-input.in: -------------------------------------------------------------------------------- 1 | 5 2 | - 3 | -+ 4 | +- 5 | +++ 6 | --+- 7 | -------------------------------------------------------------------------------- /codejam-16/qualification round/D-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/qualification round/D-small-attempt0.in -------------------------------------------------------------------------------- /codejam-16/qualification round/Fractiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/qualification round/Fractiles.cpp -------------------------------------------------------------------------------- /codejam-16/qualification round/Fractiles_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/qualification round/Fractiles_util.cpp -------------------------------------------------------------------------------- /codejam-16/qualification round/INMO-2016 English Version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/qualification round/INMO-2016 English Version.pdf -------------------------------------------------------------------------------- /codejam-16/qualification round/coin-jam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/qualification round/coin-jam.cpp -------------------------------------------------------------------------------- /codejam-16/qualification round/combinations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/qualification round/combinations -------------------------------------------------------------------------------- /codejam-16/qualification round/counting_sheep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/qualification round/counting_sheep.py -------------------------------------------------------------------------------- /codejam-16/qualification round/input: -------------------------------------------------------------------------------- 1 | 5 2 | 0 3 | 1 4 | 2 5 | 11 6 | 1692 7 | -------------------------------------------------------------------------------- /codejam-16/qualification round/jam-coin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/qualification round/jam-coin.py -------------------------------------------------------------------------------- /codejam-16/qualification round/primes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/qualification round/primes.py -------------------------------------------------------------------------------- /codejam-16/qualification round/revenge_of_the_pancakes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/qualification round/revenge_of_the_pancakes.cpp -------------------------------------------------------------------------------- /codejam-16/qualification round/sol-inmo16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/qualification round/sol-inmo16.pdf -------------------------------------------------------------------------------- /codejam-16/round 1a/A-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1a/A-large.in -------------------------------------------------------------------------------- /codejam-16/round 1a/A-small-attempt-0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1a/A-small-attempt-0.in -------------------------------------------------------------------------------- /codejam-16/round 1a/A-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1a/A-small-attempt0.in -------------------------------------------------------------------------------- /codejam-16/round 1a/B-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1a/B-large.in -------------------------------------------------------------------------------- /codejam-16/round 1a/B-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1a/B-small-attempt0.in -------------------------------------------------------------------------------- /codejam-16/round 1a/BFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1a/BFF.cpp -------------------------------------------------------------------------------- /codejam-16/round 1a/C-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1a/C-small-attempt0.in -------------------------------------------------------------------------------- /codejam-16/round 1a/Rank_and_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1a/Rank_and_File.cpp -------------------------------------------------------------------------------- /codejam-16/round 1a/failed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1a/failed -------------------------------------------------------------------------------- /codejam-16/round 1a/sub-src-3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1a/sub-src-3.zip -------------------------------------------------------------------------------- /codejam-16/round 1a/the_last_word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1a/the_last_word.cpp -------------------------------------------------------------------------------- /codejam-16/round 1b/A-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1b/A-large.in -------------------------------------------------------------------------------- /codejam-16/round 1b/A-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1b/A-small-attempt0.in -------------------------------------------------------------------------------- /codejam-16/round 1b/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1b/A.cpp -------------------------------------------------------------------------------- /codejam-16/round 1b/B-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1b/B-small-attempt0.in -------------------------------------------------------------------------------- /codejam-16/round 1b/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1b/B.cpp -------------------------------------------------------------------------------- /codejam-16/round 1b/BFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1b/BFF.cpp -------------------------------------------------------------------------------- /codejam-16/round 1b/C-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1b/C-small-attempt0.in -------------------------------------------------------------------------------- /codejam-16/round 1b/C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1b/C.py -------------------------------------------------------------------------------- /codejam-16/round 1b/Rank_and_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1b/Rank_and_File.cpp -------------------------------------------------------------------------------- /codejam-16/round 1b/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1b/output -------------------------------------------------------------------------------- /codejam-16/round 1b/output1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1b/output1 -------------------------------------------------------------------------------- /codejam-16/round 1b/output3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1b/output3 -------------------------------------------------------------------------------- /codejam-16/round 1b/sub-1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1b/sub-1.in -------------------------------------------------------------------------------- /codejam-16/round 1b/sub-src-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1b/sub-src-1.zip -------------------------------------------------------------------------------- /codejam-16/round 1b/the_last_word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1b/the_last_word.cpp -------------------------------------------------------------------------------- /codejam-16/round 1c/A-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1c/A-large.in -------------------------------------------------------------------------------- /codejam-16/round 1c/A-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1c/A-small-attempt0.in -------------------------------------------------------------------------------- /codejam-16/round 1c/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1c/A.cpp -------------------------------------------------------------------------------- /codejam-16/round 1c/B-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1c/B-large.in -------------------------------------------------------------------------------- /codejam-16/round 1c/B-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1c/B-small-attempt0.in -------------------------------------------------------------------------------- /codejam-16/round 1c/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1c/B.cpp -------------------------------------------------------------------------------- /codejam-16/round 1c/C-small-attempt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1c/C-small-attempt.in -------------------------------------------------------------------------------- /codejam-16/round 1c/C-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1c/C-small-attempt0.in -------------------------------------------------------------------------------- /codejam-16/round 1c/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1c/C.cpp -------------------------------------------------------------------------------- /codejam-16/round 1c/C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-16/round 1c/C.py -------------------------------------------------------------------------------- /codejam-17/qualification_round_2017/A-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/qualification_round_2017/A-small-attempt0.in -------------------------------------------------------------------------------- /codejam-17/qualification_round_2017/A-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/qualification_round_2017/A-small.cpp -------------------------------------------------------------------------------- /codejam-17/qualification_round_2017/B-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/qualification_round_2017/B-large.in -------------------------------------------------------------------------------- /codejam-17/qualification_round_2017/B-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/qualification_round_2017/B-small-attempt0.in -------------------------------------------------------------------------------- /codejam-17/qualification_round_2017/B-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/qualification_round_2017/B-small.cpp -------------------------------------------------------------------------------- /codejam-17/qualification_round_2017/C-large-correct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/qualification_round_2017/C-large-correct.cpp -------------------------------------------------------------------------------- /codejam-17/qualification_round_2017/C-large-practice.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/qualification_round_2017/C-large-practice.in -------------------------------------------------------------------------------- /codejam-17/qualification_round_2017/C-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/qualification_round_2017/C-large.in -------------------------------------------------------------------------------- /codejam-17/qualification_round_2017/C-small-2-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/qualification_round_2017/C-small-2-attempt0.in -------------------------------------------------------------------------------- /codejam-17/qualification_round_2017/C-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/qualification_round_2017/C-small-attempt0.in -------------------------------------------------------------------------------- /codejam-17/qualification_round_2017/C-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/qualification_round_2017/C-small.cpp -------------------------------------------------------------------------------- /codejam-17/round 1b/A-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1b/A-large.in -------------------------------------------------------------------------------- /codejam-17/round 1b/A-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1b/A-small-attempt0.in -------------------------------------------------------------------------------- /codejam-17/round 1b/A-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1b/A-small.cpp -------------------------------------------------------------------------------- /codejam-17/round 1b/B-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1b/B-large.in -------------------------------------------------------------------------------- /codejam-17/round 1b/B-sample.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1b/B-sample.in -------------------------------------------------------------------------------- /codejam-17/round 1b/B-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1b/B-small-attempt0.in -------------------------------------------------------------------------------- /codejam-17/round 1b/B-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1b/B-small.cpp -------------------------------------------------------------------------------- /codejam-17/round 1b/C-large-correct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1b/C-large-correct.cpp -------------------------------------------------------------------------------- /codejam-17/round 1b/C-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1b/C-small-attempt0.in -------------------------------------------------------------------------------- /codejam-17/round 1b/C-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1b/C-small.cpp -------------------------------------------------------------------------------- /codejam-17/round 1c/A-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1c/A-large.in -------------------------------------------------------------------------------- /codejam-17/round 1c/A-small-attempt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1c/A-small-attempt.in -------------------------------------------------------------------------------- /codejam-17/round 1c/A-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1c/A-small-attempt0.in -------------------------------------------------------------------------------- /codejam-17/round 1c/A-small-attempt1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1c/A-small-attempt1.in -------------------------------------------------------------------------------- /codejam-17/round 1c/A-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1c/A-small.cpp -------------------------------------------------------------------------------- /codejam-17/round 1c/B-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1c/B-large.in -------------------------------------------------------------------------------- /codejam-17/round 1c/B-small-attempt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1c/B-small-attempt.in -------------------------------------------------------------------------------- /codejam-17/round 1c/B-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1c/B-small-attempt0.in -------------------------------------------------------------------------------- /codejam-17/round 1c/B-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1c/B-small.cpp -------------------------------------------------------------------------------- /codejam-17/round 1c/C-large-correct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1c/C-large-correct.cpp -------------------------------------------------------------------------------- /codejam-17/round 1c/C-small-1-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1c/C-small-1-attempt0.in -------------------------------------------------------------------------------- /codejam-17/round 1c/C-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1c/C-small-attempt0.in -------------------------------------------------------------------------------- /codejam-17/round 1c/C-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-17/round 1c/C-small.cpp -------------------------------------------------------------------------------- /codejam-18/qualification_round_2018/A-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-18/qualification_round_2018/A-small.cpp -------------------------------------------------------------------------------- /codejam-18/qualification_round_2018/B-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-18/qualification_round_2018/B-small.cpp -------------------------------------------------------------------------------- /codejam-18/qualification_round_2018/testing_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-18/qualification_round_2018/testing_tool.py -------------------------------------------------------------------------------- /codejam-18/round 1b/mysterious_road_signs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-18/round 1b/mysterious_road_signs.cpp -------------------------------------------------------------------------------- /codejam-18/round 1b/rounding_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-18/round 1b/rounding_error.cpp -------------------------------------------------------------------------------- /codejam-18/round 1b/transmutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-18/round 1b/transmutation.cpp -------------------------------------------------------------------------------- /codejam-18/round 1c/a-whole-new-world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-18/round 1c/a-whole-new-world.cpp -------------------------------------------------------------------------------- /codejam-18/round 1c/ant-stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/codejam-18/round 1c/ant-stack.cpp -------------------------------------------------------------------------------- /hackercup/2017/qualification round/fighting_the_zombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackercup/2017/qualification round/fighting_the_zombie.cpp -------------------------------------------------------------------------------- /hackercup/2017/qualification round/lazy_loading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackercup/2017/qualification round/lazy_loading.cpp -------------------------------------------------------------------------------- /hackercup/2017/qualification round/progress_pie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackercup/2017/qualification round/progress_pie.cpp -------------------------------------------------------------------------------- /hackercup/2017/round1/fighting_the_zombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackercup/2017/round1/fighting_the_zombie.cpp -------------------------------------------------------------------------------- /hackercup/2017/round1/input_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackercup/2017/round1/input_generator.py -------------------------------------------------------------------------------- /hackercup/2017/round1/manic_moving.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackercup/2017/round1/manic_moving.cpp -------------------------------------------------------------------------------- /hackercup/2017/round1/progress_pie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackercup/2017/round1/progress_pie.cpp -------------------------------------------------------------------------------- /hackercup/2017/round2/big_top.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackercup/2017/round2/big_top.cpp -------------------------------------------------------------------------------- /hackercup/2017/round2/fighting_the_zombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackercup/2017/round2/fighting_the_zombie.cpp -------------------------------------------------------------------------------- /hackercup/2017/round2/naive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackercup/2017/round2/naive.cpp -------------------------------------------------------------------------------- /hackercup/2017/round2/subtle_sabotage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackercup/2017/round2/subtle_sabotage.cpp -------------------------------------------------------------------------------- /hackercup/2018/qualification round/ethan_searches_for_a_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackercup/2018/qualification round/ethan_searches_for_a_string.cpp -------------------------------------------------------------------------------- /hackercup/2018/qualification round/interception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackercup/2018/qualification round/interception.cpp -------------------------------------------------------------------------------- /hackerearth/codathon18-nitbhopal/day-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerearth/codathon18-nitbhopal/day-1.cpp -------------------------------------------------------------------------------- /hackerearth/codathon18-nitbhopal/day-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerearth/codathon18-nitbhopal/day-2.cpp -------------------------------------------------------------------------------- /hackerearth/codathon18-nitbhopal/day-3-game-of-disks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerearth/codathon18-nitbhopal/day-3-game-of-disks.cpp -------------------------------------------------------------------------------- /hackerearth/codathon18-nitbhopal/day-3-graph-question.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerearth/codathon18-nitbhopal/day-3-graph-question.cpp -------------------------------------------------------------------------------- /hackerearth/codathon18-nitbhopal/day-4-training-the-joker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerearth/codathon18-nitbhopal/day-4-training-the-joker.cpp -------------------------------------------------------------------------------- /hackerearth/codathon18-nitbhopal/day-6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerearth/codathon18-nitbhopal/day-6.cpp -------------------------------------------------------------------------------- /hackerearth/codathon18-nitbhopal/day-7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerearth/codathon18-nitbhopal/day-7.cpp -------------------------------------------------------------------------------- /hackerearth/codathon18-nitbhopal/test-gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerearth/codathon18-nitbhopal/test-gen.py -------------------------------------------------------------------------------- /hackerearth/lets-code-20/bot-game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerearth/lets-code-20/bot-game.cpp -------------------------------------------------------------------------------- /hackerearth/lets-code-20/coin-problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerearth/lets-code-20/coin-problem.cpp -------------------------------------------------------------------------------- /hackerearth/lets-code-20/find_median_without_sorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerearth/lets-code-20/find_median_without_sorting.cpp -------------------------------------------------------------------------------- /hackerearth/lets-code-20/help-shivam-naive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerearth/lets-code-20/help-shivam-naive.cpp -------------------------------------------------------------------------------- /hackerearth/lets-code-20/help-shivam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerearth/lets-code-20/help-shivam.cpp -------------------------------------------------------------------------------- /hackerearth/lets-code-20/lets-run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerearth/lets-code-20/lets-run.cpp -------------------------------------------------------------------------------- /hackerearth/lets-code-20/mavis-and-his-problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerearth/lets-code-20/mavis-and-his-problem.cpp -------------------------------------------------------------------------------- /hackerrank/codeagon_contest_gohanandblocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/codeagon_contest_gohanandblocks.cpp -------------------------------------------------------------------------------- /hackerrank/codestorm15/boomarang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/codestorm15/boomarang.py -------------------------------------------------------------------------------- /hackerrank/codestorm15/little-alexeys-tree-map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/codestorm15/little-alexeys-tree-map.cpp -------------------------------------------------------------------------------- /hackerrank/codestorm15/little-alexeys-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/codestorm15/little-alexeys-tree.cpp -------------------------------------------------------------------------------- /hackerrank/hourrank11/lcsreturns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/hourrank11/lcsreturns.cpp -------------------------------------------------------------------------------- /hackerrank/hourrank11/strangecounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/hourrank11/strangecounter.cpp -------------------------------------------------------------------------------- /hackerrank/hourrank3/divisor-exploration-4-problem-tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/hourrank3/divisor-exploration-4-problem-tester.cpp -------------------------------------------------------------------------------- /hackerrank/hourrank3/divisor-exploration-4.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hackerrank/weekofcode17/13friday.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/weekofcode17/13friday.cpp -------------------------------------------------------------------------------- /hackerrank/weekofcode17/cp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/weekofcode17/cp.cpp -------------------------------------------------------------------------------- /hackerrank/weekofcode17/ctr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/weekofcode17/ctr.py -------------------------------------------------------------------------------- /hackerrank/weekofcode17/roads_building.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/weekofcode17/roads_building.cpp -------------------------------------------------------------------------------- /hackerrank/weekofcode19/two_robots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/weekofcode19/two_robots.cpp -------------------------------------------------------------------------------- /hackerrank/weekofcode21/n-letter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/weekofcode21/n-letter.cpp -------------------------------------------------------------------------------- /hackerrank/weekofcode23/lighthouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/weekofcode23/lighthouse.cpp -------------------------------------------------------------------------------- /hackerrank/world-code-sprint-April/permuations.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hackerrank/world-code-sprint-April/toh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/world-code-sprint-April/toh.cpp -------------------------------------------------------------------------------- /hackerrank/worldcup-university_level_hack/bishop-war/bwar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/worldcup-university_level_hack/bishop-war/bwar.cpp -------------------------------------------------------------------------------- /hackerrank/worldcup-university_level_hack/delivery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/worldcup-university_level_hack/delivery.cpp -------------------------------------------------------------------------------- /hackerrank/worldcup-university_level_hack/quantumland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/worldcup-university_level_hack/quantumland.py -------------------------------------------------------------------------------- /hackerrank/worldcup-university_level_hack/worldcupcity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/hackerrank/worldcup-university_level_hack/worldcupcity.cpp -------------------------------------------------------------------------------- /icpc16/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/icpc16/b.cpp -------------------------------------------------------------------------------- /icpc16/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/icpc16/d.cpp -------------------------------------------------------------------------------- /icpc16/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/icpc16/f.cpp -------------------------------------------------------------------------------- /icpc16/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/icpc16/g.cpp -------------------------------------------------------------------------------- /icpc16/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/icpc16/input.txt -------------------------------------------------------------------------------- /icpc16/template.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | int main() { 4 | 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /kickstart-17/round c/A-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round c/A-large.in -------------------------------------------------------------------------------- /kickstart-17/round c/A-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round c/A-small-attempt0.in -------------------------------------------------------------------------------- /kickstart-17/round c/A-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round c/A-small.cpp -------------------------------------------------------------------------------- /kickstart-17/round c/B-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round c/B-large.in -------------------------------------------------------------------------------- /kickstart-17/round c/B-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round c/B-small-attempt0.in -------------------------------------------------------------------------------- /kickstart-17/round c/B-small-attempt1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round c/B-small-attempt1.in -------------------------------------------------------------------------------- /kickstart-17/round c/B-small-attempt2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round c/B-small-attempt2.in -------------------------------------------------------------------------------- /kickstart-17/round c/B-small-attempt3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round c/B-small-attempt3.in -------------------------------------------------------------------------------- /kickstart-17/round c/B-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round c/B-small.cpp -------------------------------------------------------------------------------- /kickstart-17/round c/C-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round c/C-large.in -------------------------------------------------------------------------------- /kickstart-17/round c/C-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round c/C-small-attempt0.in -------------------------------------------------------------------------------- /kickstart-17/round c/C-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round c/C-small.cpp -------------------------------------------------------------------------------- /kickstart-17/round c/D-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round c/D-small-attempt0.in -------------------------------------------------------------------------------- /kickstart-17/round c/D-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round c/D-small.cpp -------------------------------------------------------------------------------- /kickstart-17/round f/A-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round f/A-large.in -------------------------------------------------------------------------------- /kickstart-17/round f/A-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round f/A-small-attempt0.in -------------------------------------------------------------------------------- /kickstart-17/round f/A-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round f/A-small.cpp -------------------------------------------------------------------------------- /kickstart-17/round f/B-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round f/B-large.in -------------------------------------------------------------------------------- /kickstart-17/round f/B-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round f/B-small-attempt0.in -------------------------------------------------------------------------------- /kickstart-17/round f/B-small-attempt1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round f/B-small-attempt1.in -------------------------------------------------------------------------------- /kickstart-17/round f/B-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round f/B-small.cpp -------------------------------------------------------------------------------- /kickstart-17/round f/C-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round f/C-small-attempt0.in -------------------------------------------------------------------------------- /kickstart-17/round f/C-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round f/C-small.cpp -------------------------------------------------------------------------------- /kickstart-17/round f/D-generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round f/D-generator.cpp -------------------------------------------------------------------------------- /kickstart-17/round f/D-large.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round f/D-large.in -------------------------------------------------------------------------------- /kickstart-17/round f/D-small-attempt0.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round f/D-small-attempt0.in -------------------------------------------------------------------------------- /kickstart-17/round f/D-small.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/kickstart-17/round f/D-small.cpp -------------------------------------------------------------------------------- /programming templates/Circles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/Circles.cpp -------------------------------------------------------------------------------- /programming templates/Enumerating_MIS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/Enumerating_MIS.cpp -------------------------------------------------------------------------------- /programming templates/Floyd_Warshall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/Floyd_Warshall.cpp -------------------------------------------------------------------------------- /programming templates/Heavy_Light_Decomposition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/Heavy_Light_Decomposition.cpp -------------------------------------------------------------------------------- /programming templates/Knapsack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/Knapsack.cpp -------------------------------------------------------------------------------- /programming templates/LCA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/LCA.cpp -------------------------------------------------------------------------------- /programming templates/LCS_dp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/LCS_dp.cpp -------------------------------------------------------------------------------- /programming templates/articulate_points.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/articulate_points.cpp -------------------------------------------------------------------------------- /programming templates/bfs_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/bfs_template.cpp -------------------------------------------------------------------------------- /programming templates/bitmask_template.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /programming templates/connected_components.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/connected_components.cpp -------------------------------------------------------------------------------- /programming templates/dfs_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/dfs_template.cpp -------------------------------------------------------------------------------- /programming templates/diameter_of_a_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/diameter_of_a_tree.cpp -------------------------------------------------------------------------------- /programming templates/dijkstras.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/dijkstras.cpp -------------------------------------------------------------------------------- /programming templates/divisorsOfAllNumbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/divisorsOfAllNumbers.cpp -------------------------------------------------------------------------------- /programming templates/enumerating_subsequences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/enumerating_subsequences.cpp -------------------------------------------------------------------------------- /programming templates/euler_totient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/euler_totient.cpp -------------------------------------------------------------------------------- /programming templates/factorialMod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/factorialMod.cpp -------------------------------------------------------------------------------- /programming templates/fasterPartitionProblem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/fasterPartitionProblem.cpp -------------------------------------------------------------------------------- /programming templates/fibonacci_matrix_logn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/fibonacci_matrix_logn.cpp -------------------------------------------------------------------------------- /programming templates/firstDigitProduct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/firstDigitProduct.cpp -------------------------------------------------------------------------------- /programming templates/graph_matrix_representation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/graph_matrix_representation.cpp -------------------------------------------------------------------------------- /programming templates/kadane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/kadane.cpp -------------------------------------------------------------------------------- /programming templates/lagranges_square_theorem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/lagranges_square_theorem.cpp -------------------------------------------------------------------------------- /programming templates/main_template.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | int main() 4 | { 5 | 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /programming templates/matrixTranspose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/matrixTranspose.cpp -------------------------------------------------------------------------------- /programming templates/max_key_IndependentSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/max_key_IndependentSet.cpp -------------------------------------------------------------------------------- /programming templates/multiplicative_Modular_Inverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/multiplicative_Modular_Inverse.cpp -------------------------------------------------------------------------------- /programming templates/nCk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/nCk.cpp -------------------------------------------------------------------------------- /programming templates/no_palindromic_subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/no_palindromic_subsequence.cpp -------------------------------------------------------------------------------- /programming templates/partition problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/partition problem.cpp -------------------------------------------------------------------------------- /programming templates/point&ray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/point&ray.cpp -------------------------------------------------------------------------------- /programming templates/rank_a_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/rank_a_tree.cpp -------------------------------------------------------------------------------- /programming templates/root_unrooted_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/root_unrooted_tree.cpp -------------------------------------------------------------------------------- /programming templates/segment_trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/segment_trees.cpp -------------------------------------------------------------------------------- /programming templates/segment_trees_lazy_propagation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/segment_trees_lazy_propagation.cpp -------------------------------------------------------------------------------- /programming templates/sieve_of_eratosthenes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/sieve_of_eratosthenes.cpp -------------------------------------------------------------------------------- /programming templates/sliding_Window_Maximum_1D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/sliding_Window_Maximum_1D.cpp -------------------------------------------------------------------------------- /programming templates/sliding_Window_Maximum_2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/sliding_Window_Maximum_2D.cpp -------------------------------------------------------------------------------- /programming templates/sumsubMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/programming templates/sumsubMatrix.cpp -------------------------------------------------------------------------------- /topcoder/BuildStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/topcoder/BuildStrings.cpp -------------------------------------------------------------------------------- /topcoder/FrogSquare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/topcoder/FrogSquare.cpp -------------------------------------------------------------------------------- /topcoder/StepsConstruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/topcoder/StepsConstruct.cpp -------------------------------------------------------------------------------- /topcoder/armorup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/topcoder/armorup.cpp -------------------------------------------------------------------------------- /topcoder/poison.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/topcoder/poison.cpp -------------------------------------------------------------------------------- /topcoder/sol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lakshmanaram/Competitive-programming/HEAD/topcoder/sol.cpp --------------------------------------------------------------------------------