├── .gitignore ├── Advent of code 2019 ├── day1.1.cpp ├── day1.2.cpp ├── day2.1.cpp ├── day2.2.cpp ├── day3.1.cpp └── day3.2.cpp ├── AtCoder ├── Educational DP Contest │ ├── a.cpp │ ├── b.cpp │ ├── b.rb │ ├── c.cpp │ ├── d.cpp │ ├── e.cpp │ ├── f.cpp │ ├── g.cpp │ └── in.in ├── abc162 │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── in.in └── abc165 │ ├── a.cpp │ └── b.cpp ├── Bomberman.cpp ├── CodeForces ├── 158A - Next Round.cpp ├── 173A - Rock-Paper-Scissors.cpp ├── 2017 JUST Programming Contest 3.0 │ ├── A.cpp │ ├── B.cpp │ └── in.in ├── 328A - PawnChess.cpp ├── 328b - The Monster and the Squirrel.cpp ├── 329A - 2Char.rb ├── 3A - Shortest path of the king.cpp ├── 582A - Chips Moving.cpp ├── 588A - Duff and Meat.cpp ├── 588A - Duff and Meat.rb ├── A1. Good Matrix Elements.cpp ├── B1. Rectangular Game.cpp ├── C1. Party.cpp ├── D1. Encrypting Messages.cpp ├── Edu Round #77 (Div 2) │ ├── 77A.cpp │ ├── 77B.cpp │ ├── 77C.cpp │ └── in.in ├── Edu Round #78 (Div 2) │ ├── 78A.cpp │ ├── 78B.cpp │ └── in.in ├── Edu Round #79 (Div 2) │ ├── 79A.cpp │ ├── 79B.cpp │ ├── 79C.cpp │ └── in.in ├── Edu Round #86 (Div 2) │ ├── a.cpp │ ├── b.cpp │ └── c.cpp ├── Global Round #6 │ ├── gr6A.cpp │ ├── gr6B.cpp │ └── in.in ├── Good Bye 2019 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── in.in ├── Hello 2020 │ ├── A.cpp │ ├── B.cpp │ └── in.in ├── Round #378 (Div 2) │ ├── 378A - Grasshopper And the String.cpp │ ├── 378B - Parade.cpp │ └── 378C - Epidemic in Monstropolis.cpp ├── Round #381 (Div 2) │ ├── 381A.cpp │ └── in.in ├── Round #383 (Div. 2) │ ├── 383A.cpp │ ├── 383B.cpp │ ├── 383C.cpp │ ├── alterc.cpp │ └── in.in ├── Round #384 (Div 2) │ ├── 384A.cpp │ ├── 384B.cpp │ ├── 384C.cpp │ └── in.in ├── Round #388 (Div 2) │ ├── 388A.cpp │ ├── 388B.cpp │ ├── 388C.cpp │ └── in.in ├── Round #579 (Div. 3) │ ├── 579A.cpp │ ├── 579B.cpp │ ├── 579C.cpp │ ├── 579E.cpp │ └── in.in ├── Round #596 (Div 2) │ ├── 596A.cpp │ └── in.in ├── Round #601 (Div 2) │ ├── 601A.cpp │ ├── 601B.cpp │ ├── 601C.cpp │ ├── 601D.cpp │ └── in.in ├── Round #603 (Div 2) │ ├── 603A.cpp │ ├── 603B.cpp │ ├── 603C.cpp │ └── in.in ├── Round #604 (Div 2) │ ├── 604A.cpp │ ├── 604B.cpp │ ├── 604C.cpp │ └── in.in ├── Round #605 (Div 3) │ ├── 605A.cpp │ ├── 605B.cpp │ ├── 605C.cpp │ └── in.in ├── Round #606 (Div 2) │ ├── 606A.cpp │ ├── 606B.cpp │ ├── 606C.cpp │ └── in.in ├── Round #609 (Div 2) │ ├── 609A.cpp │ ├── 609B.cpp │ ├── 609C.cpp │ └── in.in ├── Round #610 (Div 2) │ ├── 610A.cpp │ ├── 610B.cpp │ ├── 610C.cpp │ └── in.in ├── Round #611 (Div 3) │ ├── 611A.cpp │ ├── 611B.cpp │ ├── 611C.cpp │ ├── 611D.cpp │ ├── hack.cpp │ └── in.in ├── Round #613 (Div 2) │ ├── 613A.cpp │ ├── 613B.cpp │ ├── 613C.cpp │ ├── 613D.cpp │ └── in.in ├── Round #615 (Div 3) │ ├── 615A.cpp │ ├── 615B.cpp │ ├── 615C.cpp │ └── in.in ├── Round #621 (Div 2) │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ └── in.in ├── Round #627 (Div 3) │ ├── b.cpp │ └── in.in ├── Round #629 (Div 3) │ ├── 629A.cpp │ ├── 629B.cpp │ └── in.in ├── Round #634 (Div 3) │ ├── 634A.cpp │ ├── 634B.cpp │ ├── 634C.cpp │ ├── 634D.cpp │ └── in.in ├── Round #635 (Div 2) │ ├── 635a.cpp │ ├── 635b.cpp │ ├── 635c.cpp │ └── in.in ├── Round #636 (Div 3) │ ├── 636a.cpp │ ├── 636b.cpp │ ├── 636c.cpp │ └── in.in ├── Round #637 (Div 2) │ ├── 637a.cpp │ ├── 637b.cpp │ ├── 637c.cpp │ └── in.in ├── Round #638 (Div 2) │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ └── in.in ├── Round #639 (Div 2) │ ├── 639A.cpp │ ├── 639B.cpp │ ├── 639C.cpp │ └── in.in ├── Round #640 (Div 4) │ ├── 630F.cpp │ ├── 640A.cpp │ ├── 640B.cpp │ ├── 640C.cpp │ ├── 640D.cpp │ ├── 640E.cpp │ ├── 640G.cpp │ └── in.in ├── Ruby Leage contest │ ├── a.cpp │ ├── b.cpp │ ├── c.cpp │ ├── e.cpp │ ├── g.cpp │ └── in.in └── gym │ ├── 100800 - Conversation Log.rb │ ├── 100800 - Nimionese.rb │ ├── 1101.a.Minimum Integer.cpp │ ├── 1101.b.Accordion.cpp │ ├── 20c.Dijkstra.cpp │ └── in.in ├── CodeJam ├── Bike Tour.cpp ├── Dancing With the Googlers.cpp ├── Nesting Depth.cpp ├── Parenting Partnering Returns.cpp ├── Recycled Numbers.cpp ├── The Next Number.rb ├── Vestigium.cpp └── reverseWords.cpp ├── Codechef ├── December Challenge 2019 │ ├── BINADD.cpp │ ├── PLMU.cpp │ ├── SUBSPLAY.cpp │ ├── WATSCORE.cpp │ └── in.in ├── DSA │ └── Contest 1 │ │ ├── CONFLIP.cpp │ │ ├── a.cpp │ │ ├── b.cpp │ │ ├── c.cpp │ │ ├── d.cpp │ │ ├── e.cpp │ │ └── f.cpp ├── ISBIAS.cpp ├── ISBIAS2.cpp ├── ISBIN-SLOW.cpp ├── June Challenge 2020 │ ├── CHFICRM.cpp │ ├── COVDSMPL.cpp │ ├── EOEO.cpp │ ├── EVENM.cpp │ ├── GUESSG.cpp │ ├── PRICECON.cpp │ └── XYSTR.cpp ├── KS2.cpp ├── May Challenge 2020 │ ├── CORUS.cpp │ ├── COVID19.cpp │ └── TRPLSRT_final.cpp ├── PROXYC.cpp ├── RSIGNS.cpp └── SUBSPLAY.cpp ├── HackerEarth ├── Christmas string.cpp ├── June Circuits '19 │ ├── GCD-problem.cpp │ ├── determine-the-winner.cpp │ └── rotation.cpp └── prime-number-8.cpp ├── HackerRank ├── Cavity Map.cpp ├── Components in a graph.cpp ├── Find Digits.cpp ├── Find Strings(TLE).cpp ├── Find Strings.cpp ├── Gridland Metro.cpp ├── Ice Cream Parlor.cpp ├── K Difference.cpp ├── Matrix Land with dijkstra.cpp ├── Matrix Land with dp.cpp ├── Matrix Land.cpp ├── Sock Merchant.cpp ├── String Similarity.cpp ├── The Maximum Subarray.cpp ├── The Maximum Subarray.rb ├── new-year-chaos.rb └── twins.cpp ├── Live Archive ├── 4215 - Feynman.cpp ├── 4233 - Cryptoquote.cpp ├── 5932 - Refrigerator Magnets.cpp └── 5934 - Sokoban.cpp ├── PKU └── 3507 - Judging Olympia.cpp ├── POJ └── 2637 - WorstWeather Ever.cpp ├── README.md ├── RPC ├── 14th │ ├── commonkn.cpp │ ├── dwarves.cpp │ ├── formula.cpp │ └── in.in └── 15th │ ├── classy.cpp │ ├── excellence.cpp │ ├── gears.cpp │ ├── in.in │ ├── magic.java │ ├── triangle.cpp │ └── triangle.java ├── SPOJ ├── 1 - Life, the Universe, and Everything.cpp ├── 10399 - Conga line.cpp ├── 11031 - Bank Robbers.cpp ├── 206 - Bitmap.cpp ├── 3410 - Feynman.cpp ├── 3861 - Laser Phones.cpp ├── 400 - To and Fro.cpp ├── 42 - Adding Reversed Numbers.cpp ├── 6256 - Inversion Count.cpp ├── 902 - Hangover.cpp ├── Longest Common Substring.cpp ├── Prime Generator.cpp ├── julka.java └── temp laser.cpp ├── TJU ├── 11000 - Bee.cpp ├── 1196 - Web Navigation.cpp ├── 1208 - Fibonacci Numbers.cpp ├── 1401 - All in All.cpp ├── 1476 - A Simple Task.cpp ├── 1527 - Euchre Results.cpp ├── 1566 - Cowculations.cpp ├── 1571 - Perfection.cpp ├── 1630 - String Matching.cpp ├── 1644 - Reverse Text.cpp ├── 1930 - Doubles.cpp ├── 1935 - Symmetric Order.cpp ├── 1973 - Spin.cpp ├── 2149 - 01000001(Con Vector).cpp ├── 2149 - 01000001.cpp ├── 22775 - Bee Tree.cpp ├── 2364 - Disk Tree.cpp ├── 2601 - Dirichlet's Theorem on Arithmetic Progressions.cpp ├── 2636 - Hanafuda Shuffle.cpp ├── 2637 - Red and Black.cpp ├── 2782 - I am Lord Voldemort.cpp ├── 2790 - Fireworks Show.cpp ├── 2791 - Bovine Latin.cpp ├── 2945 - HERMAN.cpp ├── 3004 - Mispelling.cpp ├── 3005 - Conversions.cpp ├── 3006 - Encoding.cpp ├── 3007 - Decoding(TJU).cpp ├── 3059 - Rock, Paper, or Scissors?.cpp ├── 3105 - A Way To Find Primes.cpp ├── 3108 - Common item.cpp ├── 3150 - Sixth Grade Math.cpp └── 591 - Geometry Made Simple.cpp ├── TopCoder ├── Configure │ ├── CodeProcessor.jar │ ├── FileEdit.jar │ ├── PopsPack.jar │ └── TZTester.jar ├── SRM 537 DIV 2 │ ├── KingXNewBaby.cpp │ └── PrinceXToastbook.cpp ├── SRM 702 DIV 2 │ ├── GridSort.cpp │ └── TestTaking.cpp └── SRM 772 DIV 2 │ ├── PermutationAndMultiplication.cpp │ └── PlusCastle.cpp ├── USACO ├── gift1.cpp ├── ride.cpp └── test.cpp ├── UVa ├── 100 - 3n+1.cpp ├── 10004 - Bicoloring.cpp ├── 10009 - All Roads Lead Where.cpp ├── 10013 - Super long sums.cpp ├── 10035 - Primary Arithmetic.cpp ├── 10038 - Jolly Jumpers.cpp ├── 10055 - Hashmat the brave warrior.cpp ├── 10071 - Back to High School Physics.cpp ├── 10079 - Pizza Cutting.cpp ├── 10082 - WERTY.cpp ├── 10137 - The Trip.cpp ├── 10189 - Minesweeper.cpp ├── 10252 - Common Permutation.cpp ├── 10260 - Soundex.cpp ├── 10361 - Automatic Poetry.cpp ├── 10370 - Above Average.cpp ├── 10420 - List of Conquest.cpp ├── 10424 - Love Calculator.cpp ├── 10583 - Ubiquitous Religions.cpp ├── 10653 - Bombs! NO they are Mines!!.cpp ├── 10656 - Maximum Sum II.cpp ├── 10684 - The jackpot.cpp ├── 10696 - F91.cpp ├── 10783 - Odd Sum.cpp ├── 10812 - Beat the Spread!.c ├── 10812 - Beat the Spread!.cpp ├── 10986 - Sending email.cpp ├── 110401 - Vito's family.cpp ├── 11172 - Relational Operator.cpp ├── 11244 - Counting stars.cpp ├── 113 - Power of Cryptography.cpp ├── 11352 - Crazy King.cpp ├── 11495 - Bubbles and Buckets.cpp ├── 11498 - Division of Nlogonia.cpp ├── 11541 -Decoding(Uva).cpp ├── 11559 - Event Planning.cpp ├── 11727 - Cost Cutting.cpp ├── 11799 - Horror Dash.cpp ├── 118 - Mutant Flatworld Explorers.cpp ├── 11988 - Broken Keyboard (a.k.a. Beiju Text).cpp ├── 156 - Ananagrams.cpp ├── 195 - Anagram.cpp ├── 272 - TEX Quotes.cpp ├── 280 - Vertex.cpp ├── 294 - Divisors.cpp ├── 299 - Train swapping.cpp ├── 336 - A Node Too Far.cpp ├── 341 - Non-Stop Travel.cpp ├── 374 - Big Mod.cpp ├── 424 - Integer Inquiry.cpp ├── 429 - Word Transformation.cpp ├── 439 - Knight Moves.cpp ├── 458 - The Decoder.cpp ├── 483 - Word Scramble.cpp ├── 492 - Pig-Latin.cpp ├── 494 - Kindergarten Counting Game.cpp ├── 499 - What's The Frequency, Kenneth?.cpp ├── 507 - Jill Rides Again.cpp ├── 532 - Dungeon Master.cpp ├── 543 - Goldbach's Conjecture.cpp ├── 567 - Risk.cpp ├── 572 - Oil Deposits.cpp ├── 575 - Skew Binary.cpp ├── 576 - Haiku Review.cpp ├── 591 - Box of Bricks.cpp ├── 627 - The Net.cpp ├── 686 - Goldbach's Conjecture (II).cpp ├── 762 - We Ship Cheap.cpp ├── 793 - Network Connections.cpp ├── 900 - Brick Wall Patterns.cpp ├── 908 - Re-connecting Computer Sites.cpp ├── 929 - Number Maze.cpp ├── Cryptanalysis.cpp ├── Factorial.cpp ├── GCD Determinant.cpp ├── Is this the easiest problem.cpp └── Polynomial Showdown.cpp ├── ZOJ └── 1452 - Card Game - Kitty Fishing.cpp ├── leet-code-template.cpp ├── template.cpp └── ·Documentation ├── BIGINT.cpp ├── Books ├── Art_of_Programming_Contest_SE_for_uva.pdf └── Programming_Challenges.pdf ├── Data Structures ├── Fenwick Tree.cpp ├── Segment Tree.cpp └── Union Find Disjoint Set.cpp ├── Strings ├── Suffix arrays – a programming contest approach.pdf ├── Linear-Time Longest-Common-Pre x Computation in Sux Arrays and Its Applications.pdf ├── suffixArray.cpp └── suffixArray2.cpp └── manual(andmej).pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/.gitignore -------------------------------------------------------------------------------- /Advent of code 2019/day1.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Advent of code 2019/day1.1.cpp -------------------------------------------------------------------------------- /Advent of code 2019/day1.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Advent of code 2019/day1.2.cpp -------------------------------------------------------------------------------- /Advent of code 2019/day2.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Advent of code 2019/day2.1.cpp -------------------------------------------------------------------------------- /Advent of code 2019/day2.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Advent of code 2019/day2.2.cpp -------------------------------------------------------------------------------- /Advent of code 2019/day3.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Advent of code 2019/day3.1.cpp -------------------------------------------------------------------------------- /Advent of code 2019/day3.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Advent of code 2019/day3.2.cpp -------------------------------------------------------------------------------- /AtCoder/Educational DP Contest/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/AtCoder/Educational DP Contest/a.cpp -------------------------------------------------------------------------------- /AtCoder/Educational DP Contest/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/AtCoder/Educational DP Contest/b.cpp -------------------------------------------------------------------------------- /AtCoder/Educational DP Contest/b.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/AtCoder/Educational DP Contest/b.rb -------------------------------------------------------------------------------- /AtCoder/Educational DP Contest/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/AtCoder/Educational DP Contest/c.cpp -------------------------------------------------------------------------------- /AtCoder/Educational DP Contest/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/AtCoder/Educational DP Contest/d.cpp -------------------------------------------------------------------------------- /AtCoder/Educational DP Contest/e.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AtCoder/Educational DP Contest/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/AtCoder/Educational DP Contest/f.cpp -------------------------------------------------------------------------------- /AtCoder/Educational DP Contest/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/AtCoder/Educational DP Contest/g.cpp -------------------------------------------------------------------------------- /AtCoder/Educational DP Contest/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/AtCoder/Educational DP Contest/in.in -------------------------------------------------------------------------------- /AtCoder/abc162/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/AtCoder/abc162/a.cpp -------------------------------------------------------------------------------- /AtCoder/abc162/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/AtCoder/abc162/b.cpp -------------------------------------------------------------------------------- /AtCoder/abc162/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/AtCoder/abc162/c.cpp -------------------------------------------------------------------------------- /AtCoder/abc162/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/AtCoder/abc162/d.cpp -------------------------------------------------------------------------------- /AtCoder/abc162/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/AtCoder/abc162/in.in -------------------------------------------------------------------------------- /AtCoder/abc165/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/AtCoder/abc165/a.cpp -------------------------------------------------------------------------------- /AtCoder/abc165/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/AtCoder/abc165/b.cpp -------------------------------------------------------------------------------- /Bomberman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Bomberman.cpp -------------------------------------------------------------------------------- /CodeForces/158A - Next Round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/158A - Next Round.cpp -------------------------------------------------------------------------------- /CodeForces/173A - Rock-Paper-Scissors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/173A - Rock-Paper-Scissors.cpp -------------------------------------------------------------------------------- /CodeForces/2017 JUST Programming Contest 3.0/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/2017 JUST Programming Contest 3.0/A.cpp -------------------------------------------------------------------------------- /CodeForces/2017 JUST Programming Contest 3.0/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/2017 JUST Programming Contest 3.0/B.cpp -------------------------------------------------------------------------------- /CodeForces/2017 JUST Programming Contest 3.0/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/2017 JUST Programming Contest 3.0/in.in -------------------------------------------------------------------------------- /CodeForces/328A - PawnChess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/328A - PawnChess.cpp -------------------------------------------------------------------------------- /CodeForces/328b - The Monster and the Squirrel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/328b - The Monster and the Squirrel.cpp -------------------------------------------------------------------------------- /CodeForces/329A - 2Char.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/329A - 2Char.rb -------------------------------------------------------------------------------- /CodeForces/3A - Shortest path of the king.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/3A - Shortest path of the king.cpp -------------------------------------------------------------------------------- /CodeForces/582A - Chips Moving.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/582A - Chips Moving.cpp -------------------------------------------------------------------------------- /CodeForces/588A - Duff and Meat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/588A - Duff and Meat.cpp -------------------------------------------------------------------------------- /CodeForces/588A - Duff and Meat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/588A - Duff and Meat.rb -------------------------------------------------------------------------------- /CodeForces/A1. Good Matrix Elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/A1. Good Matrix Elements.cpp -------------------------------------------------------------------------------- /CodeForces/B1. Rectangular Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/B1. Rectangular Game.cpp -------------------------------------------------------------------------------- /CodeForces/C1. Party.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/C1. Party.cpp -------------------------------------------------------------------------------- /CodeForces/D1. Encrypting Messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/D1. Encrypting Messages.cpp -------------------------------------------------------------------------------- /CodeForces/Edu Round #77 (Div 2)/77A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Edu Round #77 (Div 2)/77A.cpp -------------------------------------------------------------------------------- /CodeForces/Edu Round #77 (Div 2)/77B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Edu Round #77 (Div 2)/77B.cpp -------------------------------------------------------------------------------- /CodeForces/Edu Round #77 (Div 2)/77C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Edu Round #77 (Div 2)/77C.cpp -------------------------------------------------------------------------------- /CodeForces/Edu Round #77 (Div 2)/in.in: -------------------------------------------------------------------------------- 1 | 10 2 7 2 | -------------------------------------------------------------------------------- /CodeForces/Edu Round #78 (Div 2)/78A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Edu Round #78 (Div 2)/78A.cpp -------------------------------------------------------------------------------- /CodeForces/Edu Round #78 (Div 2)/78B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Edu Round #78 (Div 2)/78B.cpp -------------------------------------------------------------------------------- /CodeForces/Edu Round #78 (Div 2)/in.in: -------------------------------------------------------------------------------- 1 | 4 2 | 1 4 3 | 2 5 4 | 3 8 5 | 6 7 -------------------------------------------------------------------------------- /CodeForces/Edu Round #79 (Div 2)/79A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Edu Round #79 (Div 2)/79A.cpp -------------------------------------------------------------------------------- /CodeForces/Edu Round #79 (Div 2)/79B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Edu Round #79 (Div 2)/79B.cpp -------------------------------------------------------------------------------- /CodeForces/Edu Round #79 (Div 2)/79C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Edu Round #79 (Div 2)/79C.cpp -------------------------------------------------------------------------------- /CodeForces/Edu Round #79 (Div 2)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Edu Round #79 (Div 2)/in.in -------------------------------------------------------------------------------- /CodeForces/Edu Round #86 (Div 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Edu Round #86 (Div 2)/a.cpp -------------------------------------------------------------------------------- /CodeForces/Edu Round #86 (Div 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Edu Round #86 (Div 2)/b.cpp -------------------------------------------------------------------------------- /CodeForces/Edu Round #86 (Div 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Edu Round #86 (Div 2)/c.cpp -------------------------------------------------------------------------------- /CodeForces/Global Round #6/gr6A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Global Round #6/gr6A.cpp -------------------------------------------------------------------------------- /CodeForces/Global Round #6/gr6B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Global Round #6/gr6B.cpp -------------------------------------------------------------------------------- /CodeForces/Global Round #6/in.in: -------------------------------------------------------------------------------- 1 | 4 2 | 1 29 34 19 38 3 | -------------------------------------------------------------------------------- /CodeForces/Good Bye 2019/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Good Bye 2019/A.cpp -------------------------------------------------------------------------------- /CodeForces/Good Bye 2019/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Good Bye 2019/B.cpp -------------------------------------------------------------------------------- /CodeForces/Good Bye 2019/C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Good Bye 2019/C.cpp -------------------------------------------------------------------------------- /CodeForces/Good Bye 2019/D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Good Bye 2019/D.cpp -------------------------------------------------------------------------------- /CodeForces/Good Bye 2019/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Good Bye 2019/in.in -------------------------------------------------------------------------------- /CodeForces/Hello 2020/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Hello 2020/A.cpp -------------------------------------------------------------------------------- /CodeForces/Hello 2020/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Hello 2020/B.cpp -------------------------------------------------------------------------------- /CodeForces/Hello 2020/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Hello 2020/in.in -------------------------------------------------------------------------------- /CodeForces/Round #378 (Div 2)/378A - Grasshopper And the String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #378 (Div 2)/378A - Grasshopper And the String.cpp -------------------------------------------------------------------------------- /CodeForces/Round #378 (Div 2)/378B - Parade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #378 (Div 2)/378B - Parade.cpp -------------------------------------------------------------------------------- /CodeForces/Round #378 (Div 2)/378C - Epidemic in Monstropolis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #378 (Div 2)/378C - Epidemic in Monstropolis.cpp -------------------------------------------------------------------------------- /CodeForces/Round #381 (Div 2)/381A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #381 (Div 2)/381A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #381 (Div 2)/in.in: -------------------------------------------------------------------------------- 1 | 7 100 1 1 -------------------------------------------------------------------------------- /CodeForces/Round #383 (Div. 2)/383A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #383 (Div. 2)/383A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #383 (Div. 2)/383B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #383 (Div. 2)/383B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #383 (Div. 2)/383C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #383 (Div. 2)/383C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #383 (Div. 2)/alterc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #383 (Div. 2)/alterc.cpp -------------------------------------------------------------------------------- /CodeForces/Round #383 (Div. 2)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #383 (Div. 2)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #384 (Div 2)/384A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #384 (Div 2)/384A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #384 (Div 2)/384B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #384 (Div 2)/384B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #384 (Div 2)/384C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #384 (Div 2)/384C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #384 (Div 2)/in.in: -------------------------------------------------------------------------------- 1 | 10000 -------------------------------------------------------------------------------- /CodeForces/Round #388 (Div 2)/388A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #388 (Div 2)/388A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #388 (Div 2)/388B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #388 (Div 2)/388B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #388 (Div 2)/388C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #388 (Div 2)/388C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #388 (Div 2)/in.in: -------------------------------------------------------------------------------- 1 | 5 2 | DDRRR -------------------------------------------------------------------------------- /CodeForces/Round #579 (Div. 3)/579A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #579 (Div. 3)/579A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #579 (Div. 3)/579B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #579 (Div. 3)/579B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #579 (Div. 3)/579C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #579 (Div. 3)/579C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #579 (Div. 3)/579E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #579 (Div. 3)/579E.cpp -------------------------------------------------------------------------------- /CodeForces/Round #579 (Div. 3)/in.in: -------------------------------------------------------------------------------- 1 | 6 2 | 6 90 12 18 30 18 3 | -------------------------------------------------------------------------------- /CodeForces/Round #596 (Div 2)/596A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #596 (Div 2)/596A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #596 (Div 2)/in.in: -------------------------------------------------------------------------------- 1 | 9 1 -------------------------------------------------------------------------------- /CodeForces/Round #601 (Div 2)/601A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #601 (Div 2)/601A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #601 (Div 2)/601B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #601 (Div 2)/601B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #601 (Div 2)/601C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #601 (Div 2)/601C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #601 (Div 2)/601D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #601 (Div 2)/601D.cpp -------------------------------------------------------------------------------- /CodeForces/Round #601 (Div 2)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #601 (Div 2)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #603 (Div 2)/603A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #603 (Div 2)/603A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #603 (Div 2)/603B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #603 (Div 2)/603B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #603 (Div 2)/603C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #603 (Div 2)/603C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #603 (Div 2)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #603 (Div 2)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #604 (Div 2)/604A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #604 (Div 2)/604A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #604 (Div 2)/604B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #604 (Div 2)/604B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #604 (Div 2)/604C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #604 (Div 2)/604C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #604 (Div 2)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #604 (Div 2)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #605 (Div 3)/605A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #605 (Div 3)/605A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #605 (Div 3)/605B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #605 (Div 3)/605B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #605 (Div 3)/605C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #605 (Div 3)/605C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #605 (Div 3)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #605 (Div 3)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #606 (Div 2)/606A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #606 (Div 2)/606A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #606 (Div 2)/606B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #606 (Div 2)/606B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #606 (Div 2)/606C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #606 (Div 2)/606C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #606 (Div 2)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #606 (Div 2)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #609 (Div 2)/609A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #609 (Div 2)/609A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #609 (Div 2)/609B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #609 (Div 2)/609B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #609 (Div 2)/609C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #609 (Div 2)/609C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #609 (Div 2)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #609 (Div 2)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #610 (Div 2)/610A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #610 (Div 2)/610A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #610 (Div 2)/610B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #610 (Div 2)/610B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #610 (Div 2)/610C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #610 (Div 2)/610C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #610 (Div 2)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #610 (Div 2)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #611 (Div 3)/611A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #611 (Div 3)/611A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #611 (Div 3)/611B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #611 (Div 3)/611B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #611 (Div 3)/611C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #611 (Div 3)/611C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #611 (Div 3)/611D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #611 (Div 3)/611D.cpp -------------------------------------------------------------------------------- /CodeForces/Round #611 (Div 3)/hack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #611 (Div 3)/hack.cpp -------------------------------------------------------------------------------- /CodeForces/Round #611 (Div 3)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #611 (Div 3)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #613 (Div 2)/613A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #613 (Div 2)/613A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #613 (Div 2)/613B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #613 (Div 2)/613B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #613 (Div 2)/613C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #613 (Div 2)/613C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #613 (Div 2)/613D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #613 (Div 2)/613D.cpp -------------------------------------------------------------------------------- /CodeForces/Round #613 (Div 2)/in.in: -------------------------------------------------------------------------------- 1 | 34@ -------------------------------------------------------------------------------- /CodeForces/Round #615 (Div 3)/615A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #615 (Div 3)/615A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #615 (Div 3)/615B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #615 (Div 3)/615B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #615 (Div 3)/615C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #615 (Div 3)/615C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #615 (Div 3)/in.in: -------------------------------------------------------------------------------- 1 | 1 2 | 36 3 | 5 4 | 23478264 5 | 32 6 | 97 7 | 2 8 | 12345 9 | -------------------------------------------------------------------------------- /CodeForces/Round #621 (Div 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #621 (Div 2)/a.cpp -------------------------------------------------------------------------------- /CodeForces/Round #621 (Div 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #621 (Div 2)/b.cpp -------------------------------------------------------------------------------- /CodeForces/Round #621 (Div 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #621 (Div 2)/c.cpp -------------------------------------------------------------------------------- /CodeForces/Round #621 (Div 2)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #621 (Div 2)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #627 (Div 3)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #627 (Div 3)/b.cpp -------------------------------------------------------------------------------- /CodeForces/Round #627 (Div 3)/in.in: -------------------------------------------------------------------------------- 1 | 1 2 | 3 3 | 1 1 1 -------------------------------------------------------------------------------- /CodeForces/Round #629 (Div 3)/629A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #629 (Div 3)/629A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #629 (Div 3)/629B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #629 (Div 3)/629B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #629 (Div 3)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #629 (Div 3)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #634 (Div 3)/634A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #634 (Div 3)/634A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #634 (Div 3)/634B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #634 (Div 3)/634B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #634 (Div 3)/634C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #634 (Div 3)/634C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #634 (Div 3)/634D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #634 (Div 3)/634D.cpp -------------------------------------------------------------------------------- /CodeForces/Round #634 (Div 3)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #634 (Div 3)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #635 (Div 2)/635a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #635 (Div 2)/635a.cpp -------------------------------------------------------------------------------- /CodeForces/Round #635 (Div 2)/635b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #635 (Div 2)/635b.cpp -------------------------------------------------------------------------------- /CodeForces/Round #635 (Div 2)/635c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #635 (Div 2)/635c.cpp -------------------------------------------------------------------------------- /CodeForces/Round #635 (Div 2)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #635 (Div 2)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #636 (Div 3)/636a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #636 (Div 3)/636a.cpp -------------------------------------------------------------------------------- /CodeForces/Round #636 (Div 3)/636b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #636 (Div 3)/636b.cpp -------------------------------------------------------------------------------- /CodeForces/Round #636 (Div 3)/636c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #636 (Div 3)/636c.cpp -------------------------------------------------------------------------------- /CodeForces/Round #636 (Div 3)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #636 (Div 3)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #637 (Div 2)/637a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #637 (Div 2)/637a.cpp -------------------------------------------------------------------------------- /CodeForces/Round #637 (Div 2)/637b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #637 (Div 2)/637b.cpp -------------------------------------------------------------------------------- /CodeForces/Round #637 (Div 2)/637c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #637 (Div 2)/637c.cpp -------------------------------------------------------------------------------- /CodeForces/Round #637 (Div 2)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #637 (Div 2)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #638 (Div 2)/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #638 (Div 2)/a.cpp -------------------------------------------------------------------------------- /CodeForces/Round #638 (Div 2)/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #638 (Div 2)/b.cpp -------------------------------------------------------------------------------- /CodeForces/Round #638 (Div 2)/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #638 (Div 2)/c.cpp -------------------------------------------------------------------------------- /CodeForces/Round #638 (Div 2)/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #638 (Div 2)/d.cpp -------------------------------------------------------------------------------- /CodeForces/Round #638 (Div 2)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #638 (Div 2)/in.in -------------------------------------------------------------------------------- /CodeForces/Round #639 (Div 2)/639A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #639 (Div 2)/639A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #639 (Div 2)/639B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #639 (Div 2)/639B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #639 (Div 2)/639C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #639 (Div 2)/639C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #639 (Div 2)/in.in: -------------------------------------------------------------------------------- 1 | 1 2 | 360933 -------------------------------------------------------------------------------- /CodeForces/Round #640 (Div 4)/630F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #640 (Div 4)/630F.cpp -------------------------------------------------------------------------------- /CodeForces/Round #640 (Div 4)/640A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #640 (Div 4)/640A.cpp -------------------------------------------------------------------------------- /CodeForces/Round #640 (Div 4)/640B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #640 (Div 4)/640B.cpp -------------------------------------------------------------------------------- /CodeForces/Round #640 (Div 4)/640C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #640 (Div 4)/640C.cpp -------------------------------------------------------------------------------- /CodeForces/Round #640 (Div 4)/640D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #640 (Div 4)/640D.cpp -------------------------------------------------------------------------------- /CodeForces/Round #640 (Div 4)/640E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #640 (Div 4)/640E.cpp -------------------------------------------------------------------------------- /CodeForces/Round #640 (Div 4)/640G.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #640 (Div 4)/640G.cpp -------------------------------------------------------------------------------- /CodeForces/Round #640 (Div 4)/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Round #640 (Div 4)/in.in -------------------------------------------------------------------------------- /CodeForces/Ruby Leage contest/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Ruby Leage contest/a.cpp -------------------------------------------------------------------------------- /CodeForces/Ruby Leage contest/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Ruby Leage contest/b.cpp -------------------------------------------------------------------------------- /CodeForces/Ruby Leage contest/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Ruby Leage contest/c.cpp -------------------------------------------------------------------------------- /CodeForces/Ruby Leage contest/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Ruby Leage contest/e.cpp -------------------------------------------------------------------------------- /CodeForces/Ruby Leage contest/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Ruby Leage contest/g.cpp -------------------------------------------------------------------------------- /CodeForces/Ruby Leage contest/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/Ruby Leage contest/in.in -------------------------------------------------------------------------------- /CodeForces/gym/100800 - Conversation Log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/gym/100800 - Conversation Log.rb -------------------------------------------------------------------------------- /CodeForces/gym/100800 - Nimionese.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/gym/100800 - Nimionese.rb -------------------------------------------------------------------------------- /CodeForces/gym/1101.a.Minimum Integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/gym/1101.a.Minimum Integer.cpp -------------------------------------------------------------------------------- /CodeForces/gym/1101.b.Accordion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/gym/1101.b.Accordion.cpp -------------------------------------------------------------------------------- /CodeForces/gym/20c.Dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeForces/gym/20c.Dijkstra.cpp -------------------------------------------------------------------------------- /CodeForces/gym/in.in: -------------------------------------------------------------------------------- 1 | |[a:b:|] -------------------------------------------------------------------------------- /CodeJam/Bike Tour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeJam/Bike Tour.cpp -------------------------------------------------------------------------------- /CodeJam/Dancing With the Googlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeJam/Dancing With the Googlers.cpp -------------------------------------------------------------------------------- /CodeJam/Nesting Depth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeJam/Nesting Depth.cpp -------------------------------------------------------------------------------- /CodeJam/Parenting Partnering Returns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeJam/Parenting Partnering Returns.cpp -------------------------------------------------------------------------------- /CodeJam/Recycled Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeJam/Recycled Numbers.cpp -------------------------------------------------------------------------------- /CodeJam/The Next Number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeJam/The Next Number.rb -------------------------------------------------------------------------------- /CodeJam/Vestigium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeJam/Vestigium.cpp -------------------------------------------------------------------------------- /CodeJam/reverseWords.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/CodeJam/reverseWords.cpp -------------------------------------------------------------------------------- /Codechef/ December Challenge 2019/BINADD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/ December Challenge 2019/BINADD.cpp -------------------------------------------------------------------------------- /Codechef/ December Challenge 2019/PLMU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/ December Challenge 2019/PLMU.cpp -------------------------------------------------------------------------------- /Codechef/ December Challenge 2019/SUBSPLAY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/ December Challenge 2019/SUBSPLAY.cpp -------------------------------------------------------------------------------- /Codechef/ December Challenge 2019/WATSCORE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/ December Challenge 2019/WATSCORE.cpp -------------------------------------------------------------------------------- /Codechef/ December Challenge 2019/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/ December Challenge 2019/in.in -------------------------------------------------------------------------------- /Codechef/DSA/Contest 1/CONFLIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/DSA/Contest 1/CONFLIP.cpp -------------------------------------------------------------------------------- /Codechef/DSA/Contest 1/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/DSA/Contest 1/a.cpp -------------------------------------------------------------------------------- /Codechef/DSA/Contest 1/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/DSA/Contest 1/b.cpp -------------------------------------------------------------------------------- /Codechef/DSA/Contest 1/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/DSA/Contest 1/c.cpp -------------------------------------------------------------------------------- /Codechef/DSA/Contest 1/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/DSA/Contest 1/d.cpp -------------------------------------------------------------------------------- /Codechef/DSA/Contest 1/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/DSA/Contest 1/e.cpp -------------------------------------------------------------------------------- /Codechef/DSA/Contest 1/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/DSA/Contest 1/f.cpp -------------------------------------------------------------------------------- /Codechef/ISBIAS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/ISBIAS.cpp -------------------------------------------------------------------------------- /Codechef/ISBIAS2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/ISBIAS2.cpp -------------------------------------------------------------------------------- /Codechef/ISBIN-SLOW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/ISBIN-SLOW.cpp -------------------------------------------------------------------------------- /Codechef/June Challenge 2020/CHFICRM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/June Challenge 2020/CHFICRM.cpp -------------------------------------------------------------------------------- /Codechef/June Challenge 2020/COVDSMPL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/June Challenge 2020/COVDSMPL.cpp -------------------------------------------------------------------------------- /Codechef/June Challenge 2020/EOEO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/June Challenge 2020/EOEO.cpp -------------------------------------------------------------------------------- /Codechef/June Challenge 2020/EVENM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/June Challenge 2020/EVENM.cpp -------------------------------------------------------------------------------- /Codechef/June Challenge 2020/GUESSG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/June Challenge 2020/GUESSG.cpp -------------------------------------------------------------------------------- /Codechef/June Challenge 2020/PRICECON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/June Challenge 2020/PRICECON.cpp -------------------------------------------------------------------------------- /Codechef/June Challenge 2020/XYSTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/June Challenge 2020/XYSTR.cpp -------------------------------------------------------------------------------- /Codechef/KS2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/KS2.cpp -------------------------------------------------------------------------------- /Codechef/May Challenge 2020/CORUS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/May Challenge 2020/CORUS.cpp -------------------------------------------------------------------------------- /Codechef/May Challenge 2020/COVID19.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/May Challenge 2020/COVID19.cpp -------------------------------------------------------------------------------- /Codechef/May Challenge 2020/TRPLSRT_final.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/May Challenge 2020/TRPLSRT_final.cpp -------------------------------------------------------------------------------- /Codechef/PROXYC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/PROXYC.cpp -------------------------------------------------------------------------------- /Codechef/RSIGNS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/RSIGNS.cpp -------------------------------------------------------------------------------- /Codechef/SUBSPLAY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Codechef/SUBSPLAY.cpp -------------------------------------------------------------------------------- /HackerEarth/Christmas string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerEarth/Christmas string.cpp -------------------------------------------------------------------------------- /HackerEarth/June Circuits '19/GCD-problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerEarth/June Circuits '19/GCD-problem.cpp -------------------------------------------------------------------------------- /HackerEarth/June Circuits '19/determine-the-winner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerEarth/June Circuits '19/determine-the-winner.cpp -------------------------------------------------------------------------------- /HackerEarth/June Circuits '19/rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerEarth/June Circuits '19/rotation.cpp -------------------------------------------------------------------------------- /HackerEarth/prime-number-8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerEarth/prime-number-8.cpp -------------------------------------------------------------------------------- /HackerRank/Cavity Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/Cavity Map.cpp -------------------------------------------------------------------------------- /HackerRank/Components in a graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/Components in a graph.cpp -------------------------------------------------------------------------------- /HackerRank/Find Digits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/Find Digits.cpp -------------------------------------------------------------------------------- /HackerRank/Find Strings(TLE).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/Find Strings(TLE).cpp -------------------------------------------------------------------------------- /HackerRank/Find Strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/Find Strings.cpp -------------------------------------------------------------------------------- /HackerRank/Gridland Metro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/Gridland Metro.cpp -------------------------------------------------------------------------------- /HackerRank/Ice Cream Parlor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/Ice Cream Parlor.cpp -------------------------------------------------------------------------------- /HackerRank/K Difference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/K Difference.cpp -------------------------------------------------------------------------------- /HackerRank/Matrix Land with dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/Matrix Land with dijkstra.cpp -------------------------------------------------------------------------------- /HackerRank/Matrix Land with dp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/Matrix Land with dp.cpp -------------------------------------------------------------------------------- /HackerRank/Matrix Land.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/Matrix Land.cpp -------------------------------------------------------------------------------- /HackerRank/Sock Merchant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/Sock Merchant.cpp -------------------------------------------------------------------------------- /HackerRank/String Similarity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/String Similarity.cpp -------------------------------------------------------------------------------- /HackerRank/The Maximum Subarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/The Maximum Subarray.cpp -------------------------------------------------------------------------------- /HackerRank/The Maximum Subarray.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/The Maximum Subarray.rb -------------------------------------------------------------------------------- /HackerRank/new-year-chaos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/new-year-chaos.rb -------------------------------------------------------------------------------- /HackerRank/twins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/HackerRank/twins.cpp -------------------------------------------------------------------------------- /Live Archive/4215 - Feynman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Live Archive/4215 - Feynman.cpp -------------------------------------------------------------------------------- /Live Archive/4233 - Cryptoquote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Live Archive/4233 - Cryptoquote.cpp -------------------------------------------------------------------------------- /Live Archive/5932 - Refrigerator Magnets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Live Archive/5932 - Refrigerator Magnets.cpp -------------------------------------------------------------------------------- /Live Archive/5934 - Sokoban.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/Live Archive/5934 - Sokoban.cpp -------------------------------------------------------------------------------- /PKU/3507 - Judging Olympia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/PKU/3507 - Judging Olympia.cpp -------------------------------------------------------------------------------- /POJ/2637 - WorstWeather Ever.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/POJ/2637 - WorstWeather Ever.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/README.md -------------------------------------------------------------------------------- /RPC/14th/commonkn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/RPC/14th/commonkn.cpp -------------------------------------------------------------------------------- /RPC/14th/dwarves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/RPC/14th/dwarves.cpp -------------------------------------------------------------------------------- /RPC/14th/formula.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/RPC/14th/formula.cpp -------------------------------------------------------------------------------- /RPC/14th/in.in: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /RPC/15th/classy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/RPC/15th/classy.cpp -------------------------------------------------------------------------------- /RPC/15th/excellence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/RPC/15th/excellence.cpp -------------------------------------------------------------------------------- /RPC/15th/gears.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/RPC/15th/gears.cpp -------------------------------------------------------------------------------- /RPC/15th/in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/RPC/15th/in.in -------------------------------------------------------------------------------- /RPC/15th/magic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/RPC/15th/magic.java -------------------------------------------------------------------------------- /RPC/15th/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/RPC/15th/triangle.cpp -------------------------------------------------------------------------------- /RPC/15th/triangle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/RPC/15th/triangle.java -------------------------------------------------------------------------------- /SPOJ/1 - Life, the Universe, and Everything.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/SPOJ/1 - Life, the Universe, and Everything.cpp -------------------------------------------------------------------------------- /SPOJ/10399 - Conga line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/SPOJ/10399 - Conga line.cpp -------------------------------------------------------------------------------- /SPOJ/11031 - Bank Robbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/SPOJ/11031 - Bank Robbers.cpp -------------------------------------------------------------------------------- /SPOJ/206 - Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/SPOJ/206 - Bitmap.cpp -------------------------------------------------------------------------------- /SPOJ/3410 - Feynman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/SPOJ/3410 - Feynman.cpp -------------------------------------------------------------------------------- /SPOJ/3861 - Laser Phones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/SPOJ/3861 - Laser Phones.cpp -------------------------------------------------------------------------------- /SPOJ/400 - To and Fro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/SPOJ/400 - To and Fro.cpp -------------------------------------------------------------------------------- /SPOJ/42 - Adding Reversed Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/SPOJ/42 - Adding Reversed Numbers.cpp -------------------------------------------------------------------------------- /SPOJ/6256 - Inversion Count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/SPOJ/6256 - Inversion Count.cpp -------------------------------------------------------------------------------- /SPOJ/902 - Hangover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/SPOJ/902 - Hangover.cpp -------------------------------------------------------------------------------- /SPOJ/Longest Common Substring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/SPOJ/Longest Common Substring.cpp -------------------------------------------------------------------------------- /SPOJ/Prime Generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/SPOJ/Prime Generator.cpp -------------------------------------------------------------------------------- /SPOJ/julka.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/SPOJ/julka.java -------------------------------------------------------------------------------- /SPOJ/temp laser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/SPOJ/temp laser.cpp -------------------------------------------------------------------------------- /TJU/11000 - Bee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/11000 - Bee.cpp -------------------------------------------------------------------------------- /TJU/1196 - Web Navigation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/1196 - Web Navigation.cpp -------------------------------------------------------------------------------- /TJU/1208 - Fibonacci Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/1208 - Fibonacci Numbers.cpp -------------------------------------------------------------------------------- /TJU/1401 - All in All.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/1401 - All in All.cpp -------------------------------------------------------------------------------- /TJU/1476 - A Simple Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/1476 - A Simple Task.cpp -------------------------------------------------------------------------------- /TJU/1527 - Euchre Results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/1527 - Euchre Results.cpp -------------------------------------------------------------------------------- /TJU/1566 - Cowculations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/1566 - Cowculations.cpp -------------------------------------------------------------------------------- /TJU/1571 - Perfection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/1571 - Perfection.cpp -------------------------------------------------------------------------------- /TJU/1630 - String Matching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/1630 - String Matching.cpp -------------------------------------------------------------------------------- /TJU/1644 - Reverse Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/1644 - Reverse Text.cpp -------------------------------------------------------------------------------- /TJU/1930 - Doubles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/1930 - Doubles.cpp -------------------------------------------------------------------------------- /TJU/1935 - Symmetric Order.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/1935 - Symmetric Order.cpp -------------------------------------------------------------------------------- /TJU/1973 - Spin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/1973 - Spin.cpp -------------------------------------------------------------------------------- /TJU/2149 - 01000001(Con Vector).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/2149 - 01000001(Con Vector).cpp -------------------------------------------------------------------------------- /TJU/2149 - 01000001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/2149 - 01000001.cpp -------------------------------------------------------------------------------- /TJU/22775 - Bee Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/22775 - Bee Tree.cpp -------------------------------------------------------------------------------- /TJU/2364 - Disk Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/2364 - Disk Tree.cpp -------------------------------------------------------------------------------- /TJU/2601 - Dirichlet's Theorem on Arithmetic Progressions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/2601 - Dirichlet's Theorem on Arithmetic Progressions.cpp -------------------------------------------------------------------------------- /TJU/2636 - Hanafuda Shuffle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/2636 - Hanafuda Shuffle.cpp -------------------------------------------------------------------------------- /TJU/2637 - Red and Black.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/2637 - Red and Black.cpp -------------------------------------------------------------------------------- /TJU/2782 - I am Lord Voldemort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/2782 - I am Lord Voldemort.cpp -------------------------------------------------------------------------------- /TJU/2790 - Fireworks Show.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/2790 - Fireworks Show.cpp -------------------------------------------------------------------------------- /TJU/2791 - Bovine Latin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/2791 - Bovine Latin.cpp -------------------------------------------------------------------------------- /TJU/2945 - HERMAN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/2945 - HERMAN.cpp -------------------------------------------------------------------------------- /TJU/3004 - Mispelling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/3004 - Mispelling.cpp -------------------------------------------------------------------------------- /TJU/3005 - Conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/3005 - Conversions.cpp -------------------------------------------------------------------------------- /TJU/3006 - Encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/3006 - Encoding.cpp -------------------------------------------------------------------------------- /TJU/3007 - Decoding(TJU).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/3007 - Decoding(TJU).cpp -------------------------------------------------------------------------------- /TJU/3059 - Rock, Paper, or Scissors?.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/3059 - Rock, Paper, or Scissors?.cpp -------------------------------------------------------------------------------- /TJU/3105 - A Way To Find Primes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/3105 - A Way To Find Primes.cpp -------------------------------------------------------------------------------- /TJU/3108 - Common item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/3108 - Common item.cpp -------------------------------------------------------------------------------- /TJU/3150 - Sixth Grade Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/3150 - Sixth Grade Math.cpp -------------------------------------------------------------------------------- /TJU/591 - Geometry Made Simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TJU/591 - Geometry Made Simple.cpp -------------------------------------------------------------------------------- /TopCoder/Configure/CodeProcessor.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TopCoder/Configure/CodeProcessor.jar -------------------------------------------------------------------------------- /TopCoder/Configure/FileEdit.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TopCoder/Configure/FileEdit.jar -------------------------------------------------------------------------------- /TopCoder/Configure/PopsPack.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TopCoder/Configure/PopsPack.jar -------------------------------------------------------------------------------- /TopCoder/Configure/TZTester.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TopCoder/Configure/TZTester.jar -------------------------------------------------------------------------------- /TopCoder/SRM 537 DIV 2/KingXNewBaby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TopCoder/SRM 537 DIV 2/KingXNewBaby.cpp -------------------------------------------------------------------------------- /TopCoder/SRM 537 DIV 2/PrinceXToastbook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TopCoder/SRM 537 DIV 2/PrinceXToastbook.cpp -------------------------------------------------------------------------------- /TopCoder/SRM 702 DIV 2/GridSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TopCoder/SRM 702 DIV 2/GridSort.cpp -------------------------------------------------------------------------------- /TopCoder/SRM 702 DIV 2/TestTaking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TopCoder/SRM 702 DIV 2/TestTaking.cpp -------------------------------------------------------------------------------- /TopCoder/SRM 772 DIV 2/PermutationAndMultiplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TopCoder/SRM 772 DIV 2/PermutationAndMultiplication.cpp -------------------------------------------------------------------------------- /TopCoder/SRM 772 DIV 2/PlusCastle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/TopCoder/SRM 772 DIV 2/PlusCastle.cpp -------------------------------------------------------------------------------- /USACO/gift1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/USACO/gift1.cpp -------------------------------------------------------------------------------- /USACO/ride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/USACO/ride.cpp -------------------------------------------------------------------------------- /USACO/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/USACO/test.cpp -------------------------------------------------------------------------------- /UVa/100 - 3n+1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/100 - 3n+1.cpp -------------------------------------------------------------------------------- /UVa/10004 - Bicoloring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10004 - Bicoloring.cpp -------------------------------------------------------------------------------- /UVa/10009 - All Roads Lead Where.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10009 - All Roads Lead Where.cpp -------------------------------------------------------------------------------- /UVa/10013 - Super long sums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10013 - Super long sums.cpp -------------------------------------------------------------------------------- /UVa/10035 - Primary Arithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10035 - Primary Arithmetic.cpp -------------------------------------------------------------------------------- /UVa/10038 - Jolly Jumpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10038 - Jolly Jumpers.cpp -------------------------------------------------------------------------------- /UVa/10055 - Hashmat the brave warrior.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10055 - Hashmat the brave warrior.cpp -------------------------------------------------------------------------------- /UVa/10071 - Back to High School Physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10071 - Back to High School Physics.cpp -------------------------------------------------------------------------------- /UVa/10079 - Pizza Cutting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10079 - Pizza Cutting.cpp -------------------------------------------------------------------------------- /UVa/10082 - WERTY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10082 - WERTY.cpp -------------------------------------------------------------------------------- /UVa/10137 - The Trip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10137 - The Trip.cpp -------------------------------------------------------------------------------- /UVa/10189 - Minesweeper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10189 - Minesweeper.cpp -------------------------------------------------------------------------------- /UVa/10252 - Common Permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10252 - Common Permutation.cpp -------------------------------------------------------------------------------- /UVa/10260 - Soundex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10260 - Soundex.cpp -------------------------------------------------------------------------------- /UVa/10361 - Automatic Poetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10361 - Automatic Poetry.cpp -------------------------------------------------------------------------------- /UVa/10370 - Above Average.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10370 - Above Average.cpp -------------------------------------------------------------------------------- /UVa/10420 - List of Conquest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10420 - List of Conquest.cpp -------------------------------------------------------------------------------- /UVa/10424 - Love Calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10424 - Love Calculator.cpp -------------------------------------------------------------------------------- /UVa/10583 - Ubiquitous Religions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10583 - Ubiquitous Religions.cpp -------------------------------------------------------------------------------- /UVa/10653 - Bombs! NO they are Mines!!.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10653 - Bombs! NO they are Mines!!.cpp -------------------------------------------------------------------------------- /UVa/10656 - Maximum Sum II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10656 - Maximum Sum II.cpp -------------------------------------------------------------------------------- /UVa/10684 - The jackpot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10684 - The jackpot.cpp -------------------------------------------------------------------------------- /UVa/10696 - F91.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10696 - F91.cpp -------------------------------------------------------------------------------- /UVa/10783 - Odd Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10783 - Odd Sum.cpp -------------------------------------------------------------------------------- /UVa/10812 - Beat the Spread!.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10812 - Beat the Spread!.c -------------------------------------------------------------------------------- /UVa/10812 - Beat the Spread!.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10812 - Beat the Spread!.cpp -------------------------------------------------------------------------------- /UVa/10986 - Sending email.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/10986 - Sending email.cpp -------------------------------------------------------------------------------- /UVa/110401 - Vito's family.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/110401 - Vito's family.cpp -------------------------------------------------------------------------------- /UVa/11172 - Relational Operator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/11172 - Relational Operator.cpp -------------------------------------------------------------------------------- /UVa/11244 - Counting stars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/11244 - Counting stars.cpp -------------------------------------------------------------------------------- /UVa/113 - Power of Cryptography.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/113 - Power of Cryptography.cpp -------------------------------------------------------------------------------- /UVa/11352 - Crazy King.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/11352 - Crazy King.cpp -------------------------------------------------------------------------------- /UVa/11495 - Bubbles and Buckets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/11495 - Bubbles and Buckets.cpp -------------------------------------------------------------------------------- /UVa/11498 - Division of Nlogonia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/11498 - Division of Nlogonia.cpp -------------------------------------------------------------------------------- /UVa/11541 -Decoding(Uva).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/11541 -Decoding(Uva).cpp -------------------------------------------------------------------------------- /UVa/11559 - Event Planning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/11559 - Event Planning.cpp -------------------------------------------------------------------------------- /UVa/11727 - Cost Cutting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/11727 - Cost Cutting.cpp -------------------------------------------------------------------------------- /UVa/11799 - Horror Dash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/11799 - Horror Dash.cpp -------------------------------------------------------------------------------- /UVa/118 - Mutant Flatworld Explorers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/118 - Mutant Flatworld Explorers.cpp -------------------------------------------------------------------------------- /UVa/11988 - Broken Keyboard (a.k.a. Beiju Text).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/11988 - Broken Keyboard (a.k.a. Beiju Text).cpp -------------------------------------------------------------------------------- /UVa/156 - Ananagrams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/156 - Ananagrams.cpp -------------------------------------------------------------------------------- /UVa/195 - Anagram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/195 - Anagram.cpp -------------------------------------------------------------------------------- /UVa/272 - TEX Quotes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/272 - TEX Quotes.cpp -------------------------------------------------------------------------------- /UVa/280 - Vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/280 - Vertex.cpp -------------------------------------------------------------------------------- /UVa/294 - Divisors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/294 - Divisors.cpp -------------------------------------------------------------------------------- /UVa/299 - Train swapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/299 - Train swapping.cpp -------------------------------------------------------------------------------- /UVa/336 - A Node Too Far.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/336 - A Node Too Far.cpp -------------------------------------------------------------------------------- /UVa/341 - Non-Stop Travel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/341 - Non-Stop Travel.cpp -------------------------------------------------------------------------------- /UVa/374 - Big Mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/374 - Big Mod.cpp -------------------------------------------------------------------------------- /UVa/424 - Integer Inquiry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/424 - Integer Inquiry.cpp -------------------------------------------------------------------------------- /UVa/429 - Word Transformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/429 - Word Transformation.cpp -------------------------------------------------------------------------------- /UVa/439 - Knight Moves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/439 - Knight Moves.cpp -------------------------------------------------------------------------------- /UVa/458 - The Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/458 - The Decoder.cpp -------------------------------------------------------------------------------- /UVa/483 - Word Scramble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/483 - Word Scramble.cpp -------------------------------------------------------------------------------- /UVa/492 - Pig-Latin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/492 - Pig-Latin.cpp -------------------------------------------------------------------------------- /UVa/494 - Kindergarten Counting Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/494 - Kindergarten Counting Game.cpp -------------------------------------------------------------------------------- /UVa/499 - What's The Frequency, Kenneth?.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/499 - What's The Frequency, Kenneth?.cpp -------------------------------------------------------------------------------- /UVa/507 - Jill Rides Again.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/507 - Jill Rides Again.cpp -------------------------------------------------------------------------------- /UVa/532 - Dungeon Master.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/532 - Dungeon Master.cpp -------------------------------------------------------------------------------- /UVa/543 - Goldbach's Conjecture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/543 - Goldbach's Conjecture.cpp -------------------------------------------------------------------------------- /UVa/567 - Risk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/567 - Risk.cpp -------------------------------------------------------------------------------- /UVa/572 - Oil Deposits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/572 - Oil Deposits.cpp -------------------------------------------------------------------------------- /UVa/575 - Skew Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/575 - Skew Binary.cpp -------------------------------------------------------------------------------- /UVa/576 - Haiku Review.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/576 - Haiku Review.cpp -------------------------------------------------------------------------------- /UVa/591 - Box of Bricks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/591 - Box of Bricks.cpp -------------------------------------------------------------------------------- /UVa/627 - The Net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/627 - The Net.cpp -------------------------------------------------------------------------------- /UVa/686 - Goldbach's Conjecture (II).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/686 - Goldbach's Conjecture (II).cpp -------------------------------------------------------------------------------- /UVa/762 - We Ship Cheap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/762 - We Ship Cheap.cpp -------------------------------------------------------------------------------- /UVa/793 - Network Connections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/793 - Network Connections.cpp -------------------------------------------------------------------------------- /UVa/900 - Brick Wall Patterns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/900 - Brick Wall Patterns.cpp -------------------------------------------------------------------------------- /UVa/908 - Re-connecting Computer Sites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/908 - Re-connecting Computer Sites.cpp -------------------------------------------------------------------------------- /UVa/929 - Number Maze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/929 - Number Maze.cpp -------------------------------------------------------------------------------- /UVa/Cryptanalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/Cryptanalysis.cpp -------------------------------------------------------------------------------- /UVa/Factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/Factorial.cpp -------------------------------------------------------------------------------- /UVa/GCD Determinant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/GCD Determinant.cpp -------------------------------------------------------------------------------- /UVa/Is this the easiest problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/Is this the easiest problem.cpp -------------------------------------------------------------------------------- /UVa/Polynomial Showdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/UVa/Polynomial Showdown.cpp -------------------------------------------------------------------------------- /ZOJ/1452 - Card Game - Kitty Fishing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/ZOJ/1452 - Card Game - Kitty Fishing.cpp -------------------------------------------------------------------------------- /leet-code-template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/leet-code-template.cpp -------------------------------------------------------------------------------- /template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/template.cpp -------------------------------------------------------------------------------- /·Documentation/BIGINT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/·Documentation/BIGINT.cpp -------------------------------------------------------------------------------- /·Documentation/Books/Art_of_Programming_Contest_SE_for_uva.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/·Documentation/Books/Art_of_Programming_Contest_SE_for_uva.pdf -------------------------------------------------------------------------------- /·Documentation/Books/Programming_Challenges.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/·Documentation/Books/Programming_Challenges.pdf -------------------------------------------------------------------------------- /·Documentation/Data Structures/Fenwick Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/·Documentation/Data Structures/Fenwick Tree.cpp -------------------------------------------------------------------------------- /·Documentation/Data Structures/Segment Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/·Documentation/Data Structures/Segment Tree.cpp -------------------------------------------------------------------------------- /·Documentation/Data Structures/Union Find Disjoint Set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/·Documentation/Data Structures/Union Find Disjoint Set.cpp -------------------------------------------------------------------------------- /·Documentation/Strings/ Suffix arrays – a programming contest approach.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/·Documentation/Strings/ Suffix arrays – a programming contest approach.pdf -------------------------------------------------------------------------------- /·Documentation/Strings/Linear-Time Longest-Common-Pre x Computation in Sux Arrays and Its Applications.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/·Documentation/Strings/Linear-Time Longest-Common-Pre x Computation in Sux Arrays and Its Applications.pdf -------------------------------------------------------------------------------- /·Documentation/Strings/suffixArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/·Documentation/Strings/suffixArray.cpp -------------------------------------------------------------------------------- /·Documentation/Strings/suffixArray2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/·Documentation/Strings/suffixArray2.cpp -------------------------------------------------------------------------------- /·Documentation/manual(andmej).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esbanarango/Competitive-Programming/HEAD/·Documentation/manual(andmej).pdf --------------------------------------------------------------------------------