├── .gitignore ├── COCI ├── 2010-2011 │ ├── Contest #1 │ │ ├── LJUTNJA.cpp │ │ ├── PROFESOR.cpp │ │ ├── SRETAN.cpp │ │ ├── TABOVI.cpp │ │ └── TIMSKO.cpp │ └── Contest #2 │ │ ├── IGRA.cpp │ │ ├── KNJIGE.cpp │ │ ├── NAPOR.cpp │ │ └── PUZ.cpp ├── 2011-2012 │ ├── Contest #4 │ │ └── KRIPTOGRAM.cpp │ ├── Contest #5 │ │ ├── BLOKOVI.cpp │ │ ├── DNA.cpp │ │ ├── EKO.cpp │ │ ├── KRIZALJKA.cpp │ │ ├── POPLOCAVANJE (heap).cpp │ │ ├── POPLOCAVANJE (lazy propagation).cpp │ │ └── RAZBIBRIGA.cpp │ └── Contest #6 │ │ ├── KOSARE.cpp │ │ └── PASTELE.cpp └── 2012-2013 │ ├── Contest #1 │ ├── DOM.cpp │ ├── F7.cpp │ ├── LJUBOMORA.cpp │ ├── MARS.cpp │ └── SNAGA.cpp │ ├── Contest #2 │ ├── INFORMACIJE.cpp │ ├── INSPEKTOR.cpp │ ├── KRIZALJKA.cpp │ ├── LANCI.cpp │ ├── MORTADELA.cpp │ └── POPUST.cpp │ └── Contest #3 │ ├── AERODROM.cpp │ ├── HERKABE.cpp │ ├── MALCOLM.cpp │ ├── POREDAK.cpp │ ├── PROCESOR.cpp │ └── SAHOVNICA.cpp ├── Codechef ├── 2012 │ └── Cook-off │ │ └── December │ │ ├── DIRECTI.cpp │ │ ├── EXGCD.cpp │ │ ├── MUFFINS3.cpp │ │ └── TREEROOT.cpp ├── ASTRGAME.cpp ├── BALANCED.cpp ├── BIGPIZA.cpp ├── BOMBING.cpp ├── CIRCUITS.cpp ├── COUNTREL.cpp ├── EQIDLIS.cpp ├── FLUSHOT.cpp ├── GRIDCHEF.cpp ├── MAY15 │ ├── CHAPD.cpp │ ├── CHEFCK.cpp │ ├── CHEFRP.cpp │ ├── DEVHAND.cpp │ ├── DEVHAND2.cpp │ ├── DEVSTR.cpp │ ├── GRAPHCNT.cpp │ ├── SETDIFF.cpp │ └── SEZ.cpp ├── MAY16 │ ├── CHBLLS.cpp │ ├── CHEFMATH.cpp │ ├── CHEFNUM.cpp │ ├── CHEFSOC2.cpp │ ├── FORESTGA.cpp │ ├── LADDU.cpp │ ├── SEAGCD2.cpp │ └── STARROAD.cpp ├── May Long Contest │ ├── CHEFHOME.cpp │ ├── CHEFLUCK.cpp │ ├── DIGFORST.cpp │ ├── DIVPAIR.cpp │ ├── LEBOXES.cpp │ ├── MEDIAN.cpp │ ├── STONES.cpp │ └── TWSTR.cpp ├── OVENTIME.cpp ├── TERM.cpp └── TIDRICE.cpp ├── Codeforces ├── 12A.cpp ├── 12B.cpp ├── 12C.cpp ├── 12D.cpp ├── 12E.cpp ├── 134C.cpp ├── 140D.cpp ├── 148A.cpp ├── 148B.cpp ├── 148C.cpp ├── 148D.cpp ├── 148E.cpp ├── 149A.cpp ├── 149B.cpp ├── 149C.cpp ├── 149D.cpp ├── 149E.cpp ├── 156D.cpp ├── 164A.cpp ├── 164B.cpp ├── 164C.cpp ├── 173A.cpp ├── 173B.cpp ├── 173C.cpp ├── 173D.cpp ├── 173E.cpp ├── 202A.cpp ├── 202B.cpp ├── 202C.cpp ├── 202D.cpp ├── 202E.cpp ├── 208E.cpp ├── 209A.cpp ├── 214A.cpp ├── 214B.cpp ├── 214C.cpp ├── 214D.cpp ├── 214E.cpp ├── 217E.cpp ├── 219D.cpp ├── 22A.cpp ├── 22B.cpp ├── 22C.cpp ├── 22D.cpp ├── 22E.cpp ├── 231E.cpp ├── 235A.cpp ├── 237D.cpp ├── 241A.cpp ├── 241B.cpp ├── 241C.cpp ├── 241F.cpp ├── 241G.cpp ├── 242A.cpp ├── 242B.cpp ├── 242C.cpp ├── 242D.cpp ├── 242E.cpp ├── 244A.cpp ├── 244B.cpp ├── 256B.cpp ├── 256D.cpp ├── 260D.cpp ├── 261A.cpp ├── 261B.cpp ├── 261C.cpp ├── 271E.cpp ├── 272E.cpp ├── 27D.cpp ├── 280B.cpp ├── 280C.cpp ├── 282E.cpp ├── 283A.cpp ├── 283B.cpp ├── 283C.cpp ├── 283D.cpp ├── 283E.cpp ├── 285A.cpp ├── 285B.cpp ├── 285C.cpp ├── 285D.cpp ├── 287A.cpp ├── 287B.cpp ├── 287C.cpp ├── 292A.cpp ├── 292B.cpp ├── 292C.cpp ├── 292D.cpp ├── 292E.cpp ├── 294A.cpp ├── 294B.cpp ├── 294C.cpp ├── 294E.cpp ├── 297B.cpp ├── 297C.cpp ├── 29A.cpp ├── 29B.cpp ├── 29C.cpp ├── 29D.cpp ├── 29E (bfs).cpp ├── 29E (bfs01).cpp ├── 300C.cpp ├── 301B.cpp ├── 301D.cpp ├── 311A.cpp ├── 311B.cpp ├── 311C.cpp ├── 311D.cpp ├── 312A.cpp ├── 312B.cpp ├── 313A.cpp ├── 313B.cpp ├── 313C.cpp ├── 313D.cpp ├── 319A.cpp ├── 319B.cpp ├── 319C.cpp ├── 31A.cpp ├── 31B.cpp ├── 31C.cpp ├── 31D.cpp ├── 31E.cpp ├── 449B.cpp ├── 449D.cpp ├── 4B.cpp ├── 4D.cpp ├── 59E.cpp ├── 63A.cpp ├── 63B.cpp ├── 63C.cpp ├── 63D.cpp ├── 63E.cpp ├── 6B.cpp ├── 6D.cpp ├── 73A.cpp ├── 81E.cpp ├── 85D.cpp ├── 9B.cpp ├── 9E.cpp ├── Codeforces Beta Round #1 │ └── A.cpp ├── Codeforces Beta Round #10 │ └── A.cpp ├── Codeforces Beta Round #11 │ └── A.cpp ├── Codeforces Beta Round #12 │ └── A.cpp ├── Codeforces Beta Round #13 │ └── A.cpp ├── Codeforces Beta Round #14 │ └── A.cpp ├── Codeforces Beta Round #15 │ ├── A.cpp │ └── C.cpp ├── Codeforces Beta Round #2 │ └── A.cpp ├── Codeforces Beta Round #28 │ └── C.cpp ├── Codeforces Beta Round #3 │ ├── A-1.cpp │ ├── A-2.cpp │ └── D.cpp ├── Codeforces Beta Round #39 │ ├── A.cpp │ └── B(WA).cpp ├── Codeforces Beta Round #4 │ ├── A.cpp │ └── D.cpp ├── Codeforces Beta Round #43 │ ├── A.cpp │ ├── B.cpp │ └── C.cpp ├── Codeforces Beta Round #5 │ ├── A.cpp │ └── C.cpp ├── Codeforces Beta Round #51 │ └── A.cpp ├── Codeforces Beta Round #53 │ ├── A.cpp │ ├── B.cpp │ └── C.cpp ├── Codeforces Beta Round #6 │ ├── A.cpp │ ├── C.cpp │ └── E.cpp ├── Codeforces Beta Round #7 │ ├── A.cpp │ └── D.cpp ├── Codeforces Beta Round #8 │ ├── A.cpp │ └── B.cpp └── Codeforces Beta Round #9 │ ├── A.cpp │ └── C.cpp ├── Codility ├── Lesson 1 │ ├── FrogJmp.cpp │ ├── PermMissingElem.cpp │ └── TapeEquilibrium.cpp ├── Lesson 2 │ ├── FrogRiverOne.cpp │ ├── MaxCounters.cpp │ └── PermCheck.cpp ├── lithium2013.cpp └── rho2012.cpp ├── Codingame └── code-of-the-rings │ ├── comp.txt │ ├── in │ ├── 1.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 2.txt │ ├── 20.txt │ ├── 21.txt │ ├── 22.txt │ ├── 23.txt │ ├── 24.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ ├── 8.txt │ └── 9.txt │ ├── main0.cpp │ ├── main1.cpp │ ├── main10.cpp │ ├── main2.cpp │ ├── main3.cpp │ ├── main4.cpp │ ├── main5.cpp │ ├── main6.cpp │ ├── main7.cpp │ ├── main8.cpp │ ├── main9.cpp │ ├── run.sh │ └── sum.cpp ├── Distributed Code Jam └── 2016 │ └── Round1 │ ├── B.cpp │ ├── C.cpp │ ├── D-small.cpp │ └── E-small.cpp ├── Google Code Jam ├── 2011 │ └── Qualification Round │ │ ├── A.cpp │ │ ├── B.py │ │ ├── C.cpp │ │ └── D.py ├── 2012 │ └── Round 2 │ │ ├── A.cpp │ │ ├── A2.cpp │ │ ├── B.py │ │ └── C.cpp ├── 2013 │ └── Round 2 │ │ ├── A.cpp │ │ ├── B.cpp │ │ └── C.cpp ├── 2015 │ ├── Qualification Round │ │ ├── A.cpp │ │ ├── B.cpp │ │ ├── C.cpp │ │ └── D.cpp │ └── Round 2 │ │ └── C.cpp └── 2016 │ └── Round2 │ ├── A.cpp │ ├── B-large.cpp │ ├── B-small.cpp │ ├── C-small.cpp │ └── D-small.cpp ├── Hacker Cup ├── 2012 │ ├── Qualification │ │ ├── alphabet_soup.cpp │ │ ├── alphabet_soup.txt │ │ ├── billboards.cpp │ │ └── billboards.txt │ ├── Round 1 │ │ ├── checkpoint.cpp │ │ ├── checkpoint.txt │ │ ├── recover_the_sequence.cpp │ │ ├── recover_the_sequence.txt │ │ ├── squished_status.cpp │ │ └── squished_status.txt │ └── Round 2 │ │ ├── monopoly.cpp │ │ ├── monopoly.txt │ │ ├── road_removal.cpp │ │ └── road_removal.txt └── 2015 │ └── Qualification Round │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── cooking_the_books.txt │ ├── laser_maze.txt │ └── new_years_resolution.txt ├── Live Archive ├── 2006 - Most wanted word.cpp ├── 2038 - Strategic Game.cpp ├── 2040 - Multiple.cpp ├── 2043 - Rectangles.cpp ├── 2044 - Courses.cpp ├── 2045 - Closest Common Ancestors.cpp ├── 2052 - Number Steps.cpp ├── 2068 - PC^3.cpp ├── 2069 - Birds of a feather should not play together.cpp ├── 2190 - Being Late.cpp ├── 2247 - Prime Digital Root.cpp ├── 2248 - Desert Bitmap.cpp ├── 2281 - Color Me Less.cpp ├── 2362 - Financial Management.cpp ├── 2389 - Palindrom Numbers.cpp ├── 2428 - Water Shortage.cpp ├── 2434 - Money Lesson.cpp ├── 2437 - Pattern Finder.cpp ├── 2439 - Balanced Races.cpp ├── 2481 - Silly Sort.cpp ├── 2483 - House Numbering.cpp ├── 2485 - Vowels Frequencies.cpp ├── 2540 - The Hardest Problem Ever.cpp ├── 2557 - The Drunk Jailer.cpp ├── 2730 - Toll.cpp ├── 2731 - Wacmian Numbers.cpp ├── 2732 - CD Titles.cpp ├── 2733 - Caesar Cipher.cpp ├── 2734 - Water Tanks.cpp ├── 2857 - Keep on Truckin'.cpp ├── 2922 - Easy task.cpp ├── 2924 - Shortcut.cpp ├── 2930 - Minimizing Maximizer.cpp ├── 2931 - Bridging signals.cpp ├── 2932 - Vase collection.cpp ├── 2935 - Subway tree systems.cpp ├── 2936 - Prison rearrangement.cpp ├── 2947 - Roof.cpp ├── 3003 - Jelly.cpp ├── 3077 - No Brainer.cpp ├── 3093 - IP Address.cpp ├── 3113 - Tangled in Cables.cpp ├── 3131 - SETI.cpp ├── 3170 - AGTC.cpp ├── 3171 - Oreon.cpp ├── 3173 - Wordfish.cpp ├── 3279 - Dice.cpp ├── 3288 - Harmonic Mean.cpp ├── 3342 - Faulty Odometer.cpp ├── 3343 - Last Digits.cpp ├── 3381 - Connect.cpp ├── 3389 - Quick Change.cpp ├── 3392 - Triangular Sums.cpp ├── 3394 - Time to Graduate.cpp ├── 3397 - Leapin' Lizards.cpp ├── 3418 - Shuffle'm Up.cpp ├── 3468 - Tornado.cpp ├── 3470 - Pascal Library.cpp ├── 3473 - Where Are My Genes.cpp ├── 3475 - P-Networks.cpp ├── 3498 - Push Button Lock.cpp ├── 3529 - Widget Factory.cpp ├── 3542 - It's All About Three │ ├── 3542.cpp │ ├── 3542.exe │ ├── in.txt │ └── out.txt ├── 3569 - Degrees of Separation.cpp ├── 3571 - Visible Lattice Points.cpp ├── 3573 - Non-divisible 2-3 Power Sums.cpp ├── 3574 - Margaritas on the River Walk.cpp ├── 3594 - Quicksum.cpp ├── 3651 - Weekend Lottery.cpp ├── 3652 - Lazy Jumping Frog.cpp ├── 3656 - Odd or Even.cpp ├── 3820 - Mr. Thompson's Problem.cpp ├── 3822 - Look and Say.cpp ├── 3830 - John.cpp ├── 3837 - The Stable Marriage Problem.cpp ├── 3847 - The Seven Percent Solution.cpp ├── 3849 - Persistent Bits.cpp ├── 3851 - Electronic Document Security.cpp ├── 3900 - Molar mass.cpp ├── 3910 - Mispelling.cpp ├── 3917 - Tiling a Grid With Dominoes.cpp ├── 3927 - Ambiguous Codes.cpp ├── 3929 - Car Plates Competition.cpp ├── 3930 - Drop the Triples.cpp ├── 3931 - Emoticons :-).cpp ├── 3932 - Finding Seats.cpp ├── 3933 - Galou is Back!.cpp ├── 3934 - He is Offside!.cpp ├── 3936 - Justice League.cpp ├── 3988 - IP-TV.cpp ├── 3995 - Pebbles.cpp ├── 4007 - Counting Squares.cpp ├── 4008 - Last Digit.cpp ├── 4009 - Decode Messages.cpp ├── 4043 - Ants.cpp ├── 4054 - Language Recognition.cpp ├── 4084 - Judging Olympia.cpp ├── 4085 - Hide That Number.cpp ├── 4088 - Fermat's Chirstmas Theorem.cpp ├── 4102 - Crazy Bits.cpp ├── 4113 - Race in Flatland.cpp ├── 4157 - Grey Area.cpp ├── 4158 - Expected Allowance.cpp ├── 4163 - Search of Concatenated Strings.cpp ├── 4184 - Sky Code.cpp ├── 4185 - Perfect Election.cpp ├── 4210 - Almost Shortest Path.cpp ├── 4211 - Bases.cpp ├── 4212 - Candy.cpp ├── 4214 - Electricity.cpp ├── 4215 - Feynman.cpp ├── 4218 - Traveling Shoemaker Problem.cpp ├── 4219 - Bora Bora.cpp ├── 4220 - Shrinking Polygons.cpp ├── 4232 - Sixth Grade Math.cpp ├── 4259 - Dangerous Tunnels.cpp ├── 4262 - Road Networks.cpp ├── 4268 - Bonus Adjustment.cpp ├── 4276 - Triangles.cpp ├── 4296 - Bring Your Own Horse.cpp ├── 4302 - Toll Road.cpp ├── 4303 - Top Secrets.cpp ├── 4304 - Transcribed Books.cpp ├── 4305 - Wizards.cpp ├── 4326 - Minimal Ratio Tree.cpp ├── 4332 - Blocks for kids.cpp ├── 4340 - Find Terrorists.cpp ├── 4405 - Tariff Plan.cpp ├── 4408 - Unlock the Lock.cpp ├── 4458 - Compact Triangulation.cpp ├── 4462 - Trip Verification.cpp ├── 4463 - Mentoring Assignment.cpp ├── 4464 - May the Right-Force be with you.cpp ├── 4474 - Code Lock.cpp ├── 4477 - File Recover.cpp ├── 4478 - Grapevine.cpp ├── 4479 - Hooligan.cpp ├── 4480 - Isosceles Triangles.cpp ├── 4481 - Jingle Composing.cpp ├── 4482 - Klingon Levels.cpp ├── 4505 - Working at the Restaurant.cpp ├── 4506 - Lights.cpp ├── 4509 - Haunted Graveyard.cpp ├── 4512 - Happy Telephones.cpp ├── 4513 - Slammering Aliens.cpp ├── 4540 - Windows.cpp ├── 4547 - Software Industry Revolution.cpp ├── 4600 - Block Game.cpp ├── 4601 - Euclid.cpp ├── 4603 - Knitting.cpp ├── 4604 - Minesweeper.cpp ├── 4605 - The Ninja Way.cpp ├── 4607 - Robot Challenge.cpp ├── 4608 - Mosaic.cpp ├── 4665 - Favorite Time.cpp ├── 4733 - Seinfeld.cpp ├── 4734 - Tiles of Tetris, NOT!.cpp ├── 4735 - Not So Flat After All.cpp ├── 4736 - Probability One.cpp ├── 4805 - Ants Colony.cpp ├── 4811 - Growing Strings.cpp ├── 4812 - Hyperactive Girl.cpp ├── 4813 - Ingenious Metro.cpp ├── 4815 - Kids' Wishes.cpp ├── 4823 - Game.cpp ├── 4869 - Profits.cpp ├── 4872 - Underground Cables.cpp ├── 4873 - Penney Game.cpp ├── 4925 - Quick Search.cpp ├── 4927 - Egyptian Fractions.cpp ├── 4975 - Casting Spells.cpp ├── 4976 - Defense Lines.cpp ├── 4977 - Enter The Dragon.cpp ├── 4979 - Game.cpp ├── 4981 - Insults.cpp ├── 5025 - Arranging Your Team.cpp ├── 5026 - Building Roads.cpp ├── 5027 - Card Game.cpp ├── 5034 - Jewel.cpp ├── 5064 - Serial Numbers.cpp ├── 5066 - Fire Drill.cpp ├── 5073 - Test Case Tweaking.cpp ├── 5713 - Qin Shi Huang's National Road System.cpp ├── 5752 - Search by template.cpp ├── 5753 - Roots Intervals.cpp ├── 5756 - Choosing a camera.cpp ├── 5759 - Painting.cpp ├── 5789 - Army Buddies.cpp ├── 5790 - Ball Stacking.cpp ├── 5792 - Diccion�rio Portu�ol.cpp ├── 5794 - File Retrieval.cpp ├── 5795 - Garden Fence.cpp ├── 5881 - Unique Encryption Keys.cpp ├── 5958 - Inverse Triangular Numbers.cpp ├── 5983 - MAGRID.cpp ├── 5987 - Distinct Primes.cpp ├── 5988 - Magical Bridges.cpp ├── 5990 - Array Diversity.cpp ├── 6067 - Bit Magic.cpp ├── 6068 - The Little Girl who Picks Mushrooms.cpp ├── 6070 - Conquer a New Region.cpp ├── 6073 - Math Magic.cpp ├── 6076 - Yukari's Birthday.cpp ├── 6542 - Hard Disk Drive.cpp ├── 6544 - Just Random.cpp ├── 6661 - Equal Sum Sets.cpp └── 6663 - Count the Regions.cpp ├── PKU ├── 1000 - A+B Problem.cpp ├── 1000.cpp ├── 1087 - A Plug for UNIX.cpp ├── 1117 - Pairs of integers.cpp ├── 1147 - Binary codes.cpp ├── 1149 - PIGS.cpp ├── 1265 - Area.cpp ├── 1283 - Moving Computer.cpp ├── 1442 - Black Box.cpp ├── 1469 - Courses.cpp ├── 1655 - Balancing Act.cpp ├── 1656 - Counting Black.cpp ├── 1658 - Eva's Problem.cpp ├── 1679 - The Unique MST.cpp ├── 1704 - Georgia and Bob.cpp ├── 1737 - Connected Graph.java ├── 1740 - A New Stone Game.cpp ├── 1922 - Ride to School.cpp ├── 1972 - Dice Stacking.cpp ├── 1977 - Odd Loving Bakers.cpp ├── 1990 - MooFest.cpp ├── 2002 - Squares.cpp ├── 2008 - Moo University - Team Tryouts.cpp ├── 2010 - Moo University - Financial Aid.cpp ├── 2084 - Game of Connections.java ├── 2155 - Matrix.cpp ├── 2192 - Zipper.cpp ├── 2311 - Cutting Game.cpp ├── 2344 - Honeymoon Hike.cpp ├── 2352 - Stars.cpp ├── 2425 - A Chess Game.cpp ├── 2479 - Maximum sum.cpp ├── 2485 - Highways.cpp ├── 2521 - How much did the businessman lose.cpp ├── 2593 - Max Sequence.cpp ├── 2656 - Unhappy Jinjin.cpp ├── 2752 - Seek the Name, Seek the Frame.cpp ├── 2781 - The mysterious X network.cpp ├── 2784 - Buy or Build.cpp ├── 2840 - Big Clock.cpp ├── 2901 - Hotel.cpp ├── 2914 - Minimum Cut.cpp ├── 2945 - Find the Clones.cpp ├── 2975 - Nim.cpp ├── 3164 - Command Network.cpp ├── 3167 - Cow Patterns.cpp ├── 3179 - Corral the Cows.cpp ├── 3219 - Binomial Coefficients.cpp ├── 3222 - Edge Pairing.cpp ├── 3243 - Clever Y.cpp ├── 3253 - Fence Repair.cpp ├── 3254 - Corn Fields.cpp ├── 3264 - Balanced Lineup.cpp ├── 3274 - Gold Balanced Lineup.cpp ├── 3276 - Face The Right Way.cpp ├── 3308 - Paratroopers.cpp ├── 3356 - AGTC.cpp ├── 3357 - Oreon.cpp ├── 3359 - Wordfish.cpp ├── 3372 - Candy Distribution.cpp ├── 3623 - Best Cow Line, Gold.cpp ├── 3650 - The Seven Percent Solution.cpp ├── 3652 - Persistent Bits.cpp ├── 3654 - Electronic Document Security.cpp ├── 3662 - Telephone Lines.cpp ├── 3664 - Election Time.cpp ├── 3694 - Network.cpp ├── 3764 - The xor-longest Path.cpp └── Main1000.java ├── Problemas propuestos └── Contest San Marcos 2012 │ ├── A.cpp │ ├── A.in │ ├── A.out │ ├── B.cpp │ ├── B.in │ ├── B.out │ ├── C.cpp │ ├── C.in │ ├── C.out │ └── gen.py ├── Project Euler ├── 101.py ├── 217 - Balanced Numbers.cpp ├── 301.txt ├── 345.cpp ├── 346.cpp ├── 347.cpp ├── 60.py └── 70.py ├── README ├── Russian Code Cup └── 2016 │ └── QualificationRound2 │ ├── A.cpp │ ├── B.cpp │ ├── C.cpp │ ├── D.cpp │ └── E.cpp ├── SGU ├── 154 - Factorial.cpp ├── 168 - Matrix.cpp ├── 176 - Flow Construction.cpp ├── 194 - Reactor Cooling.cpp ├── 236 - Greedy Path.cpp ├── 271 - Book Pile.cpp ├── 327 - Yet Another Palindrome.cpp ├── 354 - Just Matrix.cpp ├── 407 - Number of Paths in the Empire.cpp ├── 408 - Game with points.cpp ├── 415 - Necessary Coins.cpp ├── 441 - Set Division.cpp ├── 488 - Dales and Hills.cpp ├── 495 - Kids and Prizes.cpp ├── 499 - Greatest Greatest Common Divisor.cpp ├── 506 - Subsequences Of Substrings.cpp ├── 507 - Treediff.cpp ├── 527 - Explode 'Em All.cpp ├── 548 - Dragons and Princesses.cpp └── 552 - Database optimization.cpp ├── SPOJ Brasil ├── 1764 - Engenharia de Software.cpp └── 1850 - Conte os Fatores.cpp ├── SPOJ ├── Challenge │ ├── 12996 - Wow Square.cpp │ └── 3945 - Short Calculator (SHOCALC).cpp ├── Classical │ ├── 1 - Life, the Universe, and Everything.cpp │ ├── 100 - Tower of Babylon.cpp │ ├── 101 - Fishmonger.cpp │ ├── 1021 - Aibohphobia (2).cpp │ ├── 1021 - Aibohphobia.cpp │ ├── 1022 - Angels and Devils.cpp │ ├── 1028 - Hubulullu.cpp │ ├── 10285 - Why this kolaveri di.cpp │ ├── 1029 - Matrix Summation.cpp │ ├── 1030 - Triple Fat Ladies.cpp │ ├── 1031 - Up Subsequence.cpp │ ├── 1043 - Can you answer these queries I.cpp │ ├── 10444 - Coding.cpp │ ├── 10447 - Contaminated City.cpp │ ├── 10450 - Amoeba.cpp │ ├── 10452 - Caprica Cities.cpp │ ├── 10506 - Prendonians.cpp │ ├── 10507 - Cheese-rolling World Cup.cpp │ ├── 10570 - Longest Common Substring.cpp │ ├── 10575 - The Yellow Brick Road.cpp │ ├── 10608 - Unique Strings.cpp │ ├── 10612 - Funny Areas.cpp │ ├── 10643 - The Nerd Factor.cpp │ ├── 11 - Factorial.cpp │ ├── 11274 - Lights and Switches.cpp │ ├── 11276 - Adventure.cpp │ ├── 11326 - Arithmetic Evaluation.cpp │ ├── 11515 - I AM VERY BUSY.cpp │ ├── 1167 - Move To Invert.cpp │ ├── 11848 - Power with Combinatorics.cpp │ ├── 11851 - Power with Combinatorics(HARD).cpp │ ├── 12030 - Blackout.cpp │ ├── 12914 - Totient Extreme.cpp │ ├── 12969 - To inifinity and Beyond.cpp │ ├── 12978 - SHAPE GAME.cpp │ ├── 130 - Rent your airplane and make money.cpp │ ├── 137 - Partition.cpp │ ├── 1391 - Summing to a Square Prime.cpp │ ├── 1435 - Vertex Cover.cpp │ ├── 1437 - Longest path in a tree.cpp │ ├── 1459 - The Secret of an Aerolite.cpp │ ├── 154 - Sweet and Sour Rock.cpp │ ├── 1557 - Can you answer these queries II.cpp │ ├── 1677 - Halloween treats.cpp │ ├── 1693 - Coconuts.cpp │ ├── 1703 - Acronym Maker.cpp │ ├── 1710 - Two Ends.cpp │ ├── 1728 - Common Permutation.cpp │ ├── 176 - Sum of one-sequence.cpp │ ├── 178 - Road net.cpp │ ├── 1786 - In Danger.cpp │ ├── 1798 - Assistance Required.cpp │ ├── 181 - Scuba diver.cpp │ ├── 1837 - Pie.cpp │ ├── 1840 - Printer Queue.cpp │ ├── 1847 - No Change.cpp │ ├── 196 - Musketeers.cpp │ ├── 2 - Prime Generator.cpp │ ├── 2005 - Minus Operation.cpp │ ├── 203 - Potholers.cpp │ ├── 2050 - Strange Billboard.cpp │ ├── 206 - Bitmap.cpp │ ├── 209 - The Map.cpp │ ├── 2128 - K-In-A-Row.cpp │ ├── 237 - Sums in a Triangle.cpp │ ├── 2416 - Distinct Subsequences.cpp │ ├── 243 - Stable Marriage Problem.cpp │ ├── 2450 - Counting Rabbits.cpp │ ├── 247 - Chocolate.cpp │ ├── 2530 - Tiling a Grid With Dominoes.cpp │ ├── 263 - Period.cpp │ ├── 2699 - Recursive Sequence (Version II).cpp │ ├── 2742 - Summing Sums.cpp │ ├── 2815 - Increasing Subsequences.cpp │ ├── 2817 - Distinct Increasing Subsequences.cpp │ ├── 282 - Muddy Fields.cpp │ ├── 2826 - Round-Robin Scheduling.cpp │ ├── 2853 - Decode the Strings.cpp │ ├── 286 - Selfish Cities.cpp │ ├── 287 - Smart Network Administrator.cpp │ ├── 2879 - The Cow Doctor.cpp │ ├── 288 - Prime or Not.cpp │ ├── 2881 - Find the Clones.cpp │ ├── 2885 - Word Rings.cpp │ ├── 300 - Cable TV Network.cpp │ ├── 3007 - Oil Company.cpp │ ├── 31 - Fast Multiplication.cpp │ ├── 3184 - Game of Lines.cpp │ ├── 3196 - Divisibility Relation.cpp │ ├── 32 - A Needle in the Haystack.cpp │ ├── 3267 - D-query.cpp │ ├── 338 - Road.cpp │ ├── 339 - Recursive Sequence.cpp │ ├── 3405 - Almost Shortest Path.cpp │ ├── 3406 - Bases.cpp │ ├── 3407 - Candy.cpp │ ├── 3409 - Electricity.cpp │ ├── 3410 - Feynman.cpp │ ├── 3414 - Bora Bora.cpp │ ├── 3415 - Shrinking Polygons.cpp │ ├── 3442 - The last digit.cpp │ ├── 345 - Mixtures.cpp │ ├── 346 - Bytelandian gold coins.cpp │ ├── 3477 - Baby.cpp │ ├── 3579 - Disjoint Paths.cpp │ ├── 3605 - Minimum Rotations.cpp │ ├── 3713 - Primitive Root.cpp │ ├── 3724 - Rainbow Ride.cpp │ ├── 376 - A concrete simulation.cpp │ ├── 3868 - Total Flow.cpp │ ├── 3871 - GCD Extreme.cpp │ ├── 3877 - Cvjetici.cpp │ ├── 3878 - Rectangles Perimeter.cpp │ ├── 3883 - LATGACH3.cpp │ ├── 3885 - Coins Game.cpp │ ├── 39 - Piggy Bank.cpp │ ├── 3923 - Philosophers Stone.cpp │ ├── 394 - Alphacode.cpp │ ├── 3946 - K-th Number.cpp │ ├── 3977 - Police Query.cpp │ ├── 3982 - String problem.cpp │ ├── 403 - Sort fractions.cpp │ ├── 4033 - Phone List.cpp │ ├── 4082 - BLAST.cpp │ ├── 4103 - Extend to Palindrome.cpp │ ├── 4110 - Fast Maximum Flow.cpp │ ├── 4141 - Euler Totient Function.cpp │ ├── 4164 - A conjecture of Paul Erdős.cpp │ ├── 417 - The lazy programmer.cpp │ ├── 4201 - Coder Ratings.cpp │ ├── 4206 - Fast Maximum Matching.cpp │ ├── 4226 - Japan.cpp │ ├── 4227 - Shortest pair of paths.cpp │ ├── 423 - Assignments.cpp │ ├── 4273 - Train TimeTable.cpp │ ├── 4300 - Rectangles.cpp │ ├── 4474 - Longest Palindromic Substring.cpp │ ├── 4485 - MoviZone vs VinaGone.cpp │ ├── 4560 - The Double HeLiX.cpp │ ├── 4564 - Chop Ahoy! Revisited!.cpp │ ├── 4580 - ABCDEF.cpp │ ├── 4657 - Gas Wars.cpp │ ├── 4839 - Ant.cpp │ ├── 484 - Fossil in the Ice.cpp │ ├── 5117 - Wine trading in Gergovia.cpp │ ├── 5295 - Adjacent Bit Counts.cpp │ ├── 5542 - Counting pairs (BIT).cpp │ ├── 5542 - Counting pairs (Segment tree + Lazy propagation).cpp │ ├── 6044 - Minimum Diameter Circle.cpp │ ├── 6219 - Edit distance.cpp │ ├── 6221 - Increasing Powers of K.py │ ├── 6256 - Inversion Count.cpp │ ├── 63 - Square Brackets.cpp │ ├── 64 - Permutations.cpp │ ├── 6501 - Median.cpp │ ├── 6556 - N DIV PHI_N.py │ ├── 660 - Dungeon of Death.cpp │ ├── 687 - Repeats.cpp │ ├── 7099 - Advanced Edit Distance.cpp │ ├── 7100 - Back To The Polygon.cpp │ ├── 7101 - Charly And Nito.cpp │ ├── 7102 - Doing The Word Wrap.cpp │ ├── 7103 - Edit Distance.cpp │ ├── 7104 - Feanor The Elf.cpp │ ├── 7107 - G Key.cpp │ ├── 7108 - Heptadecimal Numbers.cpp │ ├── 7109 - Indicator of progression.cpp │ ├── 7129 - Happy Telephones.cpp │ ├── 7150 - Palindrome 2000.cpp │ ├── 7212 - Find String Roots.cpp │ ├── 74 - Divisor Summation.cpp │ ├── 740 - Treats for the Cows.cpp │ ├── 741 - Steady Cow Assignment.cpp │ ├── 7423 - File Recover Testing.cpp │ ├── 7427 - Jara’s Legacy.cpp │ ├── 7430 - Tower Of Hanoi - Revisited.cpp │ ├── 7487 - Flibonakki.cpp │ ├── 7586 - Number of Palindromes.cpp │ ├── 77 - New bricks disorder.cpp │ ├── 7775 - Explicit Formula.cpp │ ├── 78 - Marbles.cpp │ ├── 7805 - Kitchen Robot.cpp │ ├── 7809 - Cow Photographs.cpp │ ├── 7881 - Ljutnja.cpp │ ├── 7882 - Tabovi.cpp │ ├── 7975 - Tri graphs.cpp │ ├── 8 - Complete the Sequence!.cpp │ ├── 8001 - Fibonacci Sum.cpp │ ├── 8002 - Horrible Queries (BIT).cpp │ ├── 8002 - Horrible Queries.cpp │ ├── 8061 - Christmas Play.cpp │ ├── 8132 - Street Trees.cpp │ ├── 8349 - BRODOVI.cpp │ ├── 861 - Counting inversions.cpp │ ├── 8670 - THE MAX LINES.cpp │ ├── 8980 - Cost.cpp │ ├── 9012 - Maximum Self-Matching.cpp │ ├── 9032 - Cube Free Numbers.cpp │ ├── 91 - Two squares or not two squares.cpp │ ├── 912 - Submatrix of submatrix.cpp │ ├── 9138 - Pyramid Sums 2.cpp │ ├── 9503 - Working in Beijing.cpp │ ├── 9547 - Counting d-pairs.cpp │ ├── 9644 - Imperialism.cpp │ ├── 9693 - Revenge of Fibonacci.cpp │ ├── 97 - Party Schedule.cpp │ ├── 9788 - Friends of Friends.cpp │ ├── 98 - Dance Floor.cpp │ ├── 9964 - Fibonacci vs Polynomial.cpp │ ├── GEOPROB.java │ └── QTREE5.cpp ├── Partial │ ├── 2211 - Mars Map.cpp │ ├── 6409 - Suffix Array (linear).cpp │ └── 6409 - Suffix Array.cpp └── Tutorial │ ├── 450 - Enormous Input Test.cpp │ └── 8219 - Problem 5.cpp ├── TJU ├── 1001 - Hello, world!.cpp ├── 1002 - Maya Calendar.cpp ├── 1004 - John's trip.cpp ├── 1007 - Joseph.cpp ├── 1008 - Cipher.cpp ├── 1011 - Area.cpp ├── 1015 - Gridland.cpp ├── 1017 - Number Game.cpp ├── 1024 - Intervals.cpp ├── 1025 - Robot.cpp ├── 1026 - Network.cpp ├── 1028 - Stars.cpp ├── 1031 - LC-Display.cpp ├── 1035 - S-Trees.cpp ├── 1036 - Rails.cpp ├── 1037 - King.cpp ├── 1038 - Prime Land.cpp ├── 1039 - Word.cpp ├── 1044 - Strategic Game.cpp ├── 1046 - Multiple.cpp ├── 1047 - Girls and Boys.cpp ├── 1049 - Rectangles.cpp ├── 1050 - Courses.cpp ├── 1051 - Closest Common Ancestors.cpp ├── 1056 - Labyrinth.cpp ├── 1057 - Piggy-Bank.cpp ├── 1058 - Lifting the Stone.cpp ├── 1059 - Play on Words.cpp ├── 1062 - Complete the sequence!.cpp ├── 1065 - Factorial.cpp ├── 1073 - Smith Numbers.cpp ├── 1074 - Atlantis.cpp ├── 1075 - Stockbroker Grapevine.cpp ├── 1077 - Channel Allocation.cpp ├── 1078 - Alien Security.cpp ├── 1079 - Octal Fractions.cpp ├── 1089 - Happy 2004.cpp ├── 1090 - City hall.cpp ├── 1091 - Finding Nemo.cpp ├── 1093 - Argus.cpp ├── 1100 - Pi.cpp ├── 1102 - Machined Surfaces.cpp ├── 1105 - Word Index.cpp ├── 1112 - Integer Inquiry.java ├── 1117 - Game Prediction.cpp ├── 1119 - Machine Schedule.cpp ├── 1120 - Mileage Bank.cpp ├── 1123 - Counterfeit Dollar.cpp ├── 1127 - DNA Sorting.cpp ├── 1129 - Arbitrage.cpp ├── 1130 - The Tower of Babylon.cpp ├── 1131 - The Circumference of the Circle.cpp ├── 1132 - Knight Moves.cpp ├── 1133 - Eeny Meeny Moo.cpp ├── 1134 - Lotto.cpp ├── 1136 - Humble Numbers.cpp ├── 1138 - Binomial Showdown.cpp ├── 1139 - Compromise.cpp ├── 1140 - Dungeon Master.cpp ├── 1142 - Frogger.cpp ├── 1144 - Tree Recovery.cpp ├── 1150 - Sum of Factorials.cpp ├── 1153 - Word Reversal.cpp ├── 1154 - A Mathematical Curiosity.cpp ├── 1156 - Niven Numbers.cpp ├── 1159 - A Plug for UNIX.cpp ├── 1162 - Biorhythms.cpp ├── 1168 - Team Queue.cpp ├── 1169 - Error Correction.cpp ├── 1171 - Goldbach's Conjecture.cpp ├── 1173 - Matrix.cpp ├── 1176 - Recaman's Sequence.cpp ├── 1178 - Fractal.cpp ├── 1179 - Game of Connections.java ├── 1180 - Inversion.cpp ├── 1188 - Tian Ji -- The Horse Racing.cpp ├── 1189 - Islands and Bridges.cpp ├── 1192 - Undercut.cpp ├── 1193 - Currency Exchange.cpp ├── 1196 - Web Navigation.cpp ├── 1205 - Compound Words.cpp ├── 1207 - The Game of 31.cpp ├── 1208 - Fibonacci Numbers.java ├── 1211 - Substitution Cypher.cpp ├── 1216 - Is Bigger Smarter.cpp ├── 1217 - Advanced Fruits.cpp ├── 1224 - HTML.cpp ├── 1230 - Magazine Delivery.cpp ├── 1233 - Number Steps.cpp ├── 1242 - Parencodings.cpp ├── 1254 - Forgetful Tehran.cpp ├── 1257 - f91.cpp ├── 1258 - Communication System.cpp ├── 1259 - Number Sequence.cpp ├── 1263 - Substrings.java ├── 1271 - Grandpa's Other Estate.cpp ├── 1279 - Rotten Ropes.cpp ├── 1283 - A DP Problem.cpp ├── 1287 - Dick and Jane.cpp ├── 1291 - Hippity Hopscotch.cpp ├── 1296 - Prime Distance.cpp ├── 1306 - Fire Net.cpp ├── 1310 - Do the Untwist.cpp ├── 1312 - The Game.cpp ├── 1313 - Parallelogram Counting.cpp ├── 1314 - Dice Stacking.cpp ├── 1317 - Median Weight Bead.cpp ├── 1318 - A Mini Locomotive.cpp ├── 1319 - Odd Loving Bakers.cpp ├── 1322 - Election.cpp ├── 1325 - Fire Station.cpp ├── 1326 - Soundex.cpp ├── 1330 - Mine Sweeper.cpp ├── 1335 - Y2K Accounting Bug.cpp ├── 1339 - Steps.cpp ├── 1348 - Freckles.cpp ├── 1350 - Primary Arithmetic.cpp ├── 1355 - Jolly Jumpers.cpp ├── 1356 - Tug of War.cpp ├── 1363 - Fiber Network.cpp ├── 1366 - Gopher II.cpp ├── 1368 - WERTYU.cpp ├── 1373 - Sumsets.cpp ├── 1375 - Ones.cpp ├── 1378 - Babelfish.cpp ├── 1380 - A multiplication game.cpp ├── 1382 - Pairsumonious Numbers.cpp ├── 1387 - Discrete Logging.cpp ├── 1389 - Forests.cpp ├── 1391 - Hay Points.cpp ├── 1394 - Power Strings.cpp ├── 1398 - Square.cpp ├── 1399 - Blocks.cpp ├── 1401 - All in All.cpp ├── 1402 - Balanced Food.cpp ├── 1404 - Diplomatic License.cpp ├── 1405 - Polygon Programming with Ease.cpp ├── 1407 - Paths on a Grid.cpp ├── 1410 - Euclid's Game.cpp ├── 1411 - Arctic Network.cpp ├── 1412 - Above Average.cpp ├── 1414 - Temple of Dune.cpp ├── 1415 - Ferry Loading II.cpp ├── 1417 - Basic.cpp ├── 1418 - Rock, Scissors, Paper.cpp ├── 1423 - Guessing Game.cpp ├── 1424 - Russian Dolls.cpp ├── 1425 - Combination Lock.cpp ├── 1438 - Perfect Pth Powers.cpp ├── 1445 - Ants.cpp ├── 1448 - Mint.cpp ├── 1452 - Antiarithmetic.cpp ├── 1455 - Ultra-QuickSort.cpp ├── 1457 - Beat the Spread!.cpp ├── 1469 - Wooden Sticks.cpp ├── 1470 - Modular multiplication of polynomials.cpp ├── 1471 - Human Gene Functions.cpp ├── 1472 - Flip and Shift.cpp ├── 1473 - Moving Tables.cpp ├── 1476 - A simple task.cpp ├── 1477 - Binary Numbers.cpp ├── 1486 - Brownie Points.cpp ├── 1498 - Input.cpp ├── 1499 - Bridging Signals.cpp ├── 1500 - Vase Collection.cpp ├── 1502 - Who's the Boss.cpp ├── 1503 - Subway Tree Systems.cpp ├── 1504 - Prison Rearrangement.cpp ├── 1505 - Sightseeing Tour.cpp ├── 1508 - Watchdog.cpp ├── 1509 - Taxi Cab Scheme.cpp ├── 1511 - Card Game Cheater.cpp ├── 1512 - Investment.cpp ├── 1514 - SETI.cpp ├── 1516 - Climbing Worm.cpp ├── 1517 - Stacking Tower.cpp ├── 1519 - Ball Toss.cpp ├── 1523 - Knockout Tournament.cpp ├── 1525 - One Person The Price is Right.cpp ├── 1526 - Slots of Fun.cpp ├── 1527 - Euchre Results.cpp ├── 1528 - Least Common Multiple.cpp ├── 1529 - Granny's Bike.cpp ├── 1530 - Crypto Columns.cpp ├── 1531 - Decorations.cpp ├── 1533 - Phone Home.cpp ├── 1534 - Polly Nomials.cpp ├── 1535 - Pushing Boxes.cpp ├── 1537 - This Takes the Cake.cpp ├── 1538 - Disputed Claims.cpp ├── 1539 - Palindrome Problem El Borpem Ord Nilap.cpp ├── 1541 - Alphacode.cpp ├── 1542 - Anti-prime Sequences.cpp ├── 1547 - To and Fro.cpp ├── 1549 - u Calculate e.cpp ├── 1551 - Digital Roots.cpp ├── 1552 - Scramble Sort.cpp ├── 1555 - N-Credible Mazes.cpp ├── 1557 - Color Me Less.cpp ├── 1558 - P,MTHBGWB.cpp ├── 1563 - Round and Round We Go.cpp ├── 1564 - To the Max.cpp ├── 1567 - Intersecting Lines.cpp ├── 1571 - Perfection.cpp ├── 1574 - Financial Management.cpp ├── 1575 - I Think I Need a Houseboat.cpp ├── 1577 - A New Growth Industry.cpp ├── 1582 - Galaxy World.cpp ├── 1583 - Anakin's mission.cpp ├── 1584 - Attack Of The Clones.java ├── 1587 - The Empire Strikes Back.java ├── 1588 - Star Tennis.cpp ├── 1590 - IBM Minus One.cpp ├── 1591 - Geometry Made Simple.cpp ├── 1593 - URLs.cpp ├── 1594 - Definite Values.cpp ├── 1595 - Triangles.cpp ├── 1596 - Instant Complexity.cpp ├── 1597 - There's Treasure Everywhere!.cpp ├── 1598 - Video Surveillance.cpp ├── 1599 - Pushing Boxes.cpp ├── 1601 - Box of Bricks.cpp ├── 1609 - Blowing Fuses.cpp ├── 1614 - Is It A Tree.cpp ├── 1624 - Programmer, Rank Thyself.cpp ├── 1626 - Function Run Fun.cpp ├── 1630 - String Matching.cpp ├── 1633 - Zipper.cpp ├── 1634 - Lenny's Lucky Lotto Lists.cpp ├── 1636 - Going Home.cpp ├── 1637 - Specialized Four-Digit Numbers.cpp ├── 1642 - Floppies.cpp ├── 1643 - Golf.cpp ├── 1644 - Reverse Text.cpp ├── 1656 - In Danger.cpp ├── 1676 - Networking.cpp ├── 1679 - Hidden Password.cpp ├── 1680 - Crazy tea party.cpp ├── 1683 - Common Subsequence.cpp ├── 1687 - Period.cpp ├── 1692 - Cable TV Network.cpp ├── 1695 - Count on Canton.cpp ├── 1697 - Strategies.cpp ├── 1698 - StuPId.cpp ├── 1699 - Binary Tree.cpp ├── 1701 - Stamps.cpp ├── 1704 - Pimp My Ride.cpp ├── 1705 - Scavenger Hunt.cpp ├── 1706 - A Bug's Life.cpp ├── 1709 - Incomplete chess boards.cpp ├── 1713 - Heavy Transportation.cpp ├── 1715 - Yeehaa!.cpp ├── 1720 - Brainman.cpp ├── 1726 - World Cup Noise.cpp ├── 1730 - Self Numbers.cpp ├── 1731 - Strange Towers of Hanoi.cpp ├── 1735 - Cramer's Rule.cpp ├── 1736 - Knight Moves.cpp ├── 1737 - Rat Attack.cpp ├── 1738 - Automatic Poetry.cpp ├── 1743 - King's Treasure.cpp ├── 1746 - How many sums.cpp ├── 1748 - Power Digit.cpp ├── 1753 - Hamming Problem.cpp ├── 1754 - Circular Area.cpp ├── 1759 - Multiplication Puzzle.cpp ├── 1765 - Longest Ordered Subsequence.cpp ├── 1767 - Very Simple Problem.cpp ├── 1771 - Rock-Paper-Scissors Tournament.cpp ├── 1778 - A Walk Through the Forest.cpp ├── 1779 - Tri Tiling.cpp ├── 1782 - The jackpot.cpp ├── 1785 - Jack.cpp ├── 1788 - Raising Modulo Numbers.cpp ├── 1791 - Lloyd Fifteen Puzzle.cpp ├── 1793 - Assistance Required.cpp ├── 1794 - The Bottom of a Graph.cpp ├── 1800 - Largest Rectangle in a Histogram.cpp ├── 1801 - Crashing Robots.cpp ├── 1805 - Electrical Outlets.cpp ├── 1808 - Necklace Decomposition.cpp ├── 1809 - Playground.cpp ├── 1810 - A Contesting Decision.cpp ├── 1812 - Choose Your Words Carefully.cpp ├── 1818 - A Simple Question of Chemistry.cpp ├── 1819 - Spelling Be.cpp ├── 1823 - Cantoring Along.cpp ├── 1825 - Filling Out the Team.cpp ├── 1830 - Tangled in Cables.cpp ├── 1833 - The Hardest Problem Ever.cpp ├── 1850 - Songs.cpp ├── 1851 - Sudoku.cpp ├── 1852 - Tour.cpp ├── 1855 - Computer Transformation.java ├── 1856 - Anagrammatic Distance.cpp ├── 1859 - Goldbach's Conjecture.cpp ├── 1868 - Count the factors.cpp ├── 1872 - Camel trading.cpp ├── 1874 - Back to Intermediate Math.cpp ├── 1884 - Pascal's Travels.cpp ├── 1885 - Overflowing Bookshelf.cpp ├── 1886 - Connect.cpp ├── 1887 - Copier Reduction.cpp ├── 1890 - Consecutive Digits.cpp ├── 1891 - Leapin' Lizards.cpp ├── 1892 - Netiquette.cpp ├── 1896 - The Fortified Forest.cpp ├── 1901 - Booklet Printing.cpp ├── 1902 - Finding Rectangles.cpp ├── 1903 - Word Amalgamation.cpp ├── 1905 - Myacm Triangles -.cpp ├── 1906 - Exchange Rates.cpp ├── 1907 - Loansome Car Buyer.cpp ├── 1908 - Automatic Editing.cpp ├── 1909 - Robot Motion.cpp ├── 1910 - The Triangle Game.cpp ├── 1911 - Easier Done than Said.cpp ├── 1912 - Colorville.cpp ├── 1916 - Transmitters.cpp ├── 1917 - W's Cipher.cpp ├── 1920 - Hangover.cpp ├── 1922 - Image Perimeters.cpp ├── 1923 - Tanning Salon.cpp ├── 1924 - Jungle Roads.cpp ├── 1925 - Clay Bully.cpp ├── 1930 - Doubles.cpp ├── 1935 - Symmetric Order.cpp ├── 1936 - Flow Layout.cpp ├── 1939 - Speed Limit.cpp ├── 1943 - Gleaming the Cubes.cpp ├── 1945 - Perfect Cubes.cpp ├── 1948 - Basically Speaking.cpp ├── 1951 - Polynomial Showdown.cpp ├── 1959 - Oil Deposits.cpp ├── 1961 - Sum It Up.cpp ├── 1962 - Skew Binary.cpp ├── 1963 - Haiku Review.cpp ├── 1980 - Perms.cpp ├── 1986 - Smallest DIfference.cpp ├── 1988 - Last Digits.cpp ├── 1991 - Sequence.cpp ├── 2001 - Counting Sheep.cpp ├── 2005 - Queens, Knights and Pawns.cpp ├── 2009 - Two Ends.cpp ├── 2010 - Sum of Consecutive Prime Numbers.cpp ├── 2015 - Atomic Car Race.cpp ├── 2020 - Palindromes.cpp ├── 2025 - Prime Cuts.cpp ├── 2027 - Uniform Generator.cpp ├── 2033 - Risk.cpp ├── 2034 - Just the facts.cpp ├── 2040 - Eight.cpp ├── 2041 - Ratio.cpp ├── 2043 - Does This Make Me Look Fat?.cpp ├── 2047 - Deeper Blue.cpp ├── 2051 - Keep on Truckin'.cpp ├── 2052 - Blurred Vision.java ├── 2054 - Exact Change Only.java ├── 2056 - Series Determination.cpp ├── 2057 - T-Shirt Gumbo.java ├── 2062 - Choose Your Own Adventure.cpp ├── 2066 - No Brainer.cpp ├── 2068 - Defining Moment.cpp ├── 2075 - Four Quarters.cpp ├── 2076 - The Drunk Jailer.cpp ├── 2085 - Candy Sharing Game.cpp ├── 2090 - Rhyme Schemes.cpp ├── 2101 - Bullseye.cpp ├── 2103 - Flipping Pancake.cpp ├── 2104 - Model Rocket Height.cpp ├── 2117 - Run, Run, Runaround Numbers.cpp ├── 2120 - Pseudo-Random Numbers.cpp ├── 2122 - Help!.cpp ├── 2123 - Head or Tail.cpp ├── 2124 - Land Division Tax.cpp ├── 2127 - Magic Trick.cpp ├── 2130 - Grandpa is Famous.cpp ├── 2132 - Ambiguous permutations.cpp ├── 2140 - Tornado.cpp ├── 2142 - Pascal Library.cpp ├── 2145 - Where Are My Genes.cpp ├── 2146 - Computer DJ.cpp ├── 2147 - P-Networks.cpp ├── 2149 - 01000001.cpp ├── 2157 - Sequence Sum Possibilities.cpp ├── 2159 - Black Box.cpp ├── 2169 - Number Sequence.cpp ├── 2170 - Balance Trip.cpp ├── 2171 - Counting Substrings.cpp ├── 2172 - Qiushi Bookstore.cpp ├── 2175 - Computer Games.cpp ├── 2176 - Hill's Trouble.cpp ├── 2177 - Magic Sticks.cpp ├── 2179 - Magic Sticks Again.cpp ├── 2180 - Number Sequence again.cpp ├── 2181 - Qiushi Bookstore Again.cpp ├── 2183 - Checker Game.cpp ├── 2184 - Computer Games II.cpp ├── 2187 - Computer Games III.cpp ├── 2188 - Sum of Factorials.cpp ├── 2189 - The Key Stations.cpp ├── 2190 - Nuanran's Idol.cpp ├── 2192 - Prairie dogs I.cpp ├── 2193 - A Simple Game.cpp ├── 2194 - Mine.cpp ├── 2195 - 2006 World Cup.cpp ├── 2196 - Nuanran's Idol II.cpp ├── 2198 - Monkey's Game.cpp ├── 2199 - A+B Problem.cpp ├── 2200 - Knight's Travel.cpp ├── 2210 - Adding Reversed Numbers.cpp ├── 2217 - Invitation Cards.cpp ├── 2218 - Super Square.cpp ├── 2219 - A famous math puzzle.cpp ├── 2221 - Weight Weigh.cpp ├── 2223 - False Coin.cpp ├── 2226 - Parliament.cpp ├── 2230 - Gangsters.cpp ├── 2231 - Super A+B Problem.cpp ├── 2232 - A Friendly Game.cpp ├── 2233 - WTommy's Trouble.cpp ├── 2236 - Partial Sums.cpp ├── 2237 - Sea Battle.cpp ├── 2241 - Ancestor.cpp ├── 2243 - Number Sequence.cpp ├── 2245 - A simple card game.cpp ├── 2248 - Channel Design.cpp ├── 2252 - Going to Alpha Centauri (iterativo).cpp ├── 2252 - Going to Alpha Centauri (memoization).cpp ├── 2254 - Ancient Keyboard.cpp ├── 2255 - Best SMS to Type.cpp ├── 2272 - Traffic Jam.cpp ├── 2288 - Highways.cpp ├── 2290 - Ferry Loading IV.cpp ├── 2291 - Card Hands.cpp ├── 2294 - How many 0's.cpp ├── 2300 - Firepersons.cpp ├── 2303 - English-Number Translator.cpp ├── 2308 - Divisors.cpp ├── 2312 - Help Me with the Game.cpp ├── 2315 - Brackets sequence.cpp ├── 2316 - Cable master.cpp ├── 2321 - Pairs of integers.cpp ├── 2322 - Nearest number - 2.cpp ├── 2327 - Simple prefix compression.cpp ├── 2333 - Feel Good.cpp ├── 2339 - Diophantus of Alexandria.cpp ├── 2340 - Tudoku.cpp ├── 2343 - Knights of the Round Table.cpp ├── 2344 - Honeymoon Hike.cpp ├── 2346 - Gauß in Elementary School.cpp ├── 2350 - Laserbox.cpp ├── 2353 - Reduced ID Numbers.cpp ├── 2369 - Circle Drawing.cpp ├── 2391 - Ancient Cipher.cpp ├── 2404 - Bin Packing.cpp ├── 2407 - 4 Values whose Sum is 0.cpp ├── 2420 - S-nim.cpp ├── 2425 - Tourist.cpp ├── 2427 - The Cow Doctor.cpp ├── 2432 - Martian Mining.cpp ├── 2433 - Word Rings.cpp ├── 2442 - Last digit.cpp ├── 2468 - Counting Letters.cpp ├── 2469 - Friends.cpp ├── 2470 - Robot in Maze.cpp ├── 2476 - Semi-prime H-numbers.cpp ├── 2483 - Nasty Hacks.cpp ├── 2489 - Honeycomb Walk.cpp ├── 2490 - Broken Necklace.cpp ├── 2491 - Hello Kitty.cpp ├── 2493 - Equidivisions.cpp ├── 2501 - Score.cpp ├── 2502 - Digit Generator.cpp ├── 2504 - Pinary.cpp ├── 2506 - Seminar Room.cpp ├── 2515 - The Bavarian Beer Party.cpp ├── 2518 - Rummikub.cpp ├── 2520 - Quicksum.cpp ├── 2521 - Linear Pachinko.cpp ├── 2522 - Surprising Strings.cpp ├── 2524 - Frugal Search.cpp ├── 2525 - Go Go Gorelians.cpp ├── 2526 - Root of the Problem.cpp ├── 2530 - AGTC.cpp ├── 2531 - Oreon.cpp ├── 2533 - Wordfish.cpp ├── 2537 - Quick Change.cpp ├── 2538 - Triangular Sums.cpp ├── 2542 - Visible Lattice Points.cpp ├── 2547 - Subsequence.cpp ├── 2548 - Celebrity jeopardy.cpp ├── 2553 - Japan.cpp ├── 2554 - Shortest pair of paths.cpp ├── 2556 - Football Foundation (FOFO).cpp ├── 2560 - The Explorer.cpp ├── 2561 - Caterpillar.cpp ├── 2562 - Hie with the Pie.cpp ├── 2563 - Mahershalalhashbaz, Nebuchadnezzar, and Billy Bob Benjamin Go to the Regionals.cpp ├── 2569 - The Idiot of the Year Contest.cpp ├── 2576 - Rectangle Cutting.cpp ├── 2577 - Rounders.cpp ├── 2591 - Wine Trading in Gergovia.cpp ├── 2592 - Homogeneous Squares.cpp ├── 2593 - The Pilots Brothers Refrigerator.cpp ├── 2598 - The lazy programmer.cpp ├── 2601 - Dirichlet's Theorem on Arithmetic Progressions.cpp ├── 2610 - Sum of Different Primes.cpp ├── 2616 - Budget.cpp ├── 2624 - Numeral System.cpp ├── 2625 - Traveling by Stagecoach.cpp ├── 2627 - Cleaning Robot.cpp ├── 2628 - Subsequence.cpp ├── 2633 - Smart Sister.cpp ├── 2634 - Paratroopers.cpp ├── 2636 - Hanafuda Shuffle.cpp ├── 2637 - Red and Black.cpp ├── 2644 - Pie.cpp ├── 2647 - Printer Queue.cpp ├── 2648 - Prime Path.cpp ├── 2650 - Leonardos Notebook.cpp ├── 2654 - Jackpot.cpp ├── 2656 - Exploding CPU.cpp ├── 2658 - Lagrange's Four-Square Theorem.cpp ├── 2674 - Java vs C++.cpp ├── 2676 - When Can We Meet?.cpp ├── 2677 - Get Many Persimmon Trees.cpp ├── 2686 - Sudoku Checker.cpp ├── 2693 - The Mailbox Manufacturers.cpp ├── 2696 - Collecting Beepers.cpp ├── 2698 - Goldbach's Conjecture.cpp ├── 2704 - Destroying The Graph.cpp ├── 2706 - Factoring a Polynomial.cpp ├── 2714 - Collecting Bugs.cpp ├── 2718 - Graveyard Design.cpp ├── 2720 - Incredible! Impossible!.cpp ├── 2722 - K-th Number.cpp ├── 2729 - Godfather.cpp ├── 2735 - Bridges.cpp ├── 2741 - Halloween holidays.cpp ├── 2743 - Japanese Puzzle.cpp ├── 2745 - Permutation Recovery.cpp ├── 2754 - Cow Sorting.cpp ├── 2756 - The Cow Lexicon.cpp ├── 2758 - Silver Cow Party.cpp ├── 2760 - Bronze Lilypad Pond.cpp ├── 2761 - Buy One Get One Free.cpp ├── 2762 - Balanced Lineup.cpp ├── 2767 - Qualified Primes.cpp ├── 2768 - Making Change.cpp ├── 2769 - The Bale Tower (DFS).cpp ├── 2769 - The Bale Tower (DP).cpp ├── 2770 - VIP Seats.cpp ├── 2771 - Don't Be Late.cpp ├── 2772 - Parallelogram.cpp ├── 2773 - Fruit Trees.cpp ├── 2775 - Bee Tree.cpp ├── 2779 - Fishing.cpp ├── 2780 - Homework.cpp ├── 2782 - I am Lord Voldemort.cpp ├── 2783 - Amicable Pairs.cpp ├── 2784 - Gold Balanced Lineup.cpp ├── 2786 - Face The Right Way.cpp ├── 2791 - Bovine Latin.cpp ├── 2792 - Cows of the Round Table.cpp ├── 2793 - A Simple Problem.cpp ├── 2794 - Bus.cpp ├── 2796 - Erdos Number.cpp ├── 2797 - Erdos' Travel.cpp ├── 2798 - Farey Sequence.cpp ├── 2799 - Playground.cpp ├── 2800 - Cube.cpp ├── 2801 - Binary Trees.cpp ├── 2802 - Tom's Game.cpp ├── 2803 - The Quadratic Equation.cpp ├── 2804 - The Art Gallery Problem.cpp ├── 2805 - Prairie dogs III.cpp ├── 2807 - Number Sort.cpp ├── 2808 - String's Puzzle.cpp ├── 2812 - Travel.cpp ├── 2815 - Searching Problem.cpp ├── 2816 - Bookshelf.cpp ├── 2818 - Prairie dogs IV.cpp ├── 2819 - Travel.cpp ├── 2820 - How many different ways.cpp ├── 2821 - Grouping Problem.cpp ├── 2822 - Cheapest Palindrome.cpp ├── 2823 - Dining.cpp ├── 2824 - City Horizon.cpp ├── 2825 - Catch That Cow.cpp ├── 2826 - Fliptile.cpp ├── 2827 - Cow Solitaire.cpp ├── 2828 - The Flower Garden.cpp ├── 2829 - Cow Counting.cpp ├── 2830 - Bronze Cow Party.cpp ├── 2831 - Wormholes.cpp ├── 2834 - Cow Picnic.cpp ├── 2835 - Cow Roller Coaster.cpp ├── 2838 - The Eating Puzzle.cpp ├── 2839 - Dream Counting.cpp ├── 2841 - Bitwise Reverse.cpp ├── 2842 - Course.cpp ├── 2843 - Diamonds.cpp ├── 2852 - Bad Hair Day.cpp ├── 2855 - New Cow Brands.cpp ├── 2856 - Serious Cow Tag.cpp ├── 2857 - Digit Sorting.cpp ├── 2859 - S Number.cpp ├── 2861 - Divisors.cpp ├── 2862 - CityStar.cpp ├── 2866 - Mountain Majesties.cpp ├── 2867 - Picking Problem.cpp ├── 2869 - Nuanran's Game.cpp ├── 2870 - The K-th City.cpp ├── 2872 - Barbara Bennett's Wild Numbers.cpp ├── 2877 - Paradox With Averages.cpp ├── 2883 - City Mapping.cpp ├── 2891 - Sub-Sequence.cpp ├── 2892 - Task.cpp ├── 2896 - Antimonotonicity.cpp ├── 2897 - Humidex.cpp ├── 2901 - Very easy.cpp ├── 2902 - palindrome.java ├── 2904 - Counting.cpp ├── 2908 - Annoying painting tool.cpp ├── 2909 - Black and white painting.cpp ├── 2910 - Cylinder.cpp ├── 2911 - Deli Deli.cpp ├── 2912 - Expressions.cpp ├── 2913 - Frequent values.cpp ├── 2914 - Grocery store.cpp ├── 2915 - Halloween treats.cpp ├── 2916 - Help Me.cpp ├── 2917 - The Watchman.cpp ├── 2918 - LCM Revisited.cpp ├── 2920 - Help Hakim.cpp ├── 2924 - Modulus.cpp ├── 2926 - Contest.cpp ├── 2927 - Cycle.cpp ├── 2930 - Average distance.cpp ├── 2933 - Pachinko.cpp ├── 2934 - Election Time.cpp ├── 2935 - Phone List.cpp ├── 2937 - Shopaholic.cpp ├── 2939 - Distinct Subsequences.cpp ├── 2941 - Girl Friend.cpp ├── 2943 - Love Letter.cpp ├── 2945 - HERMAN.cpp ├── 2946 - OKVIRI.cpp ├── 2948 - BOND.cpp ├── 2950 - PATULJCI.cpp ├── 2951 - NPUZZLE.cpp ├── 2952 - TROJKE.cpp ├── 2953 - TENKICI.cpp ├── 2955 - CETVRTA.cpp ├── 2956 - PEG.cpp ├── 2960 - VECI.cpp ├── 2961 - LEKTIRA.cpp ├── 2966 - DIPU NUMBER 3.cpp ├── 2967 - Eazzzzzy.cpp ├── 2968 - Find the Diagonal.cpp ├── 2969 - HELP ! ! !.cpp ├── 2970 - Hackle Number.cpp ├── 2972 - MOVING DHAKA.cpp ├── 2975 - Encription.cpp ├── 2988 - PLMM.cpp ├── 2989 - Simple Game.cpp ├── 2990 - Simple Task.cpp ├── 2994 - Vector.cpp ├── 3002 - Vote.cpp ├── 3004 - Mispelling.cpp ├── 3005 - Conversions.cpp ├── 3006 - Encoding.cpp ├── 3007 - Decoding.cpp ├── 3011 - Tiling a Grid With Dominoes.cpp ├── 3013 - Alfredo's Pizza Restaurant.cpp ├── 3014 - Broken Keyboard.cpp ├── 3015 - Convert Kilometers to Miles.cpp ├── 3016 - Decode the Strings.cpp ├── 3017 - El Dorado.cpp ├── 3019 - A Game with Marbles.cpp ├── 3021 - CIVIC DILL MIX.cpp ├── 3029 - Assemble.cpp ├── 3030 - March of the Penguins.cpp ├── 3033 - Escape from Enemy Territory.cpp ├── 3036 - Obfuscation.cpp ├── 3039 - Judging Olympia.cpp ├── 3041 - Rotating Rings.cpp ├── 3042 - A Tale from the Dark Side of The Moon.cpp ├── 3043 - Fermat's Chirstmas Theorem.cpp ├── 3044 - Incidental Points.cpp ├── 3050 - Encrypted SMS.cpp ├── 3051 - Hopeless Coach.cpp ├── 3057 - Crazy Bits.cpp ├── 3059 - Rock, Paper, or Scissors?.cpp ├── 3062 - Pebbles.cpp ├── 3070 - Encryption.cpp ├── 3071 - Number Game.cpp ├── 3073 - Country Road.cpp ├── 3074 - Color Lamp.cpp ├── 3075 - And Then There Was One.cpp ├── 3076 - Prime Gap.cpp ├── 3085 - One is an Interesting Number.cpp ├── 3086 - Verdis Quo.cpp ├── 3090 - Rout 66.cpp ├── 3095 - Best Compression Ever.cpp ├── 3098 - Event Planning.cpp ├── 3100 - Getting Gold.cpp ├── 3104 - Go Home.cpp ├── 3105 - A Way To Find Primes.cpp ├── 3108 - Common item.cpp ├── 3110 - Grey Area.cpp ├── 3111 - Expected Allowance.cpp ├── 3120 - Stock Exchange.cpp ├── 3121 - Sky Code.cpp ├── 3122 - Perfect Election.cpp ├── 3124 - Build Your Home.cpp ├── 3128 - Internet Service Providers.cpp ├── 3135 - Giant Screen.cpp ├── 3140 - Switching Lights.cpp ├── 3143 - Buying Hay.cpp ├── 3146 - Mixed Up Cows.cpp ├── 3150 - Sixth Grade Math.cpp ├── 3151 - Cryptoquote.cpp ├── 3152 - Binary Clock.cpp ├── 3156 - Area of Polycubes.cpp ├── 3160 - Bad Grass.cpp ├── 3161 - Hay Expenses.cpp ├── 3162 - Hay For Sale.cpp ├── 3163 - Patting Heads.cpp ├── 3165 - Trick or Treat on the Farm.cpp ├── 3169 - Back to the Barn.cpp ├── 3170 - Music Notes.cpp ├── 3171 - Best Spot.cpp ├── 3172 - Total Flow.cpp ├── 3175 - Earthquake Damage.cpp ├── 3176 - THe Baric Bovine.cpp ├── 3180 - Careful Declaration.cpp ├── 3182 - Wooden Fence.cpp ├── 3195 - Cruel Math Teacher, I.java ├── 3197 - The Leprechaun (Sliding RMQ).cpp ├── 3197 - The Leprechaun.cpp ├── 3199 - Balls and Cows.cpp ├── 3201 - Stock Marcket.cpp ├── 3202 - Revamping Trails.cpp ├── 3204 - Plumbing the Pond.cpp ├── 3205 - The Perfect Cow.cpp ├── 3206 - Dairy Queen.cpp ├── 3207 - Sand Castle.cpp ├── 3208 - Cow Frisbee Team.cpp ├── 3209 - Look Up.cpp ├── 3210 - Moon Mooing.cpp ├── 3211 - Cleaning Up.cpp ├── 3212 - Earthquake Damage.cpp ├── 3213 - Cup.cpp ├── 3214 - Find the Path.cpp ├── 3215 - Five in a Row, Again.cpp ├── 3216 - Minimum Heap.cpp ├── 3217 - Name PK.cpp ├── 3222 - Toxophily.cpp ├── 3223 - ACMers' Dinner.cpp ├── 3224 - Birthday Cake.cpp ├── 3232 - kangaroo.cpp ├── 3234 - Grasshopper.cpp ├── 3235 - Infinite Binary Tree.cpp ├── 3237 - Change Base.cpp ├── 3238 - Equation.cpp ├── 3241 - Fermat square prime.cpp ├── 3243 - Blocked Road.cpp ├── 3247 - Final Guessing.cpp ├── 3249 - Happy Coins.cpp ├── 3251 - Day of Week.cpp ├── 3254 - Rock-Paper-Scissors.cpp ├── 3259 - Mysterious Number.cpp ├── 3266 - English Training of ALPCs.cpp ├── 3271 - Deque Sort.cpp ├── 3272 - Distribute The Apples I.cpp ├── 3273 - Distribute The Apples II.cpp ├── 3275 - Windy's S.cpp ├── 3276 - Natasha's Problem.cpp ├── 3277 - Fengzlzl's Painting.cpp ├── 3288 - Stockholm Numbers.cpp ├── 3290 - Stockholm Game.cpp ├── 3293 - A Sequence of Numbers.cpp ├── 3294 - Building Block.cpp ├── 3295 - Matrix Swapping.cpp ├── 3298 - Prairie dogs V.cpp ├── 3300 - Euler Function.cpp ├── 3301 - Wireless Password.cpp ├── 3302 - The Troubles of Lmy.cpp ├── 3306 - Matrix Swapping II.cpp ├── 3308 - Snail’s trouble.cpp ├── 3311 - Operating system.cpp ├── 3312 - Traversal.cpp ├── 3313 - Calculation.cpp ├── 3314 - Cow Sorting.cpp ├── 3320 - Coins.cpp ├── 3322 - Repository.cpp ├── 3323 - Binary String.cpp ├── 3326 - Load Balancing.cpp ├── 3328 - kiki's k-th number.cpp ├── 3341 - Sum of Digits.cpp ├── 3348 - Scales.cpp ├── 3357 - Largest Submatrix.cpp ├── 3370 - Kebab.cpp ├── 3375 - Check Corners.cpp ├── 3392 - The Number of set.cpp ├── 3404 - Ant Trip.cpp ├── 3412 - Saving Beans.cpp ├── 3440 - Multiply Game.cpp ├── 3445 - Soda Surpler.cpp ├── 3446 - Money Matters.cpp ├── 3453 - Playfair Cipher.cpp ├── 3455 - Diamonds.cpp ├── 3456 - rank.cpp ├── 3457 - Cow Pinball.java ├── 3458 - The Chivalrous Cow.java ├── 3459 - Claustrophobic Cows.cpp ├── 3463 - Who Brings the Cookies.cpp ├── 3466 - Need for Speed.cpp ├── 3467 - 3467.cpp ├── 3469 - Apples.cpp ├── 3470 - Key Integer.cpp ├── 3471 - Happy XiaoXiao Guo.cpp ├── 3472 - Chopin.cpp ├── 3474 - The Big Dance.cpp ├── 3475 - Lonesome Partners.cpp ├── 3479 - Selfish Grazing.cpp ├── 3480 - Dizzy Cows.cpp ├── 3481 - Cow Toll paths.cpp ├── 3483 - Common Divisor.cpp ├── 3484 - Stones.cpp ├── 3485 - Counting Subsequences.cpp ├── 3486 - Dice.cpp ├── 3487 - Ignore the Garbage.cpp ├── 3488 - Stones II.cpp ├── 3489 - Dog Numbering.cpp ├── 3494 - Happy to GF.cpp ├── 3495 - A Simple Game.cpp ├── 3496 - Summation.cpp ├── 3498 - Differences.java ├── 3499 - Network.cpp ├── 3503 - Degree.cpp ├── 3506 - Euler Function.cpp ├── 3508 - Minimum Scalar Product.cpp ├── 3510 - A Min's Problem.cpp ├── 3511 - Staircases.cpp ├── 3512 - The Problems.cpp ├── 3515 - Middle number.cpp ├── 3516 - Game of Stones.cpp ├── 3517 - The longest athletic track.cpp ├── 3518 - Buy Car.cpp ├── 3519 - Ones and Zeros.cpp ├── 3520 - Step out of maze.cpp ├── 3523 - Little Cat Fishing.cpp ├── 3524 - Task Process.cpp ├── 3527 - Queue Jumpers.cpp ├── 3533 - Three Kingdoms.cpp ├── 3555 - HS BDC.cpp ├── 3561 - DNA Sequencing.cpp ├── 3563 - Tea Time.cpp ├── 3571 - Division.cpp ├── 3575 - Matrix Game.cpp ├── 3576 - Count 101.cpp ├── 3577 - Interview.cpp ├── 3579 - Scavenger Hunt.cpp ├── 3580 - Feeding Time.cpp ├── 3581 - Toy Shopping.cpp ├── 3582 - Chocolate Buying.cpp ├── 3583 - Chocolate Giving.cpp ├── 3584 - Chocolate Eating.cpp ├── 3585 - Covering the Corral.cpp ├── 3586 - Cows on Ice.cpp ├── 3587 - Slowing Down.cpp ├── 3588 - Tour.cpp ├── 3589 - Necklace.cpp ├── 3590 - Manhattan Distance.cpp ├── 3591 - Thieves.cpp ├── 3596 - Watch The Movie.cpp ├── 3601 - Longest Contiguous Subsequence.cpp ├── 3609 - Flight.cpp ├── 3611 - Calculation 2.cpp ├── 3622 - Perfect Matching.cpp ├── 3640 - Subsequence.cpp ├── 3678 - Fast Arrangement.cpp ├── 3679 - Greedy Tino.cpp ├── 3680 - Hello Kiki.cpp ├── 3729 - A Captivating Match.cpp ├── 3731 - City Planning.cpp ├── 3732 - Dragon Balls.cpp ├── 3749 - Arranging Your Teams.cpp ├── 3750 - Building Roads.cpp ├── 3751 - Card Game.cpp ├── 3753 - Encoded Barcodes.cpp ├── 3757 - I am Telling the Truth.cpp ├── 3758 - Jewel.cpp ├── 3759 - ICPC Score Totalizer Software.cpp ├── 3771 - Sheldon's Friendship I.cpp ├── 3772 - Rupxup's Math Problem.cpp ├── 3773 - How Many Days.cpp ├── 3774 - Calculation.cpp ├── 3775 - Math.cpp ├── 3776 - Problem Grass.cpp ├── 3777 - Function Problem.cpp ├── 3778 - Sheldon's Friendship II.cpp ├── 3779 - Next Mayor.cpp ├── 3780 - How Many Islands.cpp ├── 3781 - verbal Arithmetic.cpp ├── 3782 - Discrete Speed.cpp ├── 3783 - Cards.cpp ├── 3785- Pablo Squarson's Headache.cpp ├── 3786 - Amazing Mazes.cpp ├── 3787 - Pollock's conjecture.cpp ├── 3788 - Off Balance.cpp ├── 3789 - The Most Powerful Spell.cpp ├── 3791 - Laser Beam Reflections.cpp ├── 3823 - Divisible Subsquences.cpp ├── 3841 - Average Number.cpp ├── 3842 - Sort Array.cpp ├── 3843 - Intersection of sets.cpp ├── 3992 - Only One Bag I.cpp ├── 3993 - Only One Bag II.cpp └── 3997 - Partition.cpp ├── Timus Online Judge ├── 1000 - A+B Problem.cpp ├── 1001 - Reverse root.cpp ├── 1002 - Phone numbers.cpp ├── 1003 - Parity.cpp ├── 1004 - Sightseeing Trip.cpp ├── 1005 - Stone pile.cpp ├── 1009 - K-based numbers.cpp ├── 1010 - Discrete Function.cpp ├── 1011 - Conductors.cpp ├── 1012 - K-based numbers. Version 2.java ├── 1013 - K-based numbers. Version 3.java ├── 1014 - The Product of Digits.cpp ├── 1017 - The Staircases.cpp ├── 1018 - A Binary Apple Tree.cpp ├── 1019 - A Line painting.cpp ├── 1020 - Rope.cpp ├── 1021 - Sacrament of the sum.cpp ├── 1022 - Genealogical Tree.cpp ├── 1023 - Buttons.cpp ├── 1024 - Permutations.cpp ├── 1025 - Democracy in danger.cpp ├── 1026 - Questions and answers.cpp ├── 1028 - Stars.cpp ├── 1029 - Ministry.cpp ├── 1031 - Railway tickets.cpp ├── 1032 - Find a multiple.cpp ├── 1036 - Lucky tickets.java ├── 1039 - Anniversary party.cpp ├── 1044 - Lucky tickets. Easy!.cpp ├── 1045 - A funny game.cpp ├── 1048 - Superlong sums.cpp ├── 1052 - Rabbit Hunt.cpp ├── 1057 - Amount of Degrees.cpp ├── 1068 - Sum.cpp ├── 1073 - Square country.cpp ├── 1078 - Segments.cpp ├── 1079 - Maximum.cpp ├── 1080 - Map Colouring.cpp ├── 1081 - Binary Lexicographic Sequence.cpp ├── 1082 - Gaby Ivanushka.cpp ├── 1083 - Factorials!!!.cpp ├── 1084 - Goat in the Garden.cpp ├── 1086 - Cryptography.cpp ├── 1087 - The time to take stones.cpp ├── 1090 - In the army now.cpp ├── 1095 - Nikifor 3.cpp ├── 1100 - Final Standings.cpp ├── 1106 - Two Teams.cpp ├── 1110 - Power.cpp ├── 1117 - Hierarchy.cpp ├── 1118 - Nontrivial Numbers.cpp ├── 1119 - Metro.cpp ├── 1126 - Magnetic storms.cpp ├── 1128 - Partition into Groups.cpp ├── 1131 - Copying.cpp ├── 1133 - Fibonacci Sequence.cpp ├── 1146 - Maximum Sum.cpp ├── 1149 - Sinus Dances.cpp ├── 1152 - False Mirrors.cpp ├── 1167 - Bicoloured Horses.cpp ├── 1168 - Radio Stations.cpp ├── 1169 - Pairs.cpp ├── 1183 - Brackets sequence.cpp ├── 1196 - History Exam.cpp ├── 1197 - Lonesome Knight.cpp ├── 1203 - Scientific conference.cpp ├── 1204 - Idempotents.cpp ├── 1209 - 1, 10, 100, 1000....cpp ├── 1218 - Episode N-th: The Jedi Tournament.cpp ├── 1221 - Malevich Strikes Back!.cpp ├── 1222 - Chernobyl’ Eagles.java ├── 1223 - Chernobyl’ Eagle on a Roof.cpp ├── 1225 - Flags.cpp ├── 1226 - esreveR redrO.cpp ├── 1229 - Strong Brickwork.cpp ├── 1243 - Divorce of the seven dwarfs.cpp ├── 1244 - Gentlemen.cpp ├── 1247 - Check a Sequence.cpp ├── 1260 - A nudnik photographer.cpp ├── 1263 - Elections.cpp ├── 1264 - Workdays.cpp ├── 1272 - Non-Yekaterinburg Subway.cpp ├── 1286 - Starship Travel.cpp ├── 1290 - Sabotage.cpp ├── 1291 - Gear-wheels.cpp ├── 1293 - Eniya.cpp ├── 1297 - Palindrome.cpp ├── 1302 - Delta-wave.cpp ├── 1303 - Minimal coverage.cpp ├── 1306 - Sequence Median.cpp ├── 1309 - Dispute.cpp ├── 1313 - Some Words about Sport.cpp ├── 1319 - Hotel.cpp ├── 1320 - Graph Decomposition.cpp ├── 1322 - Spy.cpp ├── 1327 - Fuses.cpp ├── 1330 - Intervals.cpp ├── 1339 - Babies.cpp ├── 1342 - Enterprise.cpp ├── 1346 - Intervals of monotonicity.cpp ├── 1349 - Farm.cpp ├── 1353 - The milliard Vasya's function.cpp ├── 1354 - Palindrome. Again Palindrome.cpp ├── 1355 - Bald Spot Revisited.cpp ├── 1358 - Cables.cpp ├── 1359 - Construction.cpp ├── 1362 - Classmates 2.cpp ├── 1366 - Presents.cpp ├── 1370 - Magician.cpp ├── 1385 - Interesting number.cpp ├── 1389 - Roadworks.cpp ├── 1402 - Cocktails.cpp ├── 1404 - Easy to Hack!.cpp ├── 1405 - Goat in the Garden 5.cpp ├── 1409 - Two Gangsters.cpp ├── 1433 - Diamonds.cpp ├── 1437 - Gasoline Station.cpp ├── 1446 - Sorting Hat.cpp ├── 1450 - Russian Pipelines.cpp ├── 1457 - Heating Main.cpp ├── 1463 - Happiness to people!.cpp ├── 1468 - Fraction.cpp ├── 1470 - UFOs.cpp ├── 1471 - Tree.cpp ├── 1493 - One Step from Happiness.cpp ├── 1494 - Monobilliards.cpp ├── 1496 - Spammer.cpp ├── 1498 - Stroke at Full Speed.cpp ├── 1500 - Pass Licenses.cpp ├── 1501 - Sense of Beauty.cpp ├── 1502 - Domino Dots.cpp ├── 1513 - Lemon Tale.java ├── 1515 - Cashmaster.cpp ├── 1517 - Freedom of Choice.cpp ├── 1523 - K-inversions.cpp ├── 1525 - Path.cpp ├── 1528 - Sequence.cpp ├── 1545 - Hieroglyphs.cpp ├── 1554 - Multiplicative functions.cpp ├── 1557 - Network Attack.cpp ├── 1563 - Bayan.cpp ├── 1567 - SMS-spam.cpp ├── 1573 - Alchemy.cpp ├── 1576 - Telephone Tariffs.cpp ├── 1577 - E-mail.cpp ├── 1580 - Dean's Debts.cpp ├── 1581 - Teamwork.cpp ├── 1582 - Bookmakers.cpp ├── 1585 - Penguins.cpp ├── 1586 - Threeprime Numbers.cpp ├── 1601 - AntiCAPS.cpp ├── 1607 - Taxi.cpp ├── 1612 - Tram Forum.cpp ├── 1617 - Flat Spots.cpp ├── 1619 - Big Brother.cpp ├── 1628 - White Streaks.cpp ├── 1629 - Trip.cpp ├── 1633 - Hippogriffs.cpp ├── 1635 - Mnemonics and Palindromes.cpp ├── 1636 - Penalty Time.cpp ├── 1638 - Bookworm.cpp ├── 1639 - Chocolate 2.cpp ├── 1642 - 1D Maze.cpp ├── 1643 - Attack of the Dark Fortress.cpp ├── 1644 - A Whole Lot of Walnuts.cpp ├── 1647 - Divide an Island!.cpp ├── 1654 - Cipher Message.cpp ├── 1658 - Sum of Digits.cpp ├── 1665 - Dean's financial pyramid.cpp ├── 1671 - Anansi's Cobweb.cpp ├── 1675 - Lunar Code 2.cpp ├── 1683 - Fridge.cpp ├── 1684 - Jack's Last Word.cpp ├── 1685 - Orthography.cpp ├── 1688 - Team.GOV!.cpp ├── 1692 - Flags for Provinces.cpp ├── 1709 - Penguin-Avia.cpp ├── 1711 - Code Names.cpp ├── 1712 - Cipher Grille.cpp ├── 1713 - Key Substrings.cpp ├── 1723 - Sandro's Book.cpp ├── 1730 - ManBearPig.cpp ├── 1736 - Chinese Hockey.cpp ├── 1742 - Team building.cpp ├── 1745 - Yet Another Answer.cpp ├── 1748 - The Most Complex Number.cpp ├── 1752 - Tree 2.cpp ├── 1756 - One and a Half Diggers.cpp ├── 1759 - Long-Livers.cpp ├── 1769 - Old Ural Legend.cpp ├── 1785 - Lost in Localization.cpp ├── 1787 - Turn for MEGA.cpp ├── 1788 - On the Benefits of Umbrellas.cpp ├── 1789 - Searching for the Dodecahedron.cpp ├── 1792 - Hamming Code.cpp ├── 1794 - Masterpieces of World Architecture.cpp ├── 1795 - Husband in a Shop.cpp ├── 1820 - Ural Steaks.cpp ├── 1821 - Biathlon.cpp ├── 1837 - Isenbaev's Number.cpp ├── 1854 - Negotiations with Parthians.cpp ├── 1872 - Spacious Office.cpp ├── 1876 - Centipede's Morning.cpp ├── 1877 - Bicycle Codes.cpp ├── 1878 - Rubinchik's Cube.cpp ├── 1880 - Psych Up's Eigenvalues.cpp ├── 1881 - Long problem statement.cpp ├── 1930 - Ivan's car.cpp └── 1940 - Not So Simple Years.cpp ├── Topcoder ├── Div I │ ├── 250 - 2.cpp │ ├── 250 - 3.cpp │ ├── 251 - 2.cpp │ ├── 251 - 3.cpp │ ├── 252 - 2.cpp │ ├── 300 - 2.cpp │ ├── 301 - 2.cpp │ ├── 302 - 1.cpp │ ├── 304 - 2.cpp │ ├── 382 - 1.cpp │ ├── 419 - 1.cpp │ ├── 477 - 2.cpp │ ├── 477 - 3.cpp │ └── 483 - 1.cpp ├── Div II │ ├── 351 - 3.cpp │ ├── 353 - 3.cpp │ ├── 435 - 2.cpp │ └── 440 - 2.cpp └── TCO │ └── 2013 - 2C │ ├── 250.cpp │ └── 550.cpp ├── TuentiChallengue └── 2015 │ ├── p1 │ └── p1.cpp │ ├── p10 │ └── p10.py │ ├── p11 │ └── p11.cpp │ ├── p12 │ ├── Tuenti Contest.html │ └── Tuenti Contest_files │ │ ├── back.jpg │ │ ├── bootstrap.js │ │ ├── css │ │ ├── draggable.js │ │ ├── forth.js │ │ ├── os.js │ │ ├── p12.js │ │ ├── photoviewer.js │ │ ├── saved_resource │ │ ├── styles.css │ │ └── terminal.js │ ├── p14 │ └── p14.cpp │ ├── p16 │ └── p16.py │ ├── p2 │ └── p2.cpp │ ├── p3 │ └── p3.py │ ├── p4 │ └── p4.py │ ├── p5 │ └── p5.cpp │ ├── p6 │ └── p6.cpp │ ├── p7 │ └── p7.cpp │ ├── p8 │ └── p8.cpp │ └── p9 │ └── p9.cpp ├── USACO ├── 1.1 │ ├── beads.cpp │ ├── friday.cpp │ ├── gift1.cpp │ └── ride.cpp ├── 1.2 │ ├── dualpal.cpp │ ├── milk2.cpp │ ├── namenum.cpp │ ├── palsquare.cpp │ └── transform.cpp ├── 1.3 │ ├── barn1.cpp │ ├── calfflac.cpp │ ├── crypt1.cpp │ └── milk.cpp ├── 1.4 │ ├── ariprog.cpp │ ├── clocks.cpp │ ├── milk3.cpp │ └── packrec.cpp ├── 1.5 │ ├── checker.cpp │ ├── numtri.cpp │ ├── pprime.cpp │ └── sprime.cpp ├── 2.1 │ ├── castle.cpp │ ├── frac1.cpp │ ├── hamming.cpp │ ├── holstein.cpp │ └── sort3.cpp ├── 2.2 │ ├── lamps.cpp │ ├── preface.cpp │ ├── runround.cpp │ └── subset.cpp ├── 2.3 │ ├── money.cpp │ ├── nocows.cpp │ ├── prefix.cpp │ └── zerosum.cpp ├── NOV 09 - Gold │ ├── 1 - Lights.cpp │ ├── 2 - Who Brings the Cookies.cpp │ ├── in.txt │ └── out.txt └── USACO Qualification 2009 │ ├── P1.cpp │ ├── P2.cpp │ ├── P3.cpp │ ├── P4.cpp │ ├── P5.cpp │ ├── P6.cpp │ ├── P8.cpp │ ├── P9.cpp │ ├── in.txt │ └── out.txt ├── UVA ├── A - Logarithm.cpp ├── B - Income Tax Hazard.cpp ├── Contest Volumes │ ├── 10000 - Longest Paths.cpp │ ├── 10002 - Center of Masses.cpp │ ├── 10003 - Cutting Sticks.cpp │ ├── 10004 - Bicoloring.cpp │ ├── 10008 - What's Cryptanalysis.cpp │ ├── 10013 - Super long sums.cpp │ ├── 10014 - Simple calculations.cpp │ ├── 10018 - Reverse and Add.cpp │ ├── 10019 - Funny Encryption Method.cpp │ ├── 10020 - Minimal coverage.cpp │ ├── 10034 - Freckles.cpp │ ├── 10035 - Primary Arithmetic.cpp │ ├── 10038 - Jolly Jumpers.cpp │ ├── 10041 - Vito's Family.cpp │ ├── 10050 - Hartals.cpp │ ├── 10067 - Playing with Wheels.cpp │ ├── 10071 - Back to High School Physics.cpp │ ├── 10078 - The Art Gallery.cpp │ ├── 10079 - Pizza Cutting.cpp │ ├── 10082 - WERTYU.cpp │ ├── 10088 - Trees on My Island.cpp │ ├── 10099 - The Tourist Guide 2.cpp │ ├── 10099 - The Tourist Guide.cpp │ ├── 10100 - Longest Match.cpp │ ├── 10102 - The path in the colored field.cpp │ ├── 10107 - What is the median.cpp │ ├── 10110 - Light, more light.cpp │ ├── 10112 - Myacm Triangles -.cpp │ ├── 10113 - Exchange Rates.cpp │ ├── 10114 - Loansome Car Buyer.cpp │ ├── 10115 - Automatic Editing.cpp │ ├── 10116 - Robot Motion.cpp │ ├── 10127 - Ones.cpp │ ├── 10131 - Is Bigger Smarter.cpp │ ├── 10195 - The Knights Of The Round Table.cpp │ ├── 10199 - Tourist Guide.cpp │ ├── 10205 - Stack 'em Up.cpp │ ├── 10209 - Is this integration.cpp │ ├── 10210 - Romeo and Juliet.cpp │ ├── 10215 - The largest-smallest box.cpp │ ├── 10219 - Find the ways.cpp │ ├── 10221 - Satellites.cpp │ ├── 10222 - Decode the mad man.cpp │ ├── 10223 - How many nodes.cpp │ ├── 10229 - Modular Fibonacci.cpp │ ├── 10242 - Fourth Point.cpp │ ├── 10252 - Common Permutation.cpp │ ├── 10259 - Hippity Hopscotch.cpp │ ├── 10260 - Soundex.cpp │ ├── 10278 - Fire Station.cpp │ ├── 10286 - Trouble with a Pentagon.cpp │ ├── 10297 - Beavergnaw.cpp │ ├── 10300 - Ecological Premium.cpp │ ├── 10301 - Rings and Glue.cpp │ ├── 10302 - Summation of Polynomials.cpp │ ├── 10323 - Factorial! You Must be Kidding!!!.cpp │ ├── 10327 - Flip sort.cpp │ ├── 10330 - Power Transmission.cpp │ ├── 10338 - Mischievous Children.cpp │ ├── 10340 - All in All.cpp │ ├── 10341 - Solve It.cpp │ ├── 10346 - Peter's Smoke.cpp │ ├── 10359 - Tiling.cpp │ ├── 10361 - Automatic Poetry.cpp │ ├── 10370 - Above Average.cpp │ ├── 10391 - Compound Words.cpp │ ├── 10404 - Bachet's Game.cpp │ ├── 10405 - Longest Common Subsequence.cpp │ ├── 10420 - List of Conquests.cpp │ ├── 10424 - Love Calculator.cpp │ ├── 10432 - Polygon Inside A Circle.cpp │ ├── 10439 - Temple of Dune.cpp │ ├── 10440 - Ferry Loading II.cpp │ ├── 10443 - Rock, Scissors, Paper.cpp │ ├── 10465 - Homer Simpson.cpp │ ├── 10469 - To Carry or not to Carry.cpp │ ├── 10511 - Councilling.cpp │ ├── 10545 - Maximal Quadrilateral.cpp │ ├── 10583 - Ubiquitous Religions.cpp │ ├── 10589 - Area.cpp │ ├── 10594 - Data Flow.cpp │ ├── 10596 - Morning Walk.cpp │ ├── 10608 - Friends.cpp │ ├── 10637 - Coprimes.cpp │ ├── 10646 - What is the Card?.cpp │ ├── 10656 - Maximum Sum (II).cpp │ ├── 10679 - I Love Strings!!.cpp │ ├── 10689 - Yet another Number Sequence.cpp │ ├── 10696 - f91.cpp │ ├── 10699 - Count the factors.cpp │ ├── 10717 - Mint.cpp │ ├── 10746 - Crime Wave - The Sequel.cpp │ ├── 10773 - Back to Intermediate Math.cpp │ ├── 10783 - Odd Sum.cpp │ ├── 10784 - Diagonal.cpp │ ├── 10790 - How Many Points of Intersection.cpp │ ├── 10806 - Dijkstra, Dijkstra.cpp │ ├── 10812 - Beat the Spread!.cpp │ ├── 10817 - Headmaster's Headache.cpp │ ├── 10843 - Anne's game.cpp │ ├── 10914 - Abundance and Perfect Numbers.cpp │ ├── 10920 - Spiral Tap.cpp │ ├── 10921 - Find the Telephone.cpp │ ├── 10924 - Prime Words.cpp │ ├── 10925 - Krakovia.cpp │ ├── 10929 - You can say 11.cpp │ ├── 10946 - You want what filled.cpp │ ├── 10989 - Bomb, Divide and Conquer.cpp │ ├── 10991 - Region.cpp │ ├── 11027 - Palindromic Permutation.cpp │ ├── 11064 - Number Theory.cpp │ ├── 11069 - A Graph Problem.cpp │ ├── 11090 - Going in Cycle!!.cpp │ ├── 11110 - Equidivisions.cpp │ ├── 11152 - Colourful Flowers.cpp │ ├── 11159 - Factors and Multiples.cpp │ ├── 11172 - Relational Operators.cpp │ ├── 11183 - Teen Girl Squad.cpp │ ├── 11233 - Deli Deli.cpp │ ├── 11237 - Halloween treats.cpp │ ├── 11246 - K-Multiple Free set.cpp │ ├── 11280 - Flying to Fredericton.cpp │ ├── 11292 - Dragon of Loowater.cpp │ ├── 11310 - Delivery Debacle.cpp │ ├── 11351 - Last Man Standing.cpp │ ├── 11362 - Phone List.cpp │ ├── 11369 - Shopaholic.cpp │ ├── 11383 - Golden Tiger Claw.cpp │ ├── 11391 - Blobs in the Board.cpp │ ├── 11401 - Triangle Counting.cpp │ ├── 11419 - SAM I AM.cpp │ ├── 11424 - GCD - Extreme (I).cpp │ ├── 11426 - GCD - Extreme (II).cpp │ ├── 11428 - Cubes.cpp │ ├── 11439 - Maximizing the ICPC.cpp │ ├── 11480 - Jimmy's Balls.cpp │ ├── 11495 - Bubbles and Buckets.cpp │ ├── 11506 - Angry Programmer.cpp │ ├── 11507 - Bender B. Rodríguez Problem.cpp │ ├── 11508 - Life on Mars?.cpp │ ├── 11509 - Touring Robot.cpp │ ├── 11511 - Frieze Patterns.cpp │ ├── 11513 - 9 Puzzle.cpp │ ├── 11514 - Batman.cpp │ ├── 11520 - Fill the Square.cpp │ ├── 11526 - H(n).cpp │ ├── 11532 - Simple Adjacency Maximization.cpp │ ├── 11553 - Grid Game.cpp │ ├── 11554 - Hapless Hedonism.cpp │ ├── 11559 - Event Planning.cpp │ ├── 11563 - Introspective Caching.cpp │ ├── 11569 - Lovely Hint.cpp │ ├── 11573 - Ocean Currents.cpp │ ├── 11587 - Brick Game.cpp │ ├── 11588 - Image Coding.cpp │ ├── 11591 - Bulb Inside a Grid.cpp │ ├── 11593 - Fractions.cpp │ ├── 11597 - Spanning Subtree.cpp │ ├── 11609 - Teams.cpp │ ├── 11626 - Convex Hull.cpp │ ├── 11646 - Athletics Track.cpp │ ├── 11648 - Divide The Land.cpp │ ├── 11782 - Optimal Cut.cpp │ ├── 11790 - Murcia's Skyline.cpp │ ├── 11799 - Horror Dash.cpp │ ├── 11818 - Mouse & a Cheese.cpp │ ├── 11825 - Hackers' Crackdown.cpp │ ├── 11827 - Maximum GCD.cpp │ ├── 11838 - Come and Go.cpp │ ├── 11876 - N + NOD (N).cpp │ ├── 11900 - Boiled Eggs.cpp │ ├── 11902 - Dominator(tarjan).cpp │ ├── 11902 - Dominator.cpp │ ├── 11903 - e-Friends.cpp │ ├── 11906 - Knight in a War Grid.cpp │ ├── 11907 - Collision of Bacteria.cpp │ ├── 11908 - Skyscraper.cpp │ ├── 12001 - UVa Panel Discussion.cpp │ ├── 12004 - Bubble Sort.cpp │ ├── 12015 - Google is Feeling Lucky.cpp │ ├── 12024 - Hats.cpp │ ├── 12028 - A Gift from the Setter.cpp │ ├── 12032 - The Monkey and the Oiled Bamboo.cpp │ ├── 12036 - Stable Grid.cpp │ ├── 12041 - BFS (Binary Fibonacci String).cpp │ ├── 12043 - Divisors.cpp │ ├── 12046 - Great Numbers.cpp │ ├── 12049 - Just Prune The List.cpp │ ├── 12300 - Smallest Regular Polygon.cpp │ ├── 12301 - An Angular Puzzle.cpp │ ├── 12302 - Nine-Point Circle.cpp │ ├── 12303 - Composite Transformations.cpp │ ├── 12321 - Gas Stations.cpp │ ├── 12333 - Revenge of Fibonacci.cpp │ ├── 12359 - Diccion�rio Portu�ol.cpp │ ├── 12361 - File Retrieval.cpp │ ├── 12390 - Distributing Ballot Boxes.cpp │ ├── 12392 - Guess the Numbers.cpp │ ├── 12393 - Non-negative Partial Sums.cpp │ ├── 12394 - Peer Review.cpp │ ├── 12395 - Regular Convex Polygon.cpp │ ├── 12396 - Remoteland.cpp │ ├── 12444 - Bits and Pieces.cpp │ ├── 12446 - How Many... in 3D!.cpp │ ├── 12455 - Bars.cpp │ ├── 12456 - Mirror codes.cpp │ ├── 12457 - Tennis contest.cpp │ ├── 12458 - Oh, my trees!.cpp │ ├── 12459 - Bees' ancestors.cpp │ ├── 12460 - Careful teacher.cpp │ ├── 12482 - Short Story Competition.cpp │ ├── 12484 - Cards.cpp │ ├── 12485 - Perfect Choir.cpp │ ├── 12486 - Space Elevator.cpp │ ├── 12487 - Midnight Cowboy.cpp │ ├── 12488 - Start Grid.cpp │ ├── 12489 - Combating cancer.cpp │ ├── 12490 - Integral.cpp │ ├── 12491 - Words.cpp │ ├── 12492 - Rubik Cycle.cpp │ ├── 12493 - Stars.cpp │ ├── 12524 - Arranging Heaps.cpp │ ├── 12525 - Boxes and Stones.cpp │ └── 12528 - Environment Protection.cpp ├── I │ ├── 100 - 3n+1.cpp │ ├── 102 - Ecological Bin Packing.cpp │ ├── 108 - Maximum Sum.cpp │ ├── 109 - SCUD Busters.cpp │ ├── 111 - History Grading.cpp │ ├── 113 - Power of Cryptography.cpp │ ├── 116 - Unidirectional TSP.cpp │ ├── 117 - The Postal Worker Rings Once.cpp │ ├── 119 - Greedy Gift Givers.cpp │ ├── 120 - Stacks of Flapjacks.cpp │ ├── 132 - Bumpy Objects.cpp │ ├── 136 - Ugly Numbers.cpp │ ├── 138 - Street Numbers.cpp │ ├── 143 - Orchard Trees.cpp │ ├── 146 - ID Codes.cpp │ ├── 147 - Dollars.cpp │ ├── 151 - Power Crisis.cpp │ ├── 167 - The Sultan's Successors.cpp │ ├── 168 - Theseus and the Minotaur.cpp │ └── 191 - Intersection.cpp ├── II │ ├── 200 - Rare Order.cpp │ ├── 218 - Moth Eradication.cpp │ ├── 256 - Quirksome Squares.cpp │ ├── 259 - Software Allocation.cpp │ ├── 260 - Il Gioco dell'X.cpp │ ├── 264 - Count on Cantor.cpp │ ├── 270 - Lining Up.cpp │ ├── 272 - TEX Quotes.cpp │ ├── 280 - Vertex.cpp │ ├── 291 - The House Of Santa Claus.cpp │ └── 299 - Train Swapping.cpp ├── III │ ├── 300 - Maya Calendar.cpp │ ├── 305 - Joseph.cpp │ ├── 306 - Cipher.cpp │ ├── 314 - Robot.cpp │ ├── 315 - Network.cpp │ ├── 350 - Pseudo-Random Numbers.cpp │ ├── 352 - The Seasonal War.cpp │ ├── 357 - Let Me Count The Ways -.cpp │ ├── 369 - Combinations.cpp │ ├── 374 - Big Mod.cpp │ ├── 382 - Perfection.cpp │ ├── 383 - Shipping Routes.cpp │ ├── 386 - Perfect Cubes.cpp │ └── 392 - Polynomial Showdown.cpp ├── IV │ ├── 401 - Palindromes.cpp │ ├── 408 - Uniform Generator.cpp │ ├── 412 - Pi.cpp │ ├── 417 - Word Index.cpp │ ├── 436 - Arbitrage.cpp │ ├── 437 - The Tower of Babylon.cpp │ ├── 438 - The Circumference of the Circle.cpp │ ├── 439 - Knight Moves.cpp │ ├── 440 - Eeny Meeny Moo.cpp │ ├── 441 - Lotto.cpp │ ├── 443 - Humble Numbers.cpp │ ├── 458 - The Decoder.cpp │ ├── 459 - Graph Connectivity.cpp │ ├── 469 - Wetlands of Florida.cpp │ ├── 476 - Points in Figures - Rectangles.cpp │ ├── 483 - Word Scramble.cpp │ ├── 486 - English-Number Translator.cpp │ ├── 490 - Rotating Sentences.cpp │ ├── 492 - Pig-Latin.cpp │ ├── 494 - Kindergarten Counting Game.cpp │ └── 499 - What's The Frequency, Kenneth.cpp ├── IX │ ├── 900 - Brick Wall Patterns.cpp │ ├── 902 - Password Search.cpp │ ├── 913 - Joana and the Odd Numbers.cpp │ ├── 928 - Eternal Truths.cpp │ ├── 929 - Number Maze (10 queues).cpp │ ├── 929 - Number Maze (dijkstra).cpp │ ├── 985 - Round and Round Maze.cpp │ ├── 988 - Many Paths, One Destination.cpp │ └── 989 - Su Doku.cpp ├── Todavia │ ├── 10180(Wrong Answer) │ │ ├── Roper Crisis in Ropeland!.cpp │ │ ├── Roper Crisis in Ropeland!.exe │ │ ├── in.txt │ │ └── out.txt │ ├── 711 - Dividing up (TLE).cpp │ ├── Always on the run(Todavia) │ │ ├── Always on the run.cpp │ │ ├── Always on the run.exe │ │ ├── in.txt │ │ └── out.txt │ ├── Counting (Todavia) │ │ ├── Counting.cpp │ │ ├── Counting.exe │ │ ├── input.txt │ │ └── output.txt │ ├── Counting - 10198 (Overflow).cpp │ ├── Fermat vs. Pythagoras - 106.cpp │ ├── Following Orders - 124.cpp │ ├── Graph Coloring - 193.cpp │ ├── Litttle Bishops.cpp │ ├── What Base Is This - 343.cpp │ └── Word Index(Todavia) │ │ ├── Word Index.cpp │ │ ├── Word Index.exe │ │ ├── in.txt │ │ └── out.txt ├── V │ ├── 515 - King.cpp │ ├── 530 - Binomial Showdown.cpp │ ├── 531 - Compromise.cpp │ ├── 532 - Dungeon Master.cpp │ ├── 536 - Tree Recovery.cpp │ ├── 540 - Team Queue.cpp │ ├── 541 - Error Correction.cpp │ ├── 543 - Goldbach's Conjecture.cpp │ ├── 544 - Heavy Cargo.cpp │ ├── 558 - Wormholes.cpp │ ├── 563 - Crimewave.cpp │ ├── 568 - Just the facts.cpp │ ├── 572 - Oil Deposits.cpp │ ├── 575 - Skew Binary.cpp │ ├── 576 - Haiku Review.cpp │ └── 591 - Box of Bricks.cpp ├── VI │ ├── 634 - Polygon.cpp │ ├── 674 - Coin Change.cpp │ ├── 675 - Convex Hull of the Polygon.cpp │ ├── 677 - All Walks of length "n" from the first node.cpp │ ├── 681 - Convex Hull Finding.cpp │ ├── 686 - Goldbach's Conjecture (II).cpp │ ├── 694 - The Collatz Sequence.cpp │ └── 696 - How Many Knights.cpp ├── VII │ ├── 706 - LCD Display.cpp │ ├── 712 - S-Trees.cpp │ ├── 750 - 8 Queens Chess Problem.cpp │ ├── 753 - A Plug for UNIX.cpp │ ├── 793 - Network Connections.cpp │ └── 796 - Critical Links.cpp └── VIII │ ├── 820 - Internet Bandwidth.cpp │ ├── 847 - A Multiplication Game.cpp │ └── 895 - Word Problem.cpp ├── Z-Trening ├── 187 - z-board.cpp ├── 225 - z-01paths.cpp ├── Baltic Olympiads │ ├── ancient.cpp │ └── cards.cpp ├── Basic Introductory Problems │ ├── Sum of Two Numbers.cpp │ └── The Easiest Problem.cpp ├── Qualification Competitions │ ├── Big Digits.cpp │ ├── Boxes.cpp │ ├── CharSwap.cpp │ ├── Cubes.cpp │ ├── Digits.cpp │ ├── DivInts.cpp │ ├── IT.cpp │ ├── IntGrid.cpp │ ├── Magic.cpp │ ├── MaxGCD.cpp │ ├── Paycheck.cpp │ ├── RBGrid.cpp │ ├── Rectangles.cpp │ ├── SuperClimber.cpp │ ├── Tournament.cpp │ └── Wovels.cpp ├── Serbian Olympiad in Informatics │ └── igra.cpp ├── ZCM Competitions │ └── z-passwd.cpp ├── contest │ ├── A.cpp │ ├── CharSwap.cpp │ ├── DivInt.cpp │ ├── IntGrid.cpp │ ├── Paycheck.cpp │ ├── RBGrid.cpp │ └── Tournament.cpp └── z-company.cpp ├── ZOJ ├── 1001 - A+B.cpp ├── 1002 - Fire Net.cpp ├── 1037 - Gridland.cpp ├── 1041 - Transmitters.cpp ├── 1048 - Financial Management.cpp ├── 1049 - I Think I Need a Houseboat.cpp ├── 1051 - A New Growth Industry.cpp ├── 1067 - Color Me Less.cpp ├── 1082 - Stockbroker Grapevine.cpp ├── 1089 - Lotto.cpp ├── 1090 - The Circumference of the Circle.cpp ├── 1140 - Courses.cpp ├── 1382 - A simple task.cpp ├── 1518 - This Sentence is False.cpp ├── 1589 - Professor Jhon.cpp ├── 1798 - Granny's Bike.cpp ├── 2060 - Fibonacci Again.cpp ├── 2273 - Number Sequence III.cpp ├── 2361 - Areas.cpp ├── 2955 - Interesting Dart Game.cpp ├── 2964 - Triangle.cpp ├── 3031 - Robotruck.cpp ├── 3033 - Board Games.cpp ├── 3034 - The Bridges of Kolsberg.cpp ├── 3036 - IP-TV.cpp ├── 3037 - Ladies' Choice.cpp ├── 3060 - Evil Game.cpp ├── 3074 - Pyraminx.cpp ├── 3075 - Ticket.cpp ├── 3077 - Move to Baggage Office.cpp ├── 3080 - ChiBi.cpp ├── 3174 - Square Root Day.cpp ├── 3175 - Number of Containers.cpp ├── 3179 - Calculate With Abacus.cpp ├── 3229 - Shoot the Bullet.cpp ├── 3432 - Find the Lost Sock.cpp ├── 3435 - Ideal Puzzle Bobble.cpp ├── 3457 - Absence Number.cpp ├── 3458 - A Simple Math Problem.cpp ├── 3464 - Rugby Football.cpp ├── 3465 - The Hive.cpp ├── 3604 - Tunnel Network.cpp ├── 3605 - Find the Marble.cpp ├── 3609 - Modular Inverse.cpp ├── 3611 - Ice Valley.cpp ├── 3620 - Escape Time II.cpp ├── 3623 - Battle Ships.cpp ├── 3627 - Treasure Hunt II.cpp ├── 3628 - Treasure Hunt III.cpp ├── 3629 - Treasure Hunt IV.cpp ├── 3635 - Cinema in Akiba.cpp ├── 3640 - Help Me Escape.cpp ├── 3644 - Kitty's Game.cpp ├── 3646 - Matrix Transformer.cpp ├── 3647 - Gao the Grid.cpp ├── 3649 - Social Net.cpp ├── 3656 - Bit Magic.cpp ├── 3657 - The Little Girl who Picks Mushrooms.cpp ├── 3659 - Conquer a New Region.cpp ├── 3662 - Math Magic.cpp ├── 3665 - Yukari's Birthday.cpp ├── 3668 - Launching the Spacecraft.cpp ├── 3684 - Destroy.cpp ├── 3686 - A Simple Tree Problem.cpp ├── 3690 - Choosing number.cpp ├── 3691 - Flower.cpp ├── 3702 - Gibonacci number.cpp ├── 3772 - Calculate the Function.cpp └── 3780 - Paint the Grid Again.cpp ├── hackerrank ├── 101apr14 │ └── gem-stones.cpp ├── 101aug14 │ ├── circle-city.cpp │ ├── pangrams.cpp │ ├── police-operation.cpp │ └── team-formation.cpp ├── infinitum-aug14 │ ├── akhil-and-gf.cpp │ ├── divisibility-of-power.cpp │ ├── emma-and-sum-of-products.cpp │ ├── matrix-tree.cpp │ ├── reverse-game.cpp │ └── stepping-stones-game.cpp ├── infinitum-jul14 │ ├── ajob-subsequence.cpp │ ├── choose-and-calculate.cpp │ ├── little-gaurav-and-sequence.cpp │ ├── order-of-prime-in-factorial.cpp │ ├── rirb.cpp │ ├── sherlock-and-divisors.cpp │ └── sherlock-and-probability.cpp ├── infinitum-jun14 │ ├── easy-sum.cpp │ └── possible-path.cpp ├── infinitum-may14 │ ├── cyclicquadruples.cpp │ ├── manasa-and-sub-sequences.cpp │ ├── shashank-and-list.cpp │ ├── sherlock-and-permutations.cpp │ └── sherlock-and-planes.cpp ├── w2 │ ├── cut-the-tree.cpp │ └── manasa-and-stones.cpp └── w3 │ ├── half.cpp │ ├── prime-sum.cpp │ ├── sam-and-substrings.cpp │ └── the-love-letter-mystery.cpp ├── infoarena ├── Archivo de problemas │ ├── password.cpp │ ├── sequencequery.cpp │ └── xormax.cpp └── Archivo educacional │ ├── biconexe.cpp │ ├── ciclueuler.cpp │ ├── cmap.cpp │ ├── cuplaj.cpp │ ├── euclid2.cpp │ ├── euclid3.cpp │ ├── fmcm.cpp │ ├── maxflow.cpp │ └── ssm.cpp └── interviewstreet └── CodeSprint TwitchTV ├── Arrangement.cpp ├── Centre of Mass.cpp ├── Matching.cpp ├── Super Bomb.cpp └── Travel.cpp /Codechef/ASTRGAME.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/ASTRGAME.cpp -------------------------------------------------------------------------------- /Codechef/BALANCED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/BALANCED.cpp -------------------------------------------------------------------------------- /Codechef/BIGPIZA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/BIGPIZA.cpp -------------------------------------------------------------------------------- /Codechef/BOMBING.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/BOMBING.cpp -------------------------------------------------------------------------------- /Codechef/CIRCUITS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/CIRCUITS.cpp -------------------------------------------------------------------------------- /Codechef/COUNTREL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/COUNTREL.cpp -------------------------------------------------------------------------------- /Codechef/EQIDLIS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/EQIDLIS.cpp -------------------------------------------------------------------------------- /Codechef/FLUSHOT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/FLUSHOT.cpp -------------------------------------------------------------------------------- /Codechef/GRIDCHEF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/GRIDCHEF.cpp -------------------------------------------------------------------------------- /Codechef/MAY15/CHAPD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY15/CHAPD.cpp -------------------------------------------------------------------------------- /Codechef/MAY15/CHEFCK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY15/CHEFCK.cpp -------------------------------------------------------------------------------- /Codechef/MAY15/CHEFRP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY15/CHEFRP.cpp -------------------------------------------------------------------------------- /Codechef/MAY15/DEVHAND.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY15/DEVHAND.cpp -------------------------------------------------------------------------------- /Codechef/MAY15/DEVHAND2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY15/DEVHAND2.cpp -------------------------------------------------------------------------------- /Codechef/MAY15/DEVSTR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY15/DEVSTR.cpp -------------------------------------------------------------------------------- /Codechef/MAY15/GRAPHCNT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY15/GRAPHCNT.cpp -------------------------------------------------------------------------------- /Codechef/MAY15/SETDIFF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY15/SETDIFF.cpp -------------------------------------------------------------------------------- /Codechef/MAY15/SEZ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY15/SEZ.cpp -------------------------------------------------------------------------------- /Codechef/MAY16/CHBLLS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY16/CHBLLS.cpp -------------------------------------------------------------------------------- /Codechef/MAY16/CHEFMATH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY16/CHEFMATH.cpp -------------------------------------------------------------------------------- /Codechef/MAY16/CHEFNUM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY16/CHEFNUM.cpp -------------------------------------------------------------------------------- /Codechef/MAY16/CHEFSOC2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY16/CHEFSOC2.cpp -------------------------------------------------------------------------------- /Codechef/MAY16/FORESTGA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY16/FORESTGA.cpp -------------------------------------------------------------------------------- /Codechef/MAY16/LADDU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY16/LADDU.cpp -------------------------------------------------------------------------------- /Codechef/MAY16/SEAGCD2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY16/SEAGCD2.cpp -------------------------------------------------------------------------------- /Codechef/MAY16/STARROAD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/MAY16/STARROAD.cpp -------------------------------------------------------------------------------- /Codechef/OVENTIME.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/OVENTIME.cpp -------------------------------------------------------------------------------- /Codechef/TERM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/TERM.cpp -------------------------------------------------------------------------------- /Codechef/TIDRICE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codechef/TIDRICE.cpp -------------------------------------------------------------------------------- /Codeforces/12A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/12A.cpp -------------------------------------------------------------------------------- /Codeforces/12B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/12B.cpp -------------------------------------------------------------------------------- /Codeforces/12C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/12C.cpp -------------------------------------------------------------------------------- /Codeforces/12D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/12D.cpp -------------------------------------------------------------------------------- /Codeforces/12E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/12E.cpp -------------------------------------------------------------------------------- /Codeforces/134C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/134C.cpp -------------------------------------------------------------------------------- /Codeforces/140D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/140D.cpp -------------------------------------------------------------------------------- /Codeforces/148A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/148A.cpp -------------------------------------------------------------------------------- /Codeforces/148B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/148B.cpp -------------------------------------------------------------------------------- /Codeforces/148C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/148C.cpp -------------------------------------------------------------------------------- /Codeforces/148D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/148D.cpp -------------------------------------------------------------------------------- /Codeforces/148E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/148E.cpp -------------------------------------------------------------------------------- /Codeforces/149A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/149A.cpp -------------------------------------------------------------------------------- /Codeforces/149B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/149B.cpp -------------------------------------------------------------------------------- /Codeforces/149C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/149C.cpp -------------------------------------------------------------------------------- /Codeforces/149D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/149D.cpp -------------------------------------------------------------------------------- /Codeforces/149E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/149E.cpp -------------------------------------------------------------------------------- /Codeforces/156D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/156D.cpp -------------------------------------------------------------------------------- /Codeforces/164A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/164A.cpp -------------------------------------------------------------------------------- /Codeforces/164B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/164B.cpp -------------------------------------------------------------------------------- /Codeforces/164C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/164C.cpp -------------------------------------------------------------------------------- /Codeforces/173A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/173A.cpp -------------------------------------------------------------------------------- /Codeforces/173B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/173B.cpp -------------------------------------------------------------------------------- /Codeforces/173C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/173C.cpp -------------------------------------------------------------------------------- /Codeforces/173D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/173D.cpp -------------------------------------------------------------------------------- /Codeforces/173E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/173E.cpp -------------------------------------------------------------------------------- /Codeforces/202A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/202A.cpp -------------------------------------------------------------------------------- /Codeforces/202B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/202B.cpp -------------------------------------------------------------------------------- /Codeforces/202C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/202C.cpp -------------------------------------------------------------------------------- /Codeforces/202D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/202D.cpp -------------------------------------------------------------------------------- /Codeforces/202E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/202E.cpp -------------------------------------------------------------------------------- /Codeforces/208E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/208E.cpp -------------------------------------------------------------------------------- /Codeforces/209A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/209A.cpp -------------------------------------------------------------------------------- /Codeforces/214A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/214A.cpp -------------------------------------------------------------------------------- /Codeforces/214B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/214B.cpp -------------------------------------------------------------------------------- /Codeforces/214C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/214C.cpp -------------------------------------------------------------------------------- /Codeforces/214D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/214D.cpp -------------------------------------------------------------------------------- /Codeforces/214E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/214E.cpp -------------------------------------------------------------------------------- /Codeforces/217E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/217E.cpp -------------------------------------------------------------------------------- /Codeforces/219D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/219D.cpp -------------------------------------------------------------------------------- /Codeforces/22A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/22A.cpp -------------------------------------------------------------------------------- /Codeforces/22B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/22B.cpp -------------------------------------------------------------------------------- /Codeforces/22C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/22C.cpp -------------------------------------------------------------------------------- /Codeforces/22D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/22D.cpp -------------------------------------------------------------------------------- /Codeforces/22E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/22E.cpp -------------------------------------------------------------------------------- /Codeforces/231E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/231E.cpp -------------------------------------------------------------------------------- /Codeforces/235A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/235A.cpp -------------------------------------------------------------------------------- /Codeforces/237D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/237D.cpp -------------------------------------------------------------------------------- /Codeforces/241A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/241A.cpp -------------------------------------------------------------------------------- /Codeforces/241B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/241B.cpp -------------------------------------------------------------------------------- /Codeforces/241C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/241C.cpp -------------------------------------------------------------------------------- /Codeforces/241F.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/241F.cpp -------------------------------------------------------------------------------- /Codeforces/241G.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/241G.cpp -------------------------------------------------------------------------------- /Codeforces/242A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/242A.cpp -------------------------------------------------------------------------------- /Codeforces/242B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/242B.cpp -------------------------------------------------------------------------------- /Codeforces/242C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/242C.cpp -------------------------------------------------------------------------------- /Codeforces/242D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/242D.cpp -------------------------------------------------------------------------------- /Codeforces/242E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/242E.cpp -------------------------------------------------------------------------------- /Codeforces/244A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/244A.cpp -------------------------------------------------------------------------------- /Codeforces/244B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/244B.cpp -------------------------------------------------------------------------------- /Codeforces/256B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/256B.cpp -------------------------------------------------------------------------------- /Codeforces/256D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/256D.cpp -------------------------------------------------------------------------------- /Codeforces/260D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/260D.cpp -------------------------------------------------------------------------------- /Codeforces/261A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/261A.cpp -------------------------------------------------------------------------------- /Codeforces/261B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/261B.cpp -------------------------------------------------------------------------------- /Codeforces/261C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/261C.cpp -------------------------------------------------------------------------------- /Codeforces/271E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/271E.cpp -------------------------------------------------------------------------------- /Codeforces/272E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/272E.cpp -------------------------------------------------------------------------------- /Codeforces/27D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/27D.cpp -------------------------------------------------------------------------------- /Codeforces/280B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/280B.cpp -------------------------------------------------------------------------------- /Codeforces/280C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/280C.cpp -------------------------------------------------------------------------------- /Codeforces/282E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/282E.cpp -------------------------------------------------------------------------------- /Codeforces/283A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/283A.cpp -------------------------------------------------------------------------------- /Codeforces/283B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/283B.cpp -------------------------------------------------------------------------------- /Codeforces/283C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/283C.cpp -------------------------------------------------------------------------------- /Codeforces/283D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/283D.cpp -------------------------------------------------------------------------------- /Codeforces/283E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/283E.cpp -------------------------------------------------------------------------------- /Codeforces/285A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/285A.cpp -------------------------------------------------------------------------------- /Codeforces/285B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/285B.cpp -------------------------------------------------------------------------------- /Codeforces/285C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/285C.cpp -------------------------------------------------------------------------------- /Codeforces/285D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/285D.cpp -------------------------------------------------------------------------------- /Codeforces/287A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/287A.cpp -------------------------------------------------------------------------------- /Codeforces/287B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/287B.cpp -------------------------------------------------------------------------------- /Codeforces/287C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/287C.cpp -------------------------------------------------------------------------------- /Codeforces/292A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/292A.cpp -------------------------------------------------------------------------------- /Codeforces/292B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/292B.cpp -------------------------------------------------------------------------------- /Codeforces/292C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/292C.cpp -------------------------------------------------------------------------------- /Codeforces/292D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/292D.cpp -------------------------------------------------------------------------------- /Codeforces/292E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/292E.cpp -------------------------------------------------------------------------------- /Codeforces/294A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/294A.cpp -------------------------------------------------------------------------------- /Codeforces/294B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/294B.cpp -------------------------------------------------------------------------------- /Codeforces/294C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/294C.cpp -------------------------------------------------------------------------------- /Codeforces/294E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/294E.cpp -------------------------------------------------------------------------------- /Codeforces/297B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/297B.cpp -------------------------------------------------------------------------------- /Codeforces/297C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/297C.cpp -------------------------------------------------------------------------------- /Codeforces/29A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/29A.cpp -------------------------------------------------------------------------------- /Codeforces/29B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/29B.cpp -------------------------------------------------------------------------------- /Codeforces/29C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/29C.cpp -------------------------------------------------------------------------------- /Codeforces/29D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/29D.cpp -------------------------------------------------------------------------------- /Codeforces/29E (bfs).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/29E (bfs).cpp -------------------------------------------------------------------------------- /Codeforces/29E (bfs01).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/29E (bfs01).cpp -------------------------------------------------------------------------------- /Codeforces/300C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/300C.cpp -------------------------------------------------------------------------------- /Codeforces/301B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/301B.cpp -------------------------------------------------------------------------------- /Codeforces/301D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/301D.cpp -------------------------------------------------------------------------------- /Codeforces/311A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/311A.cpp -------------------------------------------------------------------------------- /Codeforces/311B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/311B.cpp -------------------------------------------------------------------------------- /Codeforces/311C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/311C.cpp -------------------------------------------------------------------------------- /Codeforces/311D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/311D.cpp -------------------------------------------------------------------------------- /Codeforces/312A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/312A.cpp -------------------------------------------------------------------------------- /Codeforces/312B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/312B.cpp -------------------------------------------------------------------------------- /Codeforces/313A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/313A.cpp -------------------------------------------------------------------------------- /Codeforces/313B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/313B.cpp -------------------------------------------------------------------------------- /Codeforces/313C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/313C.cpp -------------------------------------------------------------------------------- /Codeforces/313D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/313D.cpp -------------------------------------------------------------------------------- /Codeforces/319A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/319A.cpp -------------------------------------------------------------------------------- /Codeforces/319B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/319B.cpp -------------------------------------------------------------------------------- /Codeforces/319C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/319C.cpp -------------------------------------------------------------------------------- /Codeforces/31A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/31A.cpp -------------------------------------------------------------------------------- /Codeforces/31B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/31B.cpp -------------------------------------------------------------------------------- /Codeforces/31C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/31C.cpp -------------------------------------------------------------------------------- /Codeforces/31D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/31D.cpp -------------------------------------------------------------------------------- /Codeforces/31E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/31E.cpp -------------------------------------------------------------------------------- /Codeforces/449B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/449B.cpp -------------------------------------------------------------------------------- /Codeforces/449D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/449D.cpp -------------------------------------------------------------------------------- /Codeforces/4B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/4B.cpp -------------------------------------------------------------------------------- /Codeforces/4D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/4D.cpp -------------------------------------------------------------------------------- /Codeforces/59E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/59E.cpp -------------------------------------------------------------------------------- /Codeforces/63A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/63A.cpp -------------------------------------------------------------------------------- /Codeforces/63B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/63B.cpp -------------------------------------------------------------------------------- /Codeforces/63C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/63C.cpp -------------------------------------------------------------------------------- /Codeforces/63D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/63D.cpp -------------------------------------------------------------------------------- /Codeforces/63E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/63E.cpp -------------------------------------------------------------------------------- /Codeforces/6B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/6B.cpp -------------------------------------------------------------------------------- /Codeforces/6D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/6D.cpp -------------------------------------------------------------------------------- /Codeforces/73A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/73A.cpp -------------------------------------------------------------------------------- /Codeforces/81E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/81E.cpp -------------------------------------------------------------------------------- /Codeforces/85D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/85D.cpp -------------------------------------------------------------------------------- /Codeforces/9B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/9B.cpp -------------------------------------------------------------------------------- /Codeforces/9E.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codeforces/9E.cpp -------------------------------------------------------------------------------- /Codility/Lesson 1/FrogJmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codility/Lesson 1/FrogJmp.cpp -------------------------------------------------------------------------------- /Codility/Lesson 2/PermCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codility/Lesson 2/PermCheck.cpp -------------------------------------------------------------------------------- /Codility/lithium2013.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codility/lithium2013.cpp -------------------------------------------------------------------------------- /Codility/rho2012.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Codility/rho2012.cpp -------------------------------------------------------------------------------- /Codingame/code-of-the-rings/in/1.txt: -------------------------------------------------------------------------------- 1 | AZ -------------------------------------------------------------------------------- /Codingame/code-of-the-rings/in/16.txt: -------------------------------------------------------------------------------- 1 | TUVWXYZ ABCDEFGHIJ -------------------------------------------------------------------------------- /Codingame/code-of-the-rings/in/2.txt: -------------------------------------------------------------------------------- 1 | MINAS -------------------------------------------------------------------------------- /Codingame/code-of-the-rings/in/3.txt: -------------------------------------------------------------------------------- 1 | UMNE TALMAR RAHTAINE NIXENEN UMIR -------------------------------------------------------------------------------- /Codingame/code-of-the-rings/in/6.txt: -------------------------------------------------------------------------------- 1 | ZAZYA YAZ -------------------------------------------------------------------------------- /Live Archive/2044 - Courses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/2044 - Courses.cpp -------------------------------------------------------------------------------- /Live Archive/2068 - PC^3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/2068 - PC^3.cpp -------------------------------------------------------------------------------- /Live Archive/2730 - Toll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/2730 - Toll.cpp -------------------------------------------------------------------------------- /Live Archive/2947 - Roof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/2947 - Roof.cpp -------------------------------------------------------------------------------- /Live Archive/3003 - Jelly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/3003 - Jelly.cpp -------------------------------------------------------------------------------- /Live Archive/3131 - SETI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/3131 - SETI.cpp -------------------------------------------------------------------------------- /Live Archive/3170 - AGTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/3170 - AGTC.cpp -------------------------------------------------------------------------------- /Live Archive/3171 - Oreon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/3171 - Oreon.cpp -------------------------------------------------------------------------------- /Live Archive/3279 - Dice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/3279 - Dice.cpp -------------------------------------------------------------------------------- /Live Archive/3381 - Connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/3381 - Connect.cpp -------------------------------------------------------------------------------- /Live Archive/3468 - Tornado.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/3468 - Tornado.cpp -------------------------------------------------------------------------------- /Live Archive/3830 - John.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/3830 - John.cpp -------------------------------------------------------------------------------- /Live Archive/3988 - IP-TV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/3988 - IP-TV.cpp -------------------------------------------------------------------------------- /Live Archive/3995 - Pebbles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/3995 - Pebbles.cpp -------------------------------------------------------------------------------- /Live Archive/4043 - Ants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/4043 - Ants.cpp -------------------------------------------------------------------------------- /Live Archive/4211 - Bases.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/4211 - Bases.cpp -------------------------------------------------------------------------------- /Live Archive/4212 - Candy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/4212 - Candy.cpp -------------------------------------------------------------------------------- /Live Archive/4215 - Feynman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/4215 - Feynman.cpp -------------------------------------------------------------------------------- /Live Archive/4305 - Wizards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/4305 - Wizards.cpp -------------------------------------------------------------------------------- /Live Archive/4506 - Lights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/4506 - Lights.cpp -------------------------------------------------------------------------------- /Live Archive/4540 - Windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/4540 - Windows.cpp -------------------------------------------------------------------------------- /Live Archive/4601 - Euclid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/4601 - Euclid.cpp -------------------------------------------------------------------------------- /Live Archive/4608 - Mosaic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/4608 - Mosaic.cpp -------------------------------------------------------------------------------- /Live Archive/4823 - Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/4823 - Game.cpp -------------------------------------------------------------------------------- /Live Archive/4869 - Profits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/4869 - Profits.cpp -------------------------------------------------------------------------------- /Live Archive/4979 - Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/4979 - Game.cpp -------------------------------------------------------------------------------- /Live Archive/4981 - Insults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/4981 - Insults.cpp -------------------------------------------------------------------------------- /Live Archive/5034 - Jewel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/5034 - Jewel.cpp -------------------------------------------------------------------------------- /Live Archive/5983 - MAGRID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Live Archive/5983 - MAGRID.cpp -------------------------------------------------------------------------------- /PKU/1000 - A+B Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1000 - A+B Problem.cpp -------------------------------------------------------------------------------- /PKU/1000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1000.cpp -------------------------------------------------------------------------------- /PKU/1087 - A Plug for UNIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1087 - A Plug for UNIX.cpp -------------------------------------------------------------------------------- /PKU/1147 - Binary codes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1147 - Binary codes.cpp -------------------------------------------------------------------------------- /PKU/1149 - PIGS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1149 - PIGS.cpp -------------------------------------------------------------------------------- /PKU/1265 - Area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1265 - Area.cpp -------------------------------------------------------------------------------- /PKU/1283 - Moving Computer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1283 - Moving Computer.cpp -------------------------------------------------------------------------------- /PKU/1442 - Black Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1442 - Black Box.cpp -------------------------------------------------------------------------------- /PKU/1469 - Courses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1469 - Courses.cpp -------------------------------------------------------------------------------- /PKU/1655 - Balancing Act.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1655 - Balancing Act.cpp -------------------------------------------------------------------------------- /PKU/1656 - Counting Black.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1656 - Counting Black.cpp -------------------------------------------------------------------------------- /PKU/1658 - Eva's Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1658 - Eva's Problem.cpp -------------------------------------------------------------------------------- /PKU/1679 - The Unique MST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1679 - The Unique MST.cpp -------------------------------------------------------------------------------- /PKU/1704 - Georgia and Bob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1704 - Georgia and Bob.cpp -------------------------------------------------------------------------------- /PKU/1737 - Connected Graph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1737 - Connected Graph.java -------------------------------------------------------------------------------- /PKU/1740 - A New Stone Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1740 - A New Stone Game.cpp -------------------------------------------------------------------------------- /PKU/1922 - Ride to School.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1922 - Ride to School.cpp -------------------------------------------------------------------------------- /PKU/1972 - Dice Stacking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1972 - Dice Stacking.cpp -------------------------------------------------------------------------------- /PKU/1990 - MooFest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/1990 - MooFest.cpp -------------------------------------------------------------------------------- /PKU/2002 - Squares.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2002 - Squares.cpp -------------------------------------------------------------------------------- /PKU/2155 - Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2155 - Matrix.cpp -------------------------------------------------------------------------------- /PKU/2192 - Zipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2192 - Zipper.cpp -------------------------------------------------------------------------------- /PKU/2311 - Cutting Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2311 - Cutting Game.cpp -------------------------------------------------------------------------------- /PKU/2344 - Honeymoon Hike.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2344 - Honeymoon Hike.cpp -------------------------------------------------------------------------------- /PKU/2352 - Stars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2352 - Stars.cpp -------------------------------------------------------------------------------- /PKU/2425 - A Chess Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2425 - A Chess Game.cpp -------------------------------------------------------------------------------- /PKU/2479 - Maximum sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2479 - Maximum sum.cpp -------------------------------------------------------------------------------- /PKU/2485 - Highways.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2485 - Highways.cpp -------------------------------------------------------------------------------- /PKU/2593 - Max Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2593 - Max Sequence.cpp -------------------------------------------------------------------------------- /PKU/2656 - Unhappy Jinjin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2656 - Unhappy Jinjin.cpp -------------------------------------------------------------------------------- /PKU/2784 - Buy or Build.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2784 - Buy or Build.cpp -------------------------------------------------------------------------------- /PKU/2840 - Big Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2840 - Big Clock.cpp -------------------------------------------------------------------------------- /PKU/2901 - Hotel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2901 - Hotel.cpp -------------------------------------------------------------------------------- /PKU/2914 - Minimum Cut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2914 - Minimum Cut.cpp -------------------------------------------------------------------------------- /PKU/2945 - Find the Clones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2945 - Find the Clones.cpp -------------------------------------------------------------------------------- /PKU/2975 - Nim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/2975 - Nim.cpp -------------------------------------------------------------------------------- /PKU/3164 - Command Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/3164 - Command Network.cpp -------------------------------------------------------------------------------- /PKU/3167 - Cow Patterns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/3167 - Cow Patterns.cpp -------------------------------------------------------------------------------- /PKU/3179 - Corral the Cows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/3179 - Corral the Cows.cpp -------------------------------------------------------------------------------- /PKU/3222 - Edge Pairing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/3222 - Edge Pairing.cpp -------------------------------------------------------------------------------- /PKU/3243 - Clever Y.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/3243 - Clever Y.cpp -------------------------------------------------------------------------------- /PKU/3253 - Fence Repair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/3253 - Fence Repair.cpp -------------------------------------------------------------------------------- /PKU/3254 - Corn Fields.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/3254 - Corn Fields.cpp -------------------------------------------------------------------------------- /PKU/3264 - Balanced Lineup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/3264 - Balanced Lineup.cpp -------------------------------------------------------------------------------- /PKU/3308 - Paratroopers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/3308 - Paratroopers.cpp -------------------------------------------------------------------------------- /PKU/3356 - AGTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/3356 - AGTC.cpp -------------------------------------------------------------------------------- /PKU/3357 - Oreon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/3357 - Oreon.cpp -------------------------------------------------------------------------------- /PKU/3359 - Wordfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/3359 - Wordfish.cpp -------------------------------------------------------------------------------- /PKU/3652 - Persistent Bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/3652 - Persistent Bits.cpp -------------------------------------------------------------------------------- /PKU/3664 - Election Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/3664 - Election Time.cpp -------------------------------------------------------------------------------- /PKU/3694 - Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/3694 - Network.cpp -------------------------------------------------------------------------------- /PKU/Main1000.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/PKU/Main1000.java -------------------------------------------------------------------------------- /Project Euler/101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Project Euler/101.py -------------------------------------------------------------------------------- /Project Euler/301.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Project Euler/301.txt -------------------------------------------------------------------------------- /Project Euler/345.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Project Euler/345.cpp -------------------------------------------------------------------------------- /Project Euler/346.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Project Euler/346.cpp -------------------------------------------------------------------------------- /Project Euler/347.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Project Euler/347.cpp -------------------------------------------------------------------------------- /Project Euler/60.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Project Euler/60.py -------------------------------------------------------------------------------- /Project Euler/70.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Project Euler/70.py -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SGU/154 - Factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/SGU/154 - Factorial.cpp -------------------------------------------------------------------------------- /SGU/168 - Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/SGU/168 - Matrix.cpp -------------------------------------------------------------------------------- /SGU/236 - Greedy Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/SGU/236 - Greedy Path.cpp -------------------------------------------------------------------------------- /SGU/271 - Book Pile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/SGU/271 - Book Pile.cpp -------------------------------------------------------------------------------- /SGU/354 - Just Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/SGU/354 - Just Matrix.cpp -------------------------------------------------------------------------------- /SGU/441 - Set Division.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/SGU/441 - Set Division.cpp -------------------------------------------------------------------------------- /SGU/507 - Treediff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/SGU/507 - Treediff.cpp -------------------------------------------------------------------------------- /SPOJ/Classical/GEOPROB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/SPOJ/Classical/GEOPROB.java -------------------------------------------------------------------------------- /SPOJ/Classical/QTREE5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/SPOJ/Classical/QTREE5.cpp -------------------------------------------------------------------------------- /TJU/1001 - Hello, world!.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1001 - Hello, world!.cpp -------------------------------------------------------------------------------- /TJU/1002 - Maya Calendar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1002 - Maya Calendar.cpp -------------------------------------------------------------------------------- /TJU/1004 - John's trip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1004 - John's trip.cpp -------------------------------------------------------------------------------- /TJU/1007 - Joseph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1007 - Joseph.cpp -------------------------------------------------------------------------------- /TJU/1008 - Cipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1008 - Cipher.cpp -------------------------------------------------------------------------------- /TJU/1011 - Area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1011 - Area.cpp -------------------------------------------------------------------------------- /TJU/1015 - Gridland.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1015 - Gridland.cpp -------------------------------------------------------------------------------- /TJU/1017 - Number Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1017 - Number Game.cpp -------------------------------------------------------------------------------- /TJU/1024 - Intervals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1024 - Intervals.cpp -------------------------------------------------------------------------------- /TJU/1025 - Robot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1025 - Robot.cpp -------------------------------------------------------------------------------- /TJU/1026 - Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1026 - Network.cpp -------------------------------------------------------------------------------- /TJU/1028 - Stars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1028 - Stars.cpp -------------------------------------------------------------------------------- /TJU/1031 - LC-Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1031 - LC-Display.cpp -------------------------------------------------------------------------------- /TJU/1035 - S-Trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1035 - S-Trees.cpp -------------------------------------------------------------------------------- /TJU/1036 - Rails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1036 - Rails.cpp -------------------------------------------------------------------------------- /TJU/1037 - King.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1037 - King.cpp -------------------------------------------------------------------------------- /TJU/1038 - Prime Land.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1038 - Prime Land.cpp -------------------------------------------------------------------------------- /TJU/1039 - Word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1039 - Word.cpp -------------------------------------------------------------------------------- /TJU/1046 - Multiple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1046 - Multiple.cpp -------------------------------------------------------------------------------- /TJU/1049 - Rectangles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1049 - Rectangles.cpp -------------------------------------------------------------------------------- /TJU/1050 - Courses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1050 - Courses.cpp -------------------------------------------------------------------------------- /TJU/1056 - Labyrinth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1056 - Labyrinth.cpp -------------------------------------------------------------------------------- /TJU/1057 - Piggy-Bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1057 - Piggy-Bank.cpp -------------------------------------------------------------------------------- /TJU/1059 - Play on Words.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1059 - Play on Words.cpp -------------------------------------------------------------------------------- /TJU/1065 - Factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1065 - Factorial.cpp -------------------------------------------------------------------------------- /TJU/1073 - Smith Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1073 - Smith Numbers.cpp -------------------------------------------------------------------------------- /TJU/1074 - Atlantis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1074 - Atlantis.cpp -------------------------------------------------------------------------------- /TJU/1089 - Happy 2004.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1089 - Happy 2004.cpp -------------------------------------------------------------------------------- /TJU/1090 - City hall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1090 - City hall.cpp -------------------------------------------------------------------------------- /TJU/1091 - Finding Nemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1091 - Finding Nemo.cpp -------------------------------------------------------------------------------- /TJU/1093 - Argus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1093 - Argus.cpp -------------------------------------------------------------------------------- /TJU/1100 - Pi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1100 - Pi.cpp -------------------------------------------------------------------------------- /TJU/1105 - Word Index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1105 - Word Index.cpp -------------------------------------------------------------------------------- /TJU/1120 - Mileage Bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1120 - Mileage Bank.cpp -------------------------------------------------------------------------------- /TJU/1127 - DNA Sorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1127 - DNA Sorting.cpp -------------------------------------------------------------------------------- /TJU/1129 - Arbitrage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1129 - Arbitrage.cpp -------------------------------------------------------------------------------- /TJU/1132 - Knight Moves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1132 - Knight Moves.cpp -------------------------------------------------------------------------------- /TJU/1134 - Lotto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1134 - Lotto.cpp -------------------------------------------------------------------------------- /TJU/1139 - Compromise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1139 - Compromise.cpp -------------------------------------------------------------------------------- /TJU/1142 - Frogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1142 - Frogger.cpp -------------------------------------------------------------------------------- /TJU/1144 - Tree Recovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1144 - Tree Recovery.cpp -------------------------------------------------------------------------------- /TJU/1153 - Word Reversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1153 - Word Reversal.cpp -------------------------------------------------------------------------------- /TJU/1156 - Niven Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1156 - Niven Numbers.cpp -------------------------------------------------------------------------------- /TJU/1162 - Biorhythms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1162 - Biorhythms.cpp -------------------------------------------------------------------------------- /TJU/1168 - Team Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1168 - Team Queue.cpp -------------------------------------------------------------------------------- /TJU/1173 - Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1173 - Matrix.cpp -------------------------------------------------------------------------------- /TJU/1178 - Fractal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1178 - Fractal.cpp -------------------------------------------------------------------------------- /TJU/1180 - Inversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1180 - Inversion.cpp -------------------------------------------------------------------------------- /TJU/1192 - Undercut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1192 - Undercut.cpp -------------------------------------------------------------------------------- /TJU/1224 - HTML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1224 - HTML.cpp -------------------------------------------------------------------------------- /TJU/1233 - Number Steps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1233 - Number Steps.cpp -------------------------------------------------------------------------------- /TJU/1242 - Parencodings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1242 - Parencodings.cpp -------------------------------------------------------------------------------- /TJU/1257 - f91.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1257 - f91.cpp -------------------------------------------------------------------------------- /TJU/1263 - Substrings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1263 - Substrings.java -------------------------------------------------------------------------------- /TJU/1279 - Rotten Ropes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1279 - Rotten Ropes.cpp -------------------------------------------------------------------------------- /TJU/1283 - A DP Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1283 - A DP Problem.cpp -------------------------------------------------------------------------------- /TJU/1287 - Dick and Jane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1287 - Dick and Jane.cpp -------------------------------------------------------------------------------- /TJU/1306 - Fire Net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1306 - Fire Net.cpp -------------------------------------------------------------------------------- /TJU/1312 - The Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1312 - The Game.cpp -------------------------------------------------------------------------------- /TJU/1314 - Dice Stacking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1314 - Dice Stacking.cpp -------------------------------------------------------------------------------- /TJU/1322 - Election.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1322 - Election.cpp -------------------------------------------------------------------------------- /TJU/1325 - Fire Station.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1325 - Fire Station.cpp -------------------------------------------------------------------------------- /TJU/1326 - Soundex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1326 - Soundex.cpp -------------------------------------------------------------------------------- /TJU/1330 - Mine Sweeper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1330 - Mine Sweeper.cpp -------------------------------------------------------------------------------- /TJU/1339 - Steps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1339 - Steps.cpp -------------------------------------------------------------------------------- /TJU/1348 - Freckles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1348 - Freckles.cpp -------------------------------------------------------------------------------- /TJU/1355 - Jolly Jumpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1355 - Jolly Jumpers.cpp -------------------------------------------------------------------------------- /TJU/1356 - Tug of War.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1356 - Tug of War.cpp -------------------------------------------------------------------------------- /TJU/1363 - Fiber Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1363 - Fiber Network.cpp -------------------------------------------------------------------------------- /TJU/1366 - Gopher II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1366 - Gopher II.cpp -------------------------------------------------------------------------------- /TJU/1368 - WERTYU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1368 - WERTYU.cpp -------------------------------------------------------------------------------- /TJU/1373 - Sumsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1373 - Sumsets.cpp -------------------------------------------------------------------------------- /TJU/1375 - Ones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1375 - Ones.cpp -------------------------------------------------------------------------------- /TJU/1378 - Babelfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1378 - Babelfish.cpp -------------------------------------------------------------------------------- /TJU/1389 - Forests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1389 - Forests.cpp -------------------------------------------------------------------------------- /TJU/1391 - Hay Points.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1391 - Hay Points.cpp -------------------------------------------------------------------------------- /TJU/1394 - Power Strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1394 - Power Strings.cpp -------------------------------------------------------------------------------- /TJU/1398 - Square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1398 - Square.cpp -------------------------------------------------------------------------------- /TJU/1399 - Blocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1399 - Blocks.cpp -------------------------------------------------------------------------------- /TJU/1401 - All in All.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1401 - All in All.cpp -------------------------------------------------------------------------------- /TJU/1402 - Balanced Food.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1402 - Balanced Food.cpp -------------------------------------------------------------------------------- /TJU/1410 - Euclid's Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1410 - Euclid's Game.cpp -------------------------------------------------------------------------------- /TJU/1412 - Above Average.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1412 - Above Average.cpp -------------------------------------------------------------------------------- /TJU/1417 - Basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1417 - Basic.cpp -------------------------------------------------------------------------------- /TJU/1423 - Guessing Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1423 - Guessing Game.cpp -------------------------------------------------------------------------------- /TJU/1424 - Russian Dolls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1424 - Russian Dolls.cpp -------------------------------------------------------------------------------- /TJU/1445 - Ants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1445 - Ants.cpp -------------------------------------------------------------------------------- /TJU/1448 - Mint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1448 - Mint.cpp -------------------------------------------------------------------------------- /TJU/1469 - Wooden Sticks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1469 - Wooden Sticks.cpp -------------------------------------------------------------------------------- /TJU/1473 - Moving Tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1473 - Moving Tables.cpp -------------------------------------------------------------------------------- /TJU/1476 - A simple task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1476 - A simple task.cpp -------------------------------------------------------------------------------- /TJU/1498 - Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1498 - Input.cpp -------------------------------------------------------------------------------- /TJU/1508 - Watchdog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1508 - Watchdog.cpp -------------------------------------------------------------------------------- /TJU/1512 - Investment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1512 - Investment.cpp -------------------------------------------------------------------------------- /TJU/1514 - SETI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1514 - SETI.cpp -------------------------------------------------------------------------------- /TJU/1516 - Climbing Worm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1516 - Climbing Worm.cpp -------------------------------------------------------------------------------- /TJU/1519 - Ball Toss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1519 - Ball Toss.cpp -------------------------------------------------------------------------------- /TJU/1526 - Slots of Fun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1526 - Slots of Fun.cpp -------------------------------------------------------------------------------- /TJU/1529 - Granny's Bike.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1529 - Granny's Bike.cpp -------------------------------------------------------------------------------- /TJU/1531 - Decorations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1531 - Decorations.cpp -------------------------------------------------------------------------------- /TJU/1533 - Phone Home.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1533 - Phone Home.cpp -------------------------------------------------------------------------------- /TJU/1534 - Polly Nomials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1534 - Polly Nomials.cpp -------------------------------------------------------------------------------- /TJU/1535 - Pushing Boxes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1535 - Pushing Boxes.cpp -------------------------------------------------------------------------------- /TJU/1541 - Alphacode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1541 - Alphacode.cpp -------------------------------------------------------------------------------- /TJU/1547 - To and Fro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1547 - To and Fro.cpp -------------------------------------------------------------------------------- /TJU/1549 - u Calculate e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1549 - u Calculate e.cpp -------------------------------------------------------------------------------- /TJU/1551 - Digital Roots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1551 - Digital Roots.cpp -------------------------------------------------------------------------------- /TJU/1552 - Scramble Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1552 - Scramble Sort.cpp -------------------------------------------------------------------------------- /TJU/1557 - Color Me Less.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1557 - Color Me Less.cpp -------------------------------------------------------------------------------- /TJU/1558 - P,MTHBGWB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1558 - P,MTHBGWB.cpp -------------------------------------------------------------------------------- /TJU/1564 - To the Max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1564 - To the Max.cpp -------------------------------------------------------------------------------- /TJU/1571 - Perfection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1571 - Perfection.cpp -------------------------------------------------------------------------------- /TJU/1582 - Galaxy World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1582 - Galaxy World.cpp -------------------------------------------------------------------------------- /TJU/1588 - Star Tennis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1588 - Star Tennis.cpp -------------------------------------------------------------------------------- /TJU/1590 - IBM Minus One.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1590 - IBM Minus One.cpp -------------------------------------------------------------------------------- /TJU/1593 - URLs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1593 - URLs.cpp -------------------------------------------------------------------------------- /TJU/1595 - Triangles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1595 - Triangles.cpp -------------------------------------------------------------------------------- /TJU/1599 - Pushing Boxes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1599 - Pushing Boxes.cpp -------------------------------------------------------------------------------- /TJU/1601 - Box of Bricks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1601 - Box of Bricks.cpp -------------------------------------------------------------------------------- /TJU/1609 - Blowing Fuses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1609 - Blowing Fuses.cpp -------------------------------------------------------------------------------- /TJU/1614 - Is It A Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1614 - Is It A Tree.cpp -------------------------------------------------------------------------------- /TJU/1633 - Zipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1633 - Zipper.cpp -------------------------------------------------------------------------------- /TJU/1636 - Going Home.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1636 - Going Home.cpp -------------------------------------------------------------------------------- /TJU/1642 - Floppies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1642 - Floppies.cpp -------------------------------------------------------------------------------- /TJU/1643 - Golf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1643 - Golf.cpp -------------------------------------------------------------------------------- /TJU/1644 - Reverse Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1644 - Reverse Text.cpp -------------------------------------------------------------------------------- /TJU/1656 - In Danger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1656 - In Danger.cpp -------------------------------------------------------------------------------- /TJU/1676 - Networking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1676 - Networking.cpp -------------------------------------------------------------------------------- /TJU/1687 - Period.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1687 - Period.cpp -------------------------------------------------------------------------------- /TJU/1697 - Strategies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1697 - Strategies.cpp -------------------------------------------------------------------------------- /TJU/1698 - StuPId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1698 - StuPId.cpp -------------------------------------------------------------------------------- /TJU/1699 - Binary Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1699 - Binary Tree.cpp -------------------------------------------------------------------------------- /TJU/1701 - Stamps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1701 - Stamps.cpp -------------------------------------------------------------------------------- /TJU/1704 - Pimp My Ride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1704 - Pimp My Ride.cpp -------------------------------------------------------------------------------- /TJU/1706 - A Bug's Life.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1706 - A Bug's Life.cpp -------------------------------------------------------------------------------- /TJU/1715 - Yeehaa!.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1715 - Yeehaa!.cpp -------------------------------------------------------------------------------- /TJU/1720 - Brainman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1720 - Brainman.cpp -------------------------------------------------------------------------------- /TJU/1730 - Self Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1730 - Self Numbers.cpp -------------------------------------------------------------------------------- /TJU/1735 - Cramer's Rule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1735 - Cramer's Rule.cpp -------------------------------------------------------------------------------- /TJU/1736 - Knight Moves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1736 - Knight Moves.cpp -------------------------------------------------------------------------------- /TJU/1737 - Rat Attack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1737 - Rat Attack.cpp -------------------------------------------------------------------------------- /TJU/1746 - How many sums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1746 - How many sums.cpp -------------------------------------------------------------------------------- /TJU/1748 - Power Digit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1748 - Power Digit.cpp -------------------------------------------------------------------------------- /TJU/1754 - Circular Area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1754 - Circular Area.cpp -------------------------------------------------------------------------------- /TJU/1779 - Tri Tiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1779 - Tri Tiling.cpp -------------------------------------------------------------------------------- /TJU/1782 - The jackpot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1782 - The jackpot.cpp -------------------------------------------------------------------------------- /TJU/1785 - Jack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1785 - Jack.cpp -------------------------------------------------------------------------------- /TJU/1809 - Playground.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1809 - Playground.cpp -------------------------------------------------------------------------------- /TJU/1819 - Spelling Be.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1819 - Spelling Be.cpp -------------------------------------------------------------------------------- /TJU/1850 - Songs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1850 - Songs.cpp -------------------------------------------------------------------------------- /TJU/1851 - Sudoku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1851 - Sudoku.cpp -------------------------------------------------------------------------------- /TJU/1852 - Tour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1852 - Tour.cpp -------------------------------------------------------------------------------- /TJU/1872 - Camel trading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1872 - Camel trading.cpp -------------------------------------------------------------------------------- /TJU/1886 - Connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1886 - Connect.cpp -------------------------------------------------------------------------------- /TJU/1892 - Netiquette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1892 - Netiquette.cpp -------------------------------------------------------------------------------- /TJU/1909 - Robot Motion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1909 - Robot Motion.cpp -------------------------------------------------------------------------------- /TJU/1912 - Colorville.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1912 - Colorville.cpp -------------------------------------------------------------------------------- /TJU/1916 - Transmitters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1916 - Transmitters.cpp -------------------------------------------------------------------------------- /TJU/1917 - W's Cipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1917 - W's Cipher.cpp -------------------------------------------------------------------------------- /TJU/1920 - Hangover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1920 - Hangover.cpp -------------------------------------------------------------------------------- /TJU/1923 - Tanning Salon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1923 - Tanning Salon.cpp -------------------------------------------------------------------------------- /TJU/1924 - Jungle Roads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1924 - Jungle Roads.cpp -------------------------------------------------------------------------------- /TJU/1925 - Clay Bully.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1925 - Clay Bully.cpp -------------------------------------------------------------------------------- /TJU/1930 - Doubles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1930 - Doubles.cpp -------------------------------------------------------------------------------- /TJU/1936 - Flow Layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1936 - Flow Layout.cpp -------------------------------------------------------------------------------- /TJU/1939 - Speed Limit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1939 - Speed Limit.cpp -------------------------------------------------------------------------------- /TJU/1945 - Perfect Cubes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1945 - Perfect Cubes.cpp -------------------------------------------------------------------------------- /TJU/1959 - Oil Deposits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1959 - Oil Deposits.cpp -------------------------------------------------------------------------------- /TJU/1961 - Sum It Up.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1961 - Sum It Up.cpp -------------------------------------------------------------------------------- /TJU/1962 - Skew Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1962 - Skew Binary.cpp -------------------------------------------------------------------------------- /TJU/1963 - Haiku Review.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1963 - Haiku Review.cpp -------------------------------------------------------------------------------- /TJU/1980 - Perms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1980 - Perms.cpp -------------------------------------------------------------------------------- /TJU/1988 - Last Digits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1988 - Last Digits.cpp -------------------------------------------------------------------------------- /TJU/1991 - Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/1991 - Sequence.cpp -------------------------------------------------------------------------------- /TJU/2009 - Two Ends.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2009 - Two Ends.cpp -------------------------------------------------------------------------------- /TJU/2020 - Palindromes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2020 - Palindromes.cpp -------------------------------------------------------------------------------- /TJU/2025 - Prime Cuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2025 - Prime Cuts.cpp -------------------------------------------------------------------------------- /TJU/2033 - Risk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2033 - Risk.cpp -------------------------------------------------------------------------------- /TJU/2040 - Eight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2040 - Eight.cpp -------------------------------------------------------------------------------- /TJU/2041 - Ratio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2041 - Ratio.cpp -------------------------------------------------------------------------------- /TJU/2047 - Deeper Blue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2047 - Deeper Blue.cpp -------------------------------------------------------------------------------- /TJU/2066 - No Brainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2066 - No Brainer.cpp -------------------------------------------------------------------------------- /TJU/2075 - Four Quarters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2075 - Four Quarters.cpp -------------------------------------------------------------------------------- /TJU/2090 - Rhyme Schemes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2090 - Rhyme Schemes.cpp -------------------------------------------------------------------------------- /TJU/2101 - Bullseye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2101 - Bullseye.cpp -------------------------------------------------------------------------------- /TJU/2122 - Help!.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2122 - Help!.cpp -------------------------------------------------------------------------------- /TJU/2123 - Head or Tail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2123 - Head or Tail.cpp -------------------------------------------------------------------------------- /TJU/2127 - Magic Trick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2127 - Magic Trick.cpp -------------------------------------------------------------------------------- /TJU/2140 - Tornado.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2140 - Tornado.cpp -------------------------------------------------------------------------------- /TJU/2146 - Computer DJ.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2146 - Computer DJ.cpp -------------------------------------------------------------------------------- /TJU/2147 - P-Networks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2147 - P-Networks.cpp -------------------------------------------------------------------------------- /TJU/2149 - 01000001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2149 - 01000001.cpp -------------------------------------------------------------------------------- /TJU/2159 - Black Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2159 - Black Box.cpp -------------------------------------------------------------------------------- /TJU/2170 - Balance Trip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2170 - Balance Trip.cpp -------------------------------------------------------------------------------- /TJU/2177 - Magic Sticks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2177 - Magic Sticks.cpp -------------------------------------------------------------------------------- /TJU/2183 - Checker Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2183 - Checker Game.cpp -------------------------------------------------------------------------------- /TJU/2193 - A Simple Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2193 - A Simple Game.cpp -------------------------------------------------------------------------------- /TJU/2194 - Mine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2194 - Mine.cpp -------------------------------------------------------------------------------- /TJU/2198 - Monkey's Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2198 - Monkey's Game.cpp -------------------------------------------------------------------------------- /TJU/2199 - A+B Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2199 - A+B Problem.cpp -------------------------------------------------------------------------------- /TJU/2218 - Super Square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2218 - Super Square.cpp -------------------------------------------------------------------------------- /TJU/2221 - Weight Weigh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2221 - Weight Weigh.cpp -------------------------------------------------------------------------------- /TJU/2223 - False Coin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2223 - False Coin.cpp -------------------------------------------------------------------------------- /TJU/2226 - Parliament.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2226 - Parliament.cpp -------------------------------------------------------------------------------- /TJU/2230 - Gangsters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2230 - Gangsters.cpp -------------------------------------------------------------------------------- /TJU/2236 - Partial Sums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2236 - Partial Sums.cpp -------------------------------------------------------------------------------- /TJU/2237 - Sea Battle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2237 - Sea Battle.cpp -------------------------------------------------------------------------------- /TJU/2241 - Ancestor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2241 - Ancestor.cpp -------------------------------------------------------------------------------- /TJU/2272 - Traffic Jam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2272 - Traffic Jam.cpp -------------------------------------------------------------------------------- /TJU/2288 - Highways.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2288 - Highways.cpp -------------------------------------------------------------------------------- /TJU/2291 - Card Hands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2291 - Card Hands.cpp -------------------------------------------------------------------------------- /TJU/2294 - How many 0's.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2294 - How many 0's.cpp -------------------------------------------------------------------------------- /TJU/2300 - Firepersons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2300 - Firepersons.cpp -------------------------------------------------------------------------------- /TJU/2308 - Divisors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2308 - Divisors.cpp -------------------------------------------------------------------------------- /TJU/2316 - Cable master.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2316 - Cable master.cpp -------------------------------------------------------------------------------- /TJU/2333 - Feel Good.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2333 - Feel Good.cpp -------------------------------------------------------------------------------- /TJU/2340 - Tudoku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2340 - Tudoku.cpp -------------------------------------------------------------------------------- /TJU/2350 - Laserbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2350 - Laserbox.cpp -------------------------------------------------------------------------------- /TJU/2404 - Bin Packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2404 - Bin Packing.cpp -------------------------------------------------------------------------------- /TJU/2420 - S-nim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2420 - S-nim.cpp -------------------------------------------------------------------------------- /TJU/2425 - Tourist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2425 - Tourist.cpp -------------------------------------------------------------------------------- /TJU/2433 - Word Rings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2433 - Word Rings.cpp -------------------------------------------------------------------------------- /TJU/2442 - Last digit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2442 - Last digit.cpp -------------------------------------------------------------------------------- /TJU/2469 - Friends.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2469 - Friends.cpp -------------------------------------------------------------------------------- /TJU/2470 - Robot in Maze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2470 - Robot in Maze.cpp -------------------------------------------------------------------------------- /TJU/2483 - Nasty Hacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2483 - Nasty Hacks.cpp -------------------------------------------------------------------------------- /TJU/2491 - Hello Kitty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2491 - Hello Kitty.cpp -------------------------------------------------------------------------------- /TJU/2493 - Equidivisions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2493 - Equidivisions.cpp -------------------------------------------------------------------------------- /TJU/2501 - Score.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2501 - Score.cpp -------------------------------------------------------------------------------- /TJU/2504 - Pinary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2504 - Pinary.cpp -------------------------------------------------------------------------------- /TJU/2506 - Seminar Room.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2506 - Seminar Room.cpp -------------------------------------------------------------------------------- /TJU/2518 - Rummikub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2518 - Rummikub.cpp -------------------------------------------------------------------------------- /TJU/2520 - Quicksum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2520 - Quicksum.cpp -------------------------------------------------------------------------------- /TJU/2524 - Frugal Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2524 - Frugal Search.cpp -------------------------------------------------------------------------------- /TJU/2530 - AGTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2530 - AGTC.cpp -------------------------------------------------------------------------------- /TJU/2531 - Oreon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2531 - Oreon.cpp -------------------------------------------------------------------------------- /TJU/2533 - Wordfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2533 - Wordfish.cpp -------------------------------------------------------------------------------- /TJU/2537 - Quick Change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2537 - Quick Change.cpp -------------------------------------------------------------------------------- /TJU/2547 - Subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2547 - Subsequence.cpp -------------------------------------------------------------------------------- /TJU/2553 - Japan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2553 - Japan.cpp -------------------------------------------------------------------------------- /TJU/2560 - The Explorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2560 - The Explorer.cpp -------------------------------------------------------------------------------- /TJU/2561 - Caterpillar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2561 - Caterpillar.cpp -------------------------------------------------------------------------------- /TJU/2577 - Rounders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2577 - Rounders.cpp -------------------------------------------------------------------------------- /TJU/2616 - Budget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2616 - Budget.cpp -------------------------------------------------------------------------------- /TJU/2628 - Subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2628 - Subsequence.cpp -------------------------------------------------------------------------------- /TJU/2633 - Smart Sister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2633 - Smart Sister.cpp -------------------------------------------------------------------------------- /TJU/2634 - Paratroopers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2634 - Paratroopers.cpp -------------------------------------------------------------------------------- /TJU/2637 - Red and Black.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2637 - Red and Black.cpp -------------------------------------------------------------------------------- /TJU/2644 - Pie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2644 - Pie.cpp -------------------------------------------------------------------------------- /TJU/2647 - Printer Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2647 - Printer Queue.cpp -------------------------------------------------------------------------------- /TJU/2648 - Prime Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2648 - Prime Path.cpp -------------------------------------------------------------------------------- /TJU/2654 - Jackpot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2654 - Jackpot.cpp -------------------------------------------------------------------------------- /TJU/2656 - Exploding CPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2656 - Exploding CPU.cpp -------------------------------------------------------------------------------- /TJU/2674 - Java vs C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2674 - Java vs C++.cpp -------------------------------------------------------------------------------- /TJU/2722 - K-th Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2722 - K-th Number.cpp -------------------------------------------------------------------------------- /TJU/2729 - Godfather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2729 - Godfather.cpp -------------------------------------------------------------------------------- /TJU/2735 - Bridges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2735 - Bridges.cpp -------------------------------------------------------------------------------- /TJU/2754 - Cow Sorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2754 - Cow Sorting.cpp -------------------------------------------------------------------------------- /TJU/2768 - Making Change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2768 - Making Change.cpp -------------------------------------------------------------------------------- /TJU/2770 - VIP Seats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2770 - VIP Seats.cpp -------------------------------------------------------------------------------- /TJU/2771 - Don't Be Late.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2771 - Don't Be Late.cpp -------------------------------------------------------------------------------- /TJU/2772 - Parallelogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2772 - Parallelogram.cpp -------------------------------------------------------------------------------- /TJU/2773 - Fruit Trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2773 - Fruit Trees.cpp -------------------------------------------------------------------------------- /TJU/2775 - Bee Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2775 - Bee Tree.cpp -------------------------------------------------------------------------------- /TJU/2779 - Fishing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2779 - Fishing.cpp -------------------------------------------------------------------------------- /TJU/2780 - Homework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2780 - Homework.cpp -------------------------------------------------------------------------------- /TJU/2791 - Bovine Latin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2791 - Bovine Latin.cpp -------------------------------------------------------------------------------- /TJU/2794 - Bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2794 - Bus.cpp -------------------------------------------------------------------------------- /TJU/2796 - Erdos Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2796 - Erdos Number.cpp -------------------------------------------------------------------------------- /TJU/2797 - Erdos' Travel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2797 - Erdos' Travel.cpp -------------------------------------------------------------------------------- /TJU/2799 - Playground.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2799 - Playground.cpp -------------------------------------------------------------------------------- /TJU/2800 - Cube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2800 - Cube.cpp -------------------------------------------------------------------------------- /TJU/2801 - Binary Trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2801 - Binary Trees.cpp -------------------------------------------------------------------------------- /TJU/2802 - Tom's Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2802 - Tom's Game.cpp -------------------------------------------------------------------------------- /TJU/2807 - Number Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2807 - Number Sort.cpp -------------------------------------------------------------------------------- /TJU/2812 - Travel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2812 - Travel.cpp -------------------------------------------------------------------------------- /TJU/2816 - Bookshelf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2816 - Bookshelf.cpp -------------------------------------------------------------------------------- /TJU/2819 - Travel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2819 - Travel.cpp -------------------------------------------------------------------------------- /TJU/2823 - Dining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2823 - Dining.cpp -------------------------------------------------------------------------------- /TJU/2824 - City Horizon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2824 - City Horizon.cpp -------------------------------------------------------------------------------- /TJU/2826 - Fliptile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2826 - Fliptile.cpp -------------------------------------------------------------------------------- /TJU/2827 - Cow Solitaire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2827 - Cow Solitaire.cpp -------------------------------------------------------------------------------- /TJU/2829 - Cow Counting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2829 - Cow Counting.cpp -------------------------------------------------------------------------------- /TJU/2831 - Wormholes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2831 - Wormholes.cpp -------------------------------------------------------------------------------- /TJU/2834 - Cow Picnic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2834 - Cow Picnic.cpp -------------------------------------------------------------------------------- /TJU/2842 - Course.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2842 - Course.cpp -------------------------------------------------------------------------------- /TJU/2843 - Diamonds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2843 - Diamonds.cpp -------------------------------------------------------------------------------- /TJU/2852 - Bad Hair Day.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2852 - Bad Hair Day.cpp -------------------------------------------------------------------------------- /TJU/2857 - Digit Sorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2857 - Digit Sorting.cpp -------------------------------------------------------------------------------- /TJU/2859 - S Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2859 - S Number.cpp -------------------------------------------------------------------------------- /TJU/2861 - Divisors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2861 - Divisors.cpp -------------------------------------------------------------------------------- /TJU/2862 - CityStar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2862 - CityStar.cpp -------------------------------------------------------------------------------- /TJU/2870 - The K-th City.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2870 - The K-th City.cpp -------------------------------------------------------------------------------- /TJU/2883 - City Mapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2883 - City Mapping.cpp -------------------------------------------------------------------------------- /TJU/2891 - Sub-Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2891 - Sub-Sequence.cpp -------------------------------------------------------------------------------- /TJU/2892 - Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2892 - Task.cpp -------------------------------------------------------------------------------- /TJU/2897 - Humidex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2897 - Humidex.cpp -------------------------------------------------------------------------------- /TJU/2901 - Very easy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2901 - Very easy.cpp -------------------------------------------------------------------------------- /TJU/2902 - palindrome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2902 - palindrome.java -------------------------------------------------------------------------------- /TJU/2904 - Counting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2904 - Counting.cpp -------------------------------------------------------------------------------- /TJU/2910 - Cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2910 - Cylinder.cpp -------------------------------------------------------------------------------- /TJU/2911 - Deli Deli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2911 - Deli Deli.cpp -------------------------------------------------------------------------------- /TJU/2912 - Expressions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2912 - Expressions.cpp -------------------------------------------------------------------------------- /TJU/2914 - Grocery store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2914 - Grocery store.cpp -------------------------------------------------------------------------------- /TJU/2916 - Help Me.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2916 - Help Me.cpp -------------------------------------------------------------------------------- /TJU/2917 - The Watchman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2917 - The Watchman.cpp -------------------------------------------------------------------------------- /TJU/2918 - LCM Revisited.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2918 - LCM Revisited.cpp -------------------------------------------------------------------------------- /TJU/2920 - Help Hakim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2920 - Help Hakim.cpp -------------------------------------------------------------------------------- /TJU/2924 - Modulus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2924 - Modulus.cpp -------------------------------------------------------------------------------- /TJU/2926 - Contest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2926 - Contest.cpp -------------------------------------------------------------------------------- /TJU/2927 - Cycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2927 - Cycle.cpp -------------------------------------------------------------------------------- /TJU/2933 - Pachinko.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2933 - Pachinko.cpp -------------------------------------------------------------------------------- /TJU/2934 - Election Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2934 - Election Time.cpp -------------------------------------------------------------------------------- /TJU/2935 - Phone List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2935 - Phone List.cpp -------------------------------------------------------------------------------- /TJU/2937 - Shopaholic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2937 - Shopaholic.cpp -------------------------------------------------------------------------------- /TJU/2941 - Girl Friend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2941 - Girl Friend.cpp -------------------------------------------------------------------------------- /TJU/2943 - Love Letter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2943 - Love Letter.cpp -------------------------------------------------------------------------------- /TJU/2945 - HERMAN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2945 - HERMAN.cpp -------------------------------------------------------------------------------- /TJU/2946 - OKVIRI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2946 - OKVIRI.cpp -------------------------------------------------------------------------------- /TJU/2948 - BOND.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2948 - BOND.cpp -------------------------------------------------------------------------------- /TJU/2950 - PATULJCI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2950 - PATULJCI.cpp -------------------------------------------------------------------------------- /TJU/2951 - NPUZZLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2951 - NPUZZLE.cpp -------------------------------------------------------------------------------- /TJU/2952 - TROJKE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2952 - TROJKE.cpp -------------------------------------------------------------------------------- /TJU/2953 - TENKICI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2953 - TENKICI.cpp -------------------------------------------------------------------------------- /TJU/2955 - CETVRTA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2955 - CETVRTA.cpp -------------------------------------------------------------------------------- /TJU/2956 - PEG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2956 - PEG.cpp -------------------------------------------------------------------------------- /TJU/2960 - VECI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2960 - VECI.cpp -------------------------------------------------------------------------------- /TJU/2961 - LEKTIRA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2961 - LEKTIRA.cpp -------------------------------------------------------------------------------- /TJU/2966 - DIPU NUMBER 3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2966 - DIPU NUMBER 3.cpp -------------------------------------------------------------------------------- /TJU/2967 - Eazzzzzy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2967 - Eazzzzzy.cpp -------------------------------------------------------------------------------- /TJU/2969 - HELP ! ! !.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2969 - HELP ! ! !.cpp -------------------------------------------------------------------------------- /TJU/2970 - Hackle Number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2970 - Hackle Number.cpp -------------------------------------------------------------------------------- /TJU/2972 - MOVING DHAKA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2972 - MOVING DHAKA.cpp -------------------------------------------------------------------------------- /TJU/2975 - Encription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2975 - Encription.cpp -------------------------------------------------------------------------------- /TJU/2988 - PLMM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2988 - PLMM.cpp -------------------------------------------------------------------------------- /TJU/2989 - Simple Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2989 - Simple Game.cpp -------------------------------------------------------------------------------- /TJU/2990 - Simple Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2990 - Simple Task.cpp -------------------------------------------------------------------------------- /TJU/2994 - Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/2994 - Vector.cpp -------------------------------------------------------------------------------- /TJU/3002 - Vote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3002 - Vote.cpp -------------------------------------------------------------------------------- /TJU/3004 - Mispelling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3004 - Mispelling.cpp -------------------------------------------------------------------------------- /TJU/3005 - Conversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3005 - Conversions.cpp -------------------------------------------------------------------------------- /TJU/3006 - Encoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3006 - Encoding.cpp -------------------------------------------------------------------------------- /TJU/3007 - Decoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3007 - Decoding.cpp -------------------------------------------------------------------------------- /TJU/3017 - El Dorado.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3017 - El Dorado.cpp -------------------------------------------------------------------------------- /TJU/3029 - Assemble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3029 - Assemble.cpp -------------------------------------------------------------------------------- /TJU/3036 - Obfuscation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3036 - Obfuscation.cpp -------------------------------------------------------------------------------- /TJU/3050 - Encrypted SMS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3050 - Encrypted SMS.cpp -------------------------------------------------------------------------------- /TJU/3057 - Crazy Bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3057 - Crazy Bits.cpp -------------------------------------------------------------------------------- /TJU/3062 - Pebbles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3062 - Pebbles.cpp -------------------------------------------------------------------------------- /TJU/3070 - Encryption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3070 - Encryption.cpp -------------------------------------------------------------------------------- /TJU/3071 - Number Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3071 - Number Game.cpp -------------------------------------------------------------------------------- /TJU/3073 - Country Road.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3073 - Country Road.cpp -------------------------------------------------------------------------------- /TJU/3074 - Color Lamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3074 - Color Lamp.cpp -------------------------------------------------------------------------------- /TJU/3076 - Prime Gap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3076 - Prime Gap.cpp -------------------------------------------------------------------------------- /TJU/3086 - Verdis Quo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3086 - Verdis Quo.cpp -------------------------------------------------------------------------------- /TJU/3090 - Rout 66.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3090 - Rout 66.cpp -------------------------------------------------------------------------------- /TJU/3100 - Getting Gold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3100 - Getting Gold.cpp -------------------------------------------------------------------------------- /TJU/3104 - Go Home.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3104 - Go Home.cpp -------------------------------------------------------------------------------- /TJU/3108 - Common item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3108 - Common item.cpp -------------------------------------------------------------------------------- /TJU/3110 - Grey Area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3110 - Grey Area.cpp -------------------------------------------------------------------------------- /TJU/3121 - Sky Code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3121 - Sky Code.cpp -------------------------------------------------------------------------------- /TJU/3135 - Giant Screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3135 - Giant Screen.cpp -------------------------------------------------------------------------------- /TJU/3143 - Buying Hay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3143 - Buying Hay.cpp -------------------------------------------------------------------------------- /TJU/3146 - Mixed Up Cows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3146 - Mixed Up Cows.cpp -------------------------------------------------------------------------------- /TJU/3151 - Cryptoquote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3151 - Cryptoquote.cpp -------------------------------------------------------------------------------- /TJU/3152 - Binary Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3152 - Binary Clock.cpp -------------------------------------------------------------------------------- /TJU/3160 - Bad Grass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3160 - Bad Grass.cpp -------------------------------------------------------------------------------- /TJU/3161 - Hay Expenses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3161 - Hay Expenses.cpp -------------------------------------------------------------------------------- /TJU/3162 - Hay For Sale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3162 - Hay For Sale.cpp -------------------------------------------------------------------------------- /TJU/3163 - Patting Heads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3163 - Patting Heads.cpp -------------------------------------------------------------------------------- /TJU/3170 - Music Notes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3170 - Music Notes.cpp -------------------------------------------------------------------------------- /TJU/3171 - Best Spot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3171 - Best Spot.cpp -------------------------------------------------------------------------------- /TJU/3172 - Total Flow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3172 - Total Flow.cpp -------------------------------------------------------------------------------- /TJU/3182 - Wooden Fence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3182 - Wooden Fence.cpp -------------------------------------------------------------------------------- /TJU/3201 - Stock Marcket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3201 - Stock Marcket.cpp -------------------------------------------------------------------------------- /TJU/3206 - Dairy Queen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3206 - Dairy Queen.cpp -------------------------------------------------------------------------------- /TJU/3207 - Sand Castle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3207 - Sand Castle.cpp -------------------------------------------------------------------------------- /TJU/3209 - Look Up.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3209 - Look Up.cpp -------------------------------------------------------------------------------- /TJU/3210 - Moon Mooing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3210 - Moon Mooing.cpp -------------------------------------------------------------------------------- /TJU/3211 - Cleaning Up.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3211 - Cleaning Up.cpp -------------------------------------------------------------------------------- /TJU/3213 - Cup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3213 - Cup.cpp -------------------------------------------------------------------------------- /TJU/3214 - Find the Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3214 - Find the Path.cpp -------------------------------------------------------------------------------- /TJU/3216 - Minimum Heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3216 - Minimum Heap.cpp -------------------------------------------------------------------------------- /TJU/3217 - Name PK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3217 - Name PK.cpp -------------------------------------------------------------------------------- /TJU/3222 - Toxophily.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3222 - Toxophily.cpp -------------------------------------------------------------------------------- /TJU/3224 - Birthday Cake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3224 - Birthday Cake.cpp -------------------------------------------------------------------------------- /TJU/3232 - kangaroo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3232 - kangaroo.cpp -------------------------------------------------------------------------------- /TJU/3234 - Grasshopper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3234 - Grasshopper.cpp -------------------------------------------------------------------------------- /TJU/3237 - Change Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3237 - Change Base.cpp -------------------------------------------------------------------------------- /TJU/3238 - Equation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3238 - Equation.cpp -------------------------------------------------------------------------------- /TJU/3243 - Blocked Road.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3243 - Blocked Road.cpp -------------------------------------------------------------------------------- /TJU/3249 - Happy Coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3249 - Happy Coins.cpp -------------------------------------------------------------------------------- /TJU/3251 - Day of Week.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3251 - Day of Week.cpp -------------------------------------------------------------------------------- /TJU/3271 - Deque Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3271 - Deque Sort.cpp -------------------------------------------------------------------------------- /TJU/3275 - Windy's S.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3275 - Windy's S.cpp -------------------------------------------------------------------------------- /TJU/3312 - Traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3312 - Traversal.cpp -------------------------------------------------------------------------------- /TJU/3313 - Calculation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3313 - Calculation.cpp -------------------------------------------------------------------------------- /TJU/3314 - Cow Sorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3314 - Cow Sorting.cpp -------------------------------------------------------------------------------- /TJU/3320 - Coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3320 - Coins.cpp -------------------------------------------------------------------------------- /TJU/3322 - Repository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3322 - Repository.cpp -------------------------------------------------------------------------------- /TJU/3323 - Binary String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3323 - Binary String.cpp -------------------------------------------------------------------------------- /TJU/3341 - Sum of Digits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3341 - Sum of Digits.cpp -------------------------------------------------------------------------------- /TJU/3348 - Scales.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3348 - Scales.cpp -------------------------------------------------------------------------------- /TJU/3370 - Kebab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3370 - Kebab.cpp -------------------------------------------------------------------------------- /TJU/3375 - Check Corners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3375 - Check Corners.cpp -------------------------------------------------------------------------------- /TJU/3404 - Ant Trip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3404 - Ant Trip.cpp -------------------------------------------------------------------------------- /TJU/3412 - Saving Beans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3412 - Saving Beans.cpp -------------------------------------------------------------------------------- /TJU/3440 - Multiply Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3440 - Multiply Game.cpp -------------------------------------------------------------------------------- /TJU/3445 - Soda Surpler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3445 - Soda Surpler.cpp -------------------------------------------------------------------------------- /TJU/3446 - Money Matters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3446 - Money Matters.cpp -------------------------------------------------------------------------------- /TJU/3455 - Diamonds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3455 - Diamonds.cpp -------------------------------------------------------------------------------- /TJU/3456 - rank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3456 - rank.cpp -------------------------------------------------------------------------------- /TJU/3457 - Cow Pinball.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3457 - Cow Pinball.java -------------------------------------------------------------------------------- /TJU/3467 - 3467.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3467 - 3467.cpp -------------------------------------------------------------------------------- /TJU/3469 - Apples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3469 - Apples.cpp -------------------------------------------------------------------------------- /TJU/3470 - Key Integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3470 - Key Integer.cpp -------------------------------------------------------------------------------- /TJU/3472 - Chopin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3472 - Chopin.cpp -------------------------------------------------------------------------------- /TJU/3474 - The Big Dance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3474 - The Big Dance.cpp -------------------------------------------------------------------------------- /TJU/3480 - Dizzy Cows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3480 - Dizzy Cows.cpp -------------------------------------------------------------------------------- /TJU/3484 - Stones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3484 - Stones.cpp -------------------------------------------------------------------------------- /TJU/3486 - Dice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3486 - Dice.cpp -------------------------------------------------------------------------------- /TJU/3488 - Stones II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3488 - Stones II.cpp -------------------------------------------------------------------------------- /TJU/3489 - Dog Numbering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3489 - Dog Numbering.cpp -------------------------------------------------------------------------------- /TJU/3494 - Happy to GF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3494 - Happy to GF.cpp -------------------------------------------------------------------------------- /TJU/3495 - A Simple Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3495 - A Simple Game.cpp -------------------------------------------------------------------------------- /TJU/3496 - Summation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3496 - Summation.cpp -------------------------------------------------------------------------------- /TJU/3498 - Differences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3498 - Differences.java -------------------------------------------------------------------------------- /TJU/3499 - Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3499 - Network.cpp -------------------------------------------------------------------------------- /TJU/3503 - Degree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3503 - Degree.cpp -------------------------------------------------------------------------------- /TJU/3511 - Staircases.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3511 - Staircases.cpp -------------------------------------------------------------------------------- /TJU/3512 - The Problems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3512 - The Problems.cpp -------------------------------------------------------------------------------- /TJU/3515 - Middle number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3515 - Middle number.cpp -------------------------------------------------------------------------------- /TJU/3518 - Buy Car.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3518 - Buy Car.cpp -------------------------------------------------------------------------------- /TJU/3524 - Task Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3524 - Task Process.cpp -------------------------------------------------------------------------------- /TJU/3527 - Queue Jumpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3527 - Queue Jumpers.cpp -------------------------------------------------------------------------------- /TJU/3555 - HS BDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3555 - HS BDC.cpp -------------------------------------------------------------------------------- /TJU/3563 - Tea Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3563 - Tea Time.cpp -------------------------------------------------------------------------------- /TJU/3571 - Division.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3571 - Division.cpp -------------------------------------------------------------------------------- /TJU/3575 - Matrix Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3575 - Matrix Game.cpp -------------------------------------------------------------------------------- /TJU/3576 - Count 101.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3576 - Count 101.cpp -------------------------------------------------------------------------------- /TJU/3577 - Interview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3577 - Interview.cpp -------------------------------------------------------------------------------- /TJU/3580 - Feeding Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3580 - Feeding Time.cpp -------------------------------------------------------------------------------- /TJU/3581 - Toy Shopping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3581 - Toy Shopping.cpp -------------------------------------------------------------------------------- /TJU/3586 - Cows on Ice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3586 - Cows on Ice.cpp -------------------------------------------------------------------------------- /TJU/3587 - Slowing Down.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3587 - Slowing Down.cpp -------------------------------------------------------------------------------- /TJU/3588 - Tour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3588 - Tour.cpp -------------------------------------------------------------------------------- /TJU/3589 - Necklace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3589 - Necklace.cpp -------------------------------------------------------------------------------- /TJU/3591 - Thieves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3591 - Thieves.cpp -------------------------------------------------------------------------------- /TJU/3609 - Flight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3609 - Flight.cpp -------------------------------------------------------------------------------- /TJU/3611 - Calculation 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3611 - Calculation 2.cpp -------------------------------------------------------------------------------- /TJU/3640 - Subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3640 - Subsequence.cpp -------------------------------------------------------------------------------- /TJU/3679 - Greedy Tino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3679 - Greedy Tino.cpp -------------------------------------------------------------------------------- /TJU/3680 - Hello Kiki.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3680 - Hello Kiki.cpp -------------------------------------------------------------------------------- /TJU/3731 - City Planning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3731 - City Planning.cpp -------------------------------------------------------------------------------- /TJU/3732 - Dragon Balls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3732 - Dragon Balls.cpp -------------------------------------------------------------------------------- /TJU/3751 - Card Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3751 - Card Game.cpp -------------------------------------------------------------------------------- /TJU/3758 - Jewel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3758 - Jewel.cpp -------------------------------------------------------------------------------- /TJU/3773 - How Many Days.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3773 - How Many Days.cpp -------------------------------------------------------------------------------- /TJU/3774 - Calculation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3774 - Calculation.cpp -------------------------------------------------------------------------------- /TJU/3775 - Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3775 - Math.cpp -------------------------------------------------------------------------------- /TJU/3776 - Problem Grass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3776 - Problem Grass.cpp -------------------------------------------------------------------------------- /TJU/3779 - Next Mayor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3779 - Next Mayor.cpp -------------------------------------------------------------------------------- /TJU/3783 - Cards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3783 - Cards.cpp -------------------------------------------------------------------------------- /TJU/3786 - Amazing Mazes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3786 - Amazing Mazes.cpp -------------------------------------------------------------------------------- /TJU/3788 - Off Balance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3788 - Off Balance.cpp -------------------------------------------------------------------------------- /TJU/3842 - Sort Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3842 - Sort Array.cpp -------------------------------------------------------------------------------- /TJU/3997 - Partition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/TJU/3997 - Partition.cpp -------------------------------------------------------------------------------- /Topcoder/Div I/250 - 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div I/250 - 2.cpp -------------------------------------------------------------------------------- /Topcoder/Div I/250 - 3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div I/250 - 3.cpp -------------------------------------------------------------------------------- /Topcoder/Div I/251 - 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div I/251 - 2.cpp -------------------------------------------------------------------------------- /Topcoder/Div I/251 - 3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div I/251 - 3.cpp -------------------------------------------------------------------------------- /Topcoder/Div I/252 - 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div I/252 - 2.cpp -------------------------------------------------------------------------------- /Topcoder/Div I/300 - 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div I/300 - 2.cpp -------------------------------------------------------------------------------- /Topcoder/Div I/301 - 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div I/301 - 2.cpp -------------------------------------------------------------------------------- /Topcoder/Div I/302 - 1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div I/302 - 1.cpp -------------------------------------------------------------------------------- /Topcoder/Div I/304 - 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div I/304 - 2.cpp -------------------------------------------------------------------------------- /Topcoder/Div I/382 - 1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div I/382 - 1.cpp -------------------------------------------------------------------------------- /Topcoder/Div I/419 - 1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div I/419 - 1.cpp -------------------------------------------------------------------------------- /Topcoder/Div I/477 - 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div I/477 - 2.cpp -------------------------------------------------------------------------------- /Topcoder/Div I/477 - 3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div I/477 - 3.cpp -------------------------------------------------------------------------------- /Topcoder/Div I/483 - 1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div I/483 - 1.cpp -------------------------------------------------------------------------------- /Topcoder/Div II/351 - 3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div II/351 - 3.cpp -------------------------------------------------------------------------------- /Topcoder/Div II/353 - 3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div II/353 - 3.cpp -------------------------------------------------------------------------------- /Topcoder/Div II/435 - 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div II/435 - 2.cpp -------------------------------------------------------------------------------- /Topcoder/Div II/440 - 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Topcoder/Div II/440 - 2.cpp -------------------------------------------------------------------------------- /USACO/1.1/beads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.1/beads.cpp -------------------------------------------------------------------------------- /USACO/1.1/friday.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.1/friday.cpp -------------------------------------------------------------------------------- /USACO/1.1/gift1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.1/gift1.cpp -------------------------------------------------------------------------------- /USACO/1.1/ride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.1/ride.cpp -------------------------------------------------------------------------------- /USACO/1.2/dualpal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.2/dualpal.cpp -------------------------------------------------------------------------------- /USACO/1.2/milk2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.2/milk2.cpp -------------------------------------------------------------------------------- /USACO/1.2/namenum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.2/namenum.cpp -------------------------------------------------------------------------------- /USACO/1.2/palsquare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.2/palsquare.cpp -------------------------------------------------------------------------------- /USACO/1.2/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.2/transform.cpp -------------------------------------------------------------------------------- /USACO/1.3/barn1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.3/barn1.cpp -------------------------------------------------------------------------------- /USACO/1.3/calfflac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.3/calfflac.cpp -------------------------------------------------------------------------------- /USACO/1.3/crypt1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.3/crypt1.cpp -------------------------------------------------------------------------------- /USACO/1.3/milk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.3/milk.cpp -------------------------------------------------------------------------------- /USACO/1.4/ariprog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.4/ariprog.cpp -------------------------------------------------------------------------------- /USACO/1.4/clocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.4/clocks.cpp -------------------------------------------------------------------------------- /USACO/1.4/milk3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.4/milk3.cpp -------------------------------------------------------------------------------- /USACO/1.4/packrec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.4/packrec.cpp -------------------------------------------------------------------------------- /USACO/1.5/checker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.5/checker.cpp -------------------------------------------------------------------------------- /USACO/1.5/numtri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.5/numtri.cpp -------------------------------------------------------------------------------- /USACO/1.5/pprime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.5/pprime.cpp -------------------------------------------------------------------------------- /USACO/1.5/sprime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/1.5/sprime.cpp -------------------------------------------------------------------------------- /USACO/2.1/castle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/2.1/castle.cpp -------------------------------------------------------------------------------- /USACO/2.1/frac1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/2.1/frac1.cpp -------------------------------------------------------------------------------- /USACO/2.1/hamming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/2.1/hamming.cpp -------------------------------------------------------------------------------- /USACO/2.1/holstein.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/2.1/holstein.cpp -------------------------------------------------------------------------------- /USACO/2.1/sort3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/2.1/sort3.cpp -------------------------------------------------------------------------------- /USACO/2.2/lamps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/2.2/lamps.cpp -------------------------------------------------------------------------------- /USACO/2.2/preface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/2.2/preface.cpp -------------------------------------------------------------------------------- /USACO/2.2/runround.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/2.2/runround.cpp -------------------------------------------------------------------------------- /USACO/2.2/subset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/2.2/subset.cpp -------------------------------------------------------------------------------- /USACO/2.3/money.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/2.3/money.cpp -------------------------------------------------------------------------------- /USACO/2.3/nocows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/2.3/nocows.cpp -------------------------------------------------------------------------------- /USACO/2.3/prefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/2.3/prefix.cpp -------------------------------------------------------------------------------- /USACO/2.3/zerosum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/2.3/zerosum.cpp -------------------------------------------------------------------------------- /USACO/NOV 09 - Gold/in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/NOV 09 - Gold/in.txt -------------------------------------------------------------------------------- /USACO/NOV 09 - Gold/out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/USACO/NOV 09 - Gold/out.txt -------------------------------------------------------------------------------- /UVA/A - Logarithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/A - Logarithm.cpp -------------------------------------------------------------------------------- /UVA/I/100 - 3n+1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/I/100 - 3n+1.cpp -------------------------------------------------------------------------------- /UVA/I/108 - Maximum Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/I/108 - Maximum Sum.cpp -------------------------------------------------------------------------------- /UVA/I/109 - SCUD Busters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/I/109 - SCUD Busters.cpp -------------------------------------------------------------------------------- /UVA/I/136 - Ugly Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/I/136 - Ugly Numbers.cpp -------------------------------------------------------------------------------- /UVA/I/146 - ID Codes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/I/146 - ID Codes.cpp -------------------------------------------------------------------------------- /UVA/I/147 - Dollars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/I/147 - Dollars.cpp -------------------------------------------------------------------------------- /UVA/I/151 - Power Crisis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/I/151 - Power Crisis.cpp -------------------------------------------------------------------------------- /UVA/I/191 - Intersection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/I/191 - Intersection.cpp -------------------------------------------------------------------------------- /UVA/II/200 - Rare Order.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/II/200 - Rare Order.cpp -------------------------------------------------------------------------------- /UVA/II/270 - Lining Up.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/II/270 - Lining Up.cpp -------------------------------------------------------------------------------- /UVA/II/272 - TEX Quotes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/II/272 - TEX Quotes.cpp -------------------------------------------------------------------------------- /UVA/II/280 - Vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/II/280 - Vertex.cpp -------------------------------------------------------------------------------- /UVA/III/305 - Joseph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/III/305 - Joseph.cpp -------------------------------------------------------------------------------- /UVA/III/306 - Cipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/III/306 - Cipher.cpp -------------------------------------------------------------------------------- /UVA/III/314 - Robot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/III/314 - Robot.cpp -------------------------------------------------------------------------------- /UVA/III/315 - Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/III/315 - Network.cpp -------------------------------------------------------------------------------- /UVA/III/374 - Big Mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/III/374 - Big Mod.cpp -------------------------------------------------------------------------------- /UVA/III/382 - Perfection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/III/382 - Perfection.cpp -------------------------------------------------------------------------------- /UVA/IV/401 - Palindromes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/IV/401 - Palindromes.cpp -------------------------------------------------------------------------------- /UVA/IV/412 - Pi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/IV/412 - Pi.cpp -------------------------------------------------------------------------------- /UVA/IV/417 - Word Index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/IV/417 - Word Index.cpp -------------------------------------------------------------------------------- /UVA/IV/436 - Arbitrage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/IV/436 - Arbitrage.cpp -------------------------------------------------------------------------------- /UVA/IV/441 - Lotto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/IV/441 - Lotto.cpp -------------------------------------------------------------------------------- /UVA/IV/458 - The Decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/IV/458 - The Decoder.cpp -------------------------------------------------------------------------------- /UVA/IV/492 - Pig-Latin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/IV/492 - Pig-Latin.cpp -------------------------------------------------------------------------------- /UVA/IX/989 - Su Doku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/IX/989 - Su Doku.cpp -------------------------------------------------------------------------------- /UVA/Todavia/10180(Wrong Answer)/out.txt: -------------------------------------------------------------------------------- 1 | 5.000 2 | 12.530 3 | -------------------------------------------------------------------------------- /UVA/V/515 - King.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/V/515 - King.cpp -------------------------------------------------------------------------------- /UVA/V/531 - Compromise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/V/531 - Compromise.cpp -------------------------------------------------------------------------------- /UVA/V/540 - Team Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/V/540 - Team Queue.cpp -------------------------------------------------------------------------------- /UVA/V/544 - Heavy Cargo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/V/544 - Heavy Cargo.cpp -------------------------------------------------------------------------------- /UVA/V/558 - Wormholes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/V/558 - Wormholes.cpp -------------------------------------------------------------------------------- /UVA/V/563 - Crimewave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/V/563 - Crimewave.cpp -------------------------------------------------------------------------------- /UVA/V/572 - Oil Deposits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/V/572 - Oil Deposits.cpp -------------------------------------------------------------------------------- /UVA/V/575 - Skew Binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/V/575 - Skew Binary.cpp -------------------------------------------------------------------------------- /UVA/V/576 - Haiku Review.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/V/576 - Haiku Review.cpp -------------------------------------------------------------------------------- /UVA/VI/634 - Polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/VI/634 - Polygon.cpp -------------------------------------------------------------------------------- /UVA/VI/674 - Coin Change.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/VI/674 - Coin Change.cpp -------------------------------------------------------------------------------- /UVA/VII/712 - S-Trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/UVA/VII/712 - S-Trees.cpp -------------------------------------------------------------------------------- /Z-Trening/187 - z-board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Z-Trening/187 - z-board.cpp -------------------------------------------------------------------------------- /Z-Trening/contest/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Z-Trening/contest/A.cpp -------------------------------------------------------------------------------- /Z-Trening/contest/DivInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Z-Trening/contest/DivInt.cpp -------------------------------------------------------------------------------- /Z-Trening/contest/RBGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Z-Trening/contest/RBGrid.cpp -------------------------------------------------------------------------------- /Z-Trening/z-company.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/Z-Trening/z-company.cpp -------------------------------------------------------------------------------- /ZOJ/1001 - A+B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/1001 - A+B.cpp -------------------------------------------------------------------------------- /ZOJ/1002 - Fire Net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/1002 - Fire Net.cpp -------------------------------------------------------------------------------- /ZOJ/1037 - Gridland.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/1037 - Gridland.cpp -------------------------------------------------------------------------------- /ZOJ/1041 - Transmitters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/1041 - Transmitters.cpp -------------------------------------------------------------------------------- /ZOJ/1067 - Color Me Less.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/1067 - Color Me Less.cpp -------------------------------------------------------------------------------- /ZOJ/1089 - Lotto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/1089 - Lotto.cpp -------------------------------------------------------------------------------- /ZOJ/1140 - Courses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/1140 - Courses.cpp -------------------------------------------------------------------------------- /ZOJ/1382 - A simple task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/1382 - A simple task.cpp -------------------------------------------------------------------------------- /ZOJ/1798 - Granny's Bike.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/1798 - Granny's Bike.cpp -------------------------------------------------------------------------------- /ZOJ/2361 - Areas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/2361 - Areas.cpp -------------------------------------------------------------------------------- /ZOJ/2964 - Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/2964 - Triangle.cpp -------------------------------------------------------------------------------- /ZOJ/3031 - Robotruck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3031 - Robotruck.cpp -------------------------------------------------------------------------------- /ZOJ/3033 - Board Games.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3033 - Board Games.cpp -------------------------------------------------------------------------------- /ZOJ/3036 - IP-TV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3036 - IP-TV.cpp -------------------------------------------------------------------------------- /ZOJ/3060 - Evil Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3060 - Evil Game.cpp -------------------------------------------------------------------------------- /ZOJ/3074 - Pyraminx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3074 - Pyraminx.cpp -------------------------------------------------------------------------------- /ZOJ/3075 - Ticket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3075 - Ticket.cpp -------------------------------------------------------------------------------- /ZOJ/3080 - ChiBi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3080 - ChiBi.cpp -------------------------------------------------------------------------------- /ZOJ/3465 - The Hive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3465 - The Hive.cpp -------------------------------------------------------------------------------- /ZOJ/3611 - Ice Valley.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3611 - Ice Valley.cpp -------------------------------------------------------------------------------- /ZOJ/3623 - Battle Ships.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3623 - Battle Ships.cpp -------------------------------------------------------------------------------- /ZOJ/3644 - Kitty's Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3644 - Kitty's Game.cpp -------------------------------------------------------------------------------- /ZOJ/3647 - Gao the Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3647 - Gao the Grid.cpp -------------------------------------------------------------------------------- /ZOJ/3649 - Social Net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3649 - Social Net.cpp -------------------------------------------------------------------------------- /ZOJ/3656 - Bit Magic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3656 - Bit Magic.cpp -------------------------------------------------------------------------------- /ZOJ/3662 - Math Magic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3662 - Math Magic.cpp -------------------------------------------------------------------------------- /ZOJ/3684 - Destroy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3684 - Destroy.cpp -------------------------------------------------------------------------------- /ZOJ/3691 - Flower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/ZOJ/3691 - Flower.cpp -------------------------------------------------------------------------------- /hackerrank/w3/half.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/hackerrank/w3/half.cpp -------------------------------------------------------------------------------- /hackerrank/w3/prime-sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marioyc/Online-Judge-Solutions/HEAD/hackerrank/w3/prime-sum.cpp --------------------------------------------------------------------------------