├── .gitignore ├── IUT-ACM-LOCAL-2016 ├── easyGCD.cpp └── numberOfWays.cpp ├── README.md ├── SOJ └── COT2-count-on-a-tree-II.cpp ├── codecup ├── a │ ├── a.cpp │ └── a.out ├── c │ ├── a.out │ ├── c.cpp │ └── in └── e │ └── e.cpp ├── codeforces ├── 266 │ └── b │ │ ├── a.out │ │ ├── b.cpp │ │ ├── c.cpp │ │ ├── in │ │ ├── inn │ │ ├── out │ │ └── outt ├── 392 │ ├── a.cpp │ ├── a.out │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ ├── in │ └── out ├── 394 │ ├── B.cpp │ ├── a.out │ └── in ├── 434 │ ├── a │ │ └── a.py │ └── d │ │ ├── a.out │ │ ├── d.cpp │ │ └── in ├── 611 │ └── b │ │ └── b.py ├── 757 │ ├── a.cpp │ ├── a.out │ ├── b.cpp │ └── in ├── 761 │ ├── a.cpp │ ├── a.out │ ├── b.cpp │ └── in ├── 201B-div1-lucky-common-subsequence.cpp ├── 451-div-2 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ ├── e │ │ └── e.cpp │ └── f │ │ └── f.cpp ├── 453-div-2 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ └── e │ │ └── e.cpp ├── 454-div-2 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ ├── e │ │ └── e.cpp │ └── f │ │ └── f.cpp ├── 455-div-2 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ ├── a.out │ │ ├── d.cpp │ │ └── in │ ├── e │ │ └── e.cpp │ └── f │ │ └── f.cpp ├── 456-div-2 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ └── e │ │ └── e.cpp ├── 461-div-2 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ ├── e │ │ └── e.cpp │ └── f │ │ └── f.cpp ├── 471-div-2 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ ├── e │ │ └── e.cpp │ └── f │ │ └── f.cpp ├── 472-div-2 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ ├── e │ │ ├── a.out │ │ ├── e.cpp │ │ └── in │ ├── f │ │ └── f.cpp │ └── test │ │ ├── a.cpp │ │ ├── a.out │ │ └── in ├── 473-div-2 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ ├── e │ │ └── e.cpp │ └── f │ │ └── f.cpp ├── 499-div-2 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ ├── e │ │ ├── a.out │ │ ├── e.cpp │ │ └── in │ └── f │ │ └── f.cpp ├── 500-div-2 │ └── e.cpp ├── 502-div-1-2 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ ├── e │ │ └── e.cpp │ └── f │ │ └── f.cpp ├── 86D-powerful-array ├── C.-Jury-Marks │ ├── C.-Jury-Marks.cpp │ ├── a.out │ └── in ├── educational-round-35 │ ├── a │ │ └── a.cpp │ ├── b │ │ ├── a.out │ │ ├── a2.out │ │ ├── b.cpp │ │ ├── dif │ │ ├── do.sh │ │ ├── in │ │ ├── out │ │ ├── out2 │ │ ├── t.cpp │ │ └── t2.cpp │ ├── c │ │ ├── a.out │ │ ├── a2.out │ │ ├── c.cpp │ │ ├── dif │ │ ├── do.sh │ │ ├── in │ │ ├── out │ │ ├── out2 │ │ ├── t.cpp │ │ ├── t.py │ │ └── t2.cpp │ ├── d │ │ ├── a.out │ │ ├── d.cpp │ │ └── t.cpp │ ├── e │ │ └── e.cpp │ └── f │ │ └── f.cpp ├── educational-round-36 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ ├── e │ │ └── e.cpp │ ├── f │ │ └── f.cpp │ └── g │ │ └── g.cpp ├── educational-round-37 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ ├── e │ │ └── e.cpp │ ├── f │ │ └── f.cpp │ └── g │ │ └── g.cpp ├── educational-round-40 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ ├── e │ │ └── e.cpp │ ├── f │ │ └── f.cpp │ ├── g │ │ └── g.cpp │ ├── h │ │ └── h.cpp │ └── i │ │ └── i.cpp ├── educational-round-41 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ ├── e │ │ └── e.cpp │ ├── f │ │ └── f.cpp │ └── g │ │ └── g.cpp ├── educational-round-48 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ └── d │ │ └── d.cpp ├── goodbye-2017 │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ ├── e │ │ └── e.cpp │ ├── f │ │ └── f.cpp │ ├── g │ │ └── g.cpp │ └── h │ │ └── h.cpp └── hello-2018 │ ├── a │ └── a.cpp │ ├── b │ └── b.cpp │ ├── c │ └── c.cpp │ ├── d │ └── d.cpp │ ├── e │ └── e.cpp │ ├── f │ └── f.cpp │ ├── g │ └── g.cpp │ └── h │ └── h.cpp ├── codejam ├── 2017 │ ├── distribution_round │ │ ├── a │ │ │ └── a.cpp │ │ └── b │ │ │ └── b.cpp │ ├── qualification-round │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.out │ │ │ ├── in │ │ │ ├── out │ │ │ └── out2 │ │ ├── b │ │ │ ├── a.out │ │ │ ├── b.cpp │ │ │ ├── in │ │ │ ├── out │ │ │ └── out2 │ │ └── c │ │ │ ├── In │ │ │ ├── a.out │ │ │ ├── c.cpp │ │ │ ├── in │ │ │ ├── in2 │ │ │ ├── in3 │ │ │ ├── out │ │ │ ├── out2 │ │ │ ├── out3 │ │ │ └── out4 │ ├── round-1-B │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.out │ │ │ ├── in │ │ │ ├── out │ │ │ ├── out2 │ │ │ └── out3 │ │ ├── b │ │ │ └── b.cpp │ │ └── c │ │ │ └── c.cpp │ ├── round-1-C │ │ ├── a │ │ │ ├── a.cpp │ │ │ ├── a.out │ │ │ ├── in │ │ │ ├── in2 │ │ │ ├── inn │ │ │ ├── out │ │ │ ├── out2 │ │ │ ├── out3 │ │ │ └── outt │ │ ├── b │ │ │ ├── a.out │ │ │ ├── b.cpp │ │ │ ├── in │ │ │ ├── out │ │ │ ├── out2 │ │ │ └── out3 │ │ └── c │ │ │ └── c.cpp │ └── round-2 │ │ ├── a │ │ ├── a.cpp │ │ ├── a.out │ │ ├── in │ │ └── out │ │ ├── b │ │ ├── a.out │ │ ├── b.cpp │ │ ├── in │ │ ├── inn │ │ ├── out │ │ ├── out2 │ │ └── out3 │ │ └── c │ │ └── c.cpp └── 2018 │ ├── qual-round │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ └── c │ │ └── c.cpp │ └── subround-b │ ├── a.cpp │ └── b.cpp ├── hackerCup └── 2016 │ ├── qualification │ ├── a.py │ ├── b.cpp │ └── c.py │ └── round-1 │ ├── .a.cpp.swp │ ├── a.cpp │ ├── a.out │ ├── c.cpp │ ├── c.in │ ├── c.out │ ├── des │ ├── in │ ├── in2 │ ├── manic_moving.txt │ ├── oout │ ├── out │ ├── outt │ └── pie_progress.txt ├── quera ├── a │ ├── a.cpp │ ├── a.out │ ├── in │ └── test.txt ├── b │ ├── a.out │ ├── b.cpp │ └── in ├── c │ ├── a.out │ ├── c.cpp │ └── in └── d │ ├── a.out │ ├── d.cpp │ └── in ├── regionals ├── 2007-tehran-site │ ├── a.cpp │ ├── a.out │ ├── b.cpp │ ├── c.cpp │ ├── d.cpp │ ├── e.cpp │ ├── f.cpp │ ├── g.cpp │ ├── h.cpp │ ├── i.cpp │ ├── in │ ├── j.cpp │ ├── k.cpp │ ├── out │ └── tc │ │ ├── a.in │ │ ├── a.out │ │ ├── b.in │ │ ├── b.out │ │ ├── c.in │ │ ├── c.out │ │ ├── d.in │ │ ├── d.out │ │ ├── e.in │ │ ├── e.out │ │ ├── f.in │ │ ├── f.out │ │ ├── g.in │ │ ├── g.out │ │ ├── h.in │ │ ├── h.out │ │ ├── i.in │ │ ├── i.out │ │ ├── j.in │ │ └── j.out ├── 2008-tehran-site │ ├── a │ │ ├── E.in │ │ ├── E.out │ │ ├── TD87.zip │ │ ├── a.in │ │ ├── a.out │ │ ├── a │ │ │ └── a.cpp │ │ ├── b │ │ │ ├── a.out │ │ │ ├── b.cpp │ │ │ ├── b.in │ │ │ ├── b.out │ │ │ └── out │ │ ├── c.in │ │ ├── c.out │ │ ├── c │ │ │ └── c.cpp │ │ ├── d.in │ │ ├── d.out │ │ ├── d │ │ │ └── d.cpp │ │ ├── e │ │ │ ├── a.out │ │ │ ├── e.cpp │ │ │ └── in │ │ ├── f.in │ │ ├── f.out │ │ ├── f │ │ │ └── f.cpp │ │ ├── g.in │ │ ├── g.out │ │ ├── g │ │ │ └── g.cpp │ │ ├── h.in │ │ ├── h.out │ │ ├── h │ │ │ └── h.cpp │ │ ├── i.in │ │ ├── i.out │ │ ├── i │ │ │ └── i.cpp │ │ ├── j.in │ │ ├── j.out │ │ └── j │ │ │ └── j.cpp │ ├── b │ │ └── b │ ├── c │ │ └── c │ ├── d │ │ └── d │ ├── e │ │ └── e │ ├── f │ │ └── f │ ├── g │ │ └── g │ ├── h │ │ └── h │ ├── i │ │ └── i │ └── j │ │ └── j ├── 2009-tehran-site │ ├── a │ │ └── a.cpp │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ ├── e │ │ └── e.cpp │ ├── f │ │ └── f.cpp │ ├── g │ │ └── g.cpp │ ├── h │ │ └── h.cpp │ ├── i │ │ └── i.cpp │ └── j │ │ └── j.cpp ├── 2010-tehran-site │ ├── a │ │ ├── a.cpp │ │ └── a.out │ ├── b │ │ └── b.cpp │ ├── c │ │ └── c.cpp │ ├── d │ │ └── d.cpp │ ├── e │ │ └── e.cpp │ ├── f │ │ └── f.cpp │ ├── g │ │ └── g.cpp │ ├── h │ │ └── h.cpp │ ├── i │ │ └── i.cpp │ └── j │ │ └── j.cpp ├── 2017-2018-tehran-site-regional │ ├── TD96.zip │ ├── a.in │ ├── a.out │ ├── b.in │ ├── b.out │ ├── c.in │ ├── c.out │ ├── d.in │ ├── d.out │ ├── dl-link │ ├── e.in │ ├── e.out │ ├── f.in │ ├── f.out │ ├── g.in │ ├── g.out │ ├── h.in │ ├── h.out │ ├── i.in │ ├── i.out │ ├── j.cpp │ ├── j.in │ ├── j.out │ ├── k.in │ ├── k.out │ └── out └── 2017-tehran-site │ ├── A.cor │ ├── A.in │ ├── B.cor │ ├── B.in │ ├── C.cor │ ├── C.in │ ├── D.cor │ ├── D.in │ ├── E │ ├── E-Entertainment.cpp │ ├── a.out │ └── out │ ├── F.cor │ ├── F.in │ ├── G.cor │ ├── G.in │ ├── H.cor │ ├── H.in │ ├── I.cor │ ├── I.in │ ├── J.cor │ ├── J.in │ └── tc05.zip ├── uva ├── 102 │ └── 102.cpp ├── 340 │ └── 340.cpp ├── 412 │ └── 412.cpp ├── 572 │ └── 572.cpp ├── 821 │ └── 821.cpp ├── 1225 │ └── 1225.cpp ├── 10015 │ └── 10015.cpp ├── 10018 │ └── 10018.cpp ├── 10069 │ └── 10069.java ├── 10409 │ └── 10409.py ├── 10500 │ └── 10500.cpp ├── 10931 │ └── 10931.cpp ├── 11553 │ └── 11553.cpp ├── 11764 │ └── 11764.cpp ├── 12034 │ └── 12034.cpp ├── 12097 │ ├── 12097.cpp │ └── a.out ├── 12496 │ └── 12496.cpp ├── 12703 │ └── 12703.cpp ├── 12995 │ └── 12995.cpp ├── 100-newMyFriend │ └── 100-newMyFriend.cpp ├── 10003-Cutting-Sticks │ └── 10003-Cutting-Sticks.cpp ├── 10004-Bicoloring │ └── 10004-Bicoloring.cpp ├── 10005-Packing-polygons │ └── 10005-Packing-polygons.cpp ├── 10007-Count-the-Trees │ └── 10007-Count-the-Trees.py ├── 10010-Wheres-Waldorf │ └── 10010-Wheres-Waldorf.cpp ├── 10025-The-?-1-?-2-?-...-?-n-=-k-problem │ └── 10025-The-?-1-?-2-?-...-?-n-=-k-problem.cpp ├── 10026-Shoemaker’s-problem │ └── 10026-Shoemaker’s-problem.cpp ├── 10036-Divisibility │ └── 10036-Divisibility.cpp ├── 10038JojUmbers │ └── 10038JojUmbers.cpp ├── 10042-Smith-Numbers │ └── 10042---Smith-Numbers.cpp ├── 10048-Audiophobia │ └── 10048-Audiophobia.cpp ├── 10054-The-Necklace │ └── 10054-The-Necklace.cpp ├── 10058-Jimmys-Riddles │ └── 10058-Jimmys-Riddles.py ├── 10061-How-many-zeros-and-how-many-digits │ ├── 10061-How-many-zeros-and-how-many-digits.cpp │ └── inn ├── 10062TellMeTheFrequency │ └── 10062TellMeTheFrequency.cpp ├── 10080-Gopher-II │ └── 10080-Gopher-II.cpp ├── 10085BackTo8QueenProblem │ └── 10085BackTo8QueenProblem.cpp ├── 10086-Test-the-Rods │ └── 10086-Test-the-Rods.cpp ├── 10090-Marbles │ └── 10090-Marbles.cpp ├── 10091-The-Valentine’s-Day │ ├── 10091-The-Valentine’s-Day.cpp │ └── inn ├── 10092-The-Problem-with-the-Problem-Setter │ └── 10092-The-Problem-with-the-Problem-Setter.cpp ├── 101-The-Blocks-Problem │ └── 101-The-Blocks-Problem.cpp ├── 10102ThePathInTheColoredField │ └── 10102ThePathInTheColoredField.cpp ├── 10104-Euclid-Problem │ └── 10104-Euclid-Problem.cpp ├── 10107-WhatIsTheMedian │ └── 10107-WhatIsTheMedian.cpp ├── 10111-Find-the-Winning-Move │ └── 10111-Find-the-Winning-Move.cpp ├── 10114-Loansome-Car-Buyer │ └── 10114-Loansome-Car-Buyer.cpp ├── 10137-The-Trip │ └── 10137---The-Trip.cpp ├── 10139-Factovisors │ └── 10139-Factovisors.cpp ├── 10140-Prime-Distance │ └── 10140-Prime-Distance.cpp ├── 10150-Doublets │ └── 10150-Doublets.cpp ├── 10161-Ant-on-a-Chessboard │ └── 10161-Ant-on-a-Chessboard.cpp ├── 10165-Stone-Game │ └── 10165-Stone-Game.cpp ├── 10170-The-Hotel-with-Infinite-Rooms │ └── 10170_The_Hotel_with_Infinite_Rooms.cpp │ │ └── 10170_-_The_Hotel_with_Infinite_Rooms.cpp ├── 10171-Meeting-Prof.-Miguel... │ └── 10171-Meeting-Prof.-Miguel....cpp ├── 10176-Ocean-Deep!-Make-it-shallow │ ├── 10176-Ocean-Deep!-Make-it-shallow.cpp │ └── inn ├── 10179-Irreducable-Basic-Fractions │ └── 10179-Irreducable-Basic-Fractions.cpp ├── 10182-Bee-Maja │ └── 10182---Bee-Maja.cpp ├── 10187-From-Dusk-till-Dawn │ └── 10187-From-Dusk-till-Dawn.cpp ├── 10189-Minesweeper │ └── 10189-Minesweeper.cpp ├── 10191-Longest-Nap │ └── 10191-Longest-Nap.cpp ├── 10192-Vacation │ └── 10192-Vacation.cpp ├── 10200-Prime-Time │ └── 10200-Prime-Time.java ├── 10201-Adventures-in-Moving-Part-IV │ └── 10201-Adventures-in-Moving-Part-IV.cpp ├── 10203-Snow-Clearing │ └── 10203-Snow-Clearing.cpp ├── 10212-The-Last-Non-zero-Digit │ └── 10212-The-Last-Non-zero-Digit.cpp ├── 10219-Find-the-ways │ └── 10219-Find-the-ways.cpp ├── 10233-Dermuba-Triangle │ └── 10233---Dermuba-Triangle.cpp ├── 10235-Simply-Emirp │ └── 10235---Simply-Emirp.cpp ├── 10245-The-Closest-Pair-Problem │ └── 10245-The-Closest-Pair-Problem.cpp ├── 10252-Common-Permutation │ └── 10252-Common-Permutation.cpp ├── 10263-Railway │ ├── 10263-Railway.cpp │ └── inn ├── 10264PotentCorner │ └── 10264PotentCorner.cpp ├── 10268-498-bis │ └── 10268---498-bis.cpp ├── 10272The-Lonesome-Cargo-Distributor │ └── 10272The-Lonesome-Cargo-Distributor.cpp ├── 10277-Boastin'-Red-Socks │ └── 10277-Boastin'-Red-Socks.cpp ├── 10282-Babelfish │ └── 10282-Babelfish.cpp ├── 10285-Longest-Run-on-a-Snowboard │ └── 10285-Longest-Run-on-a-Snowboard.cpp ├── 10297-Beavergnaw │ └── 10297-Beavergnaw.cpp ├── 10298-Power-Strings │ └── 10298-Power-Strings.cpp ├── 10305-Ordering-Tasks │ └── 10305-Ordering-Tasks.cpp ├── 10306-eCoins │ └── 10306-eCoins.cpp ├── 10307-Killing-Aliens-in-Borg-Maze │ └── 10307-Killing-Aliens-in-Borg-Maze.cpp ├── 10309-Turn-the-Lights-Off │ ├── 10309-Turn-the-Lights-Off.cpp │ └── in ├── 10310-Dog-and-Gopher │ ├── 10310-Dog-and-Gopher.cpp │ ├── a.out │ ├── in │ └── on ├── 10312-Expression-Bracketing │ ├── 10312-Expression-Bracketing.cpp │ └── a.out ├── 10317_Equating_Equations │ ├── 10317_Equating_Equations.cpp │ ├── a.out │ └── in ├── 10320-Cow-Trouble-Help-Please │ └── 10320-Cow-Trouble-Help-Please.cpp ├── 10330-Power-Transmission │ └── 10330-Power-Transmission.cpp ├── 10334-Ray-Through-Glasses │ ├── 10334-Ray-Through-Glasses.py │ ├── in │ └── out ├── 10337-Flight-Planner │ └── 10337-Flight-Planner.cpp ├── 10338-Mischievous-Children │ ├── 10338-Mischievous-Children.py │ └── in ├── 10341-Solve-It- │ └── 10341-Solve-It-.cpp ├── 10346-Peter's-Smokes │ └── 10346-Peter's-Smokes.cpp ├── 10349-Antenna-Placement │ └── 10349-Antenna-Placement.cpp ├── 10350-Liftless-EME │ └── 10350-Liftless-EME.cpp ├── 10352-Count-the-eWords │ └── 10352-Count-the-eWords.cpp ├── 10359-Tiling │ └── 10359-Tiling.py ├── 10360-Rat-Attack │ └── 10360-Rat-Attack.cpp ├── 10369-Arctic-Network │ └── 10369-Arctic-Network.cpp ├── 10382-Watering-Grass │ └── 10382-Watering-Grass.cpp ├── 10389-Subway │ ├── 10389-Subway.cpp │ └── a.out ├── 10393-The-One-Handed-Typist │ ├── 10393-The-One-Handed-Typist.cpp │ ├── a.out │ └── in ├── 10394-Twin-Primes │ ├── 10394-Twin-Primes.cpp │ └── a.out ├── 104-Arbitrage │ └── 104-Arbitrage.cpp ├── 10400-Game-Show-Math │ └── 10400-Game-Show-Math.cpp ├── 10401-Injured-Queen-Problem │ └── 10401-Injured-Queen-Problem.cpp ├── 10405-Longest-Common-Subsequence │ └── 10405-Longest-Common-Subsequence.cpp ├── 10407-Simple-division │ ├── 10407-Simple-division.cpp │ ├── a.out │ └── in ├── 10408-Farey-sequences │ └── 10408---Farey-sequences.cpp ├── 10446-The-Marriage-Interview │ └── 10446-The-Marriage-Interview.cpp ├── 10449-Traffic │ └── 10449-Traffic.cpp ├── 10459-The-Tree-Root │ └── 10459-The-Tree-Root.cpp ├── 10465-Homer-Simpson │ └── 10465-Homer-Simpson.cpp ├── 10473-Simple-Base-Conversion │ └── 10473-Simple-Base-Conversion.cpp ├── 1047Zones │ └── 1047Zones.cpp ├── 10480-Sabotage │ └── 10480-Sabotage.cpp ├── 10482-The-Candyman-Can │ ├── 10482-The-Candyman-Can.cpp │ ├── a.out │ └── in ├── 10491-Cows-and-Cars │ ├── 10491-Cows-and-Cars.cpp │ └── a.out ├── 10494-If-We-Were-a-Child-Again │ └── 10494-If-We-Were-a-Child-Again.cpp ├── 10499-The-Land-of-Justice │ └── 10499-The-Land-of-Justice.cpp ├── 10503TheDominoesSolitaire │ └── 10503TheDominoesSolitaire.cpp ├── 10507WakingUpBrains │ └── 10507WakingUpBrains.cpp ├── 10508-Word-Morphing │ ├── 10508-Word-Morphing.cpp │ ├── a.out │ └── in ├── 10510-Cactus │ └── 10510-Cactus.cpp ├── 10511-Councilling │ └── 10511-Councilling.cpp ├── 10519-Really-Strange │ ├── 10519-Really-Strange.py │ └── in ├── 10520-Determine-it │ └── 10520-Determine-it.cpp ├── 10523-Very-Easy-ls! │ └── main.py ├── 10524-Matrix-Reloaded │ └── 10524-Matrix-Reloaded.cpp ├── 10539-Almost-Prime-Numbers │ ├── 10539-Almost-Prime-Numbers.cpp │ ├── a.out │ └── in ├── 10541-Stripe │ ├── 10541-Stripe.py │ └── in ├── 10551-Basic-Remains │ └── 10551---Basic-Remains.py ├── 10557-XYZZY │ └── 10557-XYZZY.cpp ├── 1056-Degrees-of-Separation │ └── 1056-Degrees-of-Separation.cpp ├── 10567HelpingfillBates │ └── 10567HelpingfillBates.cpp ├── 10576-Y2K-Accounting-Bug │ └── 10576-Y2K-Accounting-Bug.cpp ├── 10577-Bounding-box │ ├── 10577-Bounding-box.cpp │ ├── a.out │ └── in ├── 10586-Polynomial-Remains │ └── 10586---Polynomial-Remains.cpp ├── 10589-Area │ ├── 10589-Area.cpp │ ├── a.out │ └── in ├── 10596-Morning-Walk │ └── 10596-Morning-Walk.cpp ├── 10600-ACM-Contest-and-Blackout │ └── 10600-ACM-Contest-and-Blackout.cpp ├── 10608Friends │ └── 10608Friends.cpp ├── 1061-Consanguine-Calculations │ └── 1061-Consanguine-Calculations.cpp ├── 10610-Gopher-and-Hawks │ └── 10610-Gopher-and-Hawks.cpp ├── 10616-Divisible-Group-Sums │ └── 10616-Divisible-Group-Sums.cpp ├── 10617-Again-Palindromes │ ├── 10617-Again-Palindromes.py │ └── in ├── 1062Containers │ └── 1062Containers.cpp ├── 10646-What-is-the-card │ └── 10646-What-is-the-card.cpp ├── 10652-Board-Wrapping │ ├── 10652-Board-Wrapping.cpp │ ├── a.out │ └── in ├── 10653-Bombs!-NO-they-are-Minessudo-i │ └── 10653-Bombs!-NO-they-are-Minessudo-i.cpp ├── 10654-The-Uxuhul-Voting-System │ └── 10654-The-Uxuhul-Voting-System.cpp ├── 10670-Work-Reduction │ └── 10670-Work-Reduction.cpp ├── 10673-Play-with-Floor-and-Ceil │ ├── 10673-Play-with-Floor-and-Ceil.cpp │ ├── a.out │ └── in ├── 10678-The-Grazing-Cow │ ├── 10678-The-Grazing-Cow.cpp │ ├── a.out │ └── in ├── 10680-LCM │ ├── 10680-LCM.cpp │ ├── a.out │ └── in ├── 10684-The-jackpot │ └── 10684-The-jackpot.cpp ├── 10685Nature │ └── 10685Nature.cpp ├── 10686SQFProblem │ └── 10686SQFProblem.cpp ├── 10689-Yet-another-Number-Sequence │ ├── 10689-Yet-another-Number-Sequence.py │ └── in ├── 10699-Count-the-factors │ ├── 10699-Count-the-factors.cpp │ └── a.out ├── 10702-Travelling-Salesman │ ├── 10702-Travelling-Salesman.cpp │ ├── a.out │ └── in ├── 10709-Intersection-is-not-that-Easy │ ├── 10709-Intersection-is-not-that-Easy.cpp │ ├── a.out │ └── in ├── 10718-Bit-Mask │ └── 10718-Bit-Mask.cpp ├── 10719-Quotient-Polynomial │ └── 10719-Quotient-Polynomial.cpp ├── 10721-Bar-Codes │ └── -10721-Bar-Codes.cpp ├── 10724-Road-Construction │ └── 10724-Road-Construction.cpp ├── 10738-Riemann-vs-Mertens │ ├── 10738-Riemann-vs-Mertens.cpp │ ├── a.out │ ├── in │ └── out ├── 10751-Chessboard │ └── 10751-Chessboard.cpp ├── 10755-Garbage-Heap │ └── 10755-Garbage-Heap.cpp ├── 10759-Dice-Throwing │ ├── 10759-Dice-Throwing.cpp │ ├── a.out │ ├── in │ └── out ├── 10765-Doves-and-bombs │ └── 10765-Doves-and-bombs.cpp ├── 10773-Back-to-Intermediate-Math │ └── 10773-Back-to-Intermediate-Math.cpp ├── 10784-Diagonal │ ├── 10784-Diagonal.cpp │ └── a.out ├── 108-Maximum-Sum │ └── 108-Maximum-Sum.cpp ├── 10800-Not-That-Kind-of-Graph │ ├── 10800-Not-That-Kind-of-Graph.cpp │ ├── a.out │ ├── in │ ├── out │ └── outt ├── 10801-Lift-Hopping │ ├── 10801-Lift-Hopping.cpp │ └── a.out ├── 10805-Cockroach-Escape-Networks │ └── 10805-Cockroach-Escape-Networks.cpp ├── 10807-Prim,-Prim │ ├── 10807-Prim,-Prim.cpp │ ├── a.out │ └── in ├── 10813-Traditional-BINGO │ └── 10813-Traditional-BINGO.cpp ├── 10814-Simplifying-Fractionss │ └── 10814---Simplifying-Fractionss.py ├── 10819-Trouble-of-13Dots │ └── 10819-Trouble-of-13Dots.cpp ├── 10827-Maximum-sum-on-a-torus │ └── 10827-Maximum-sum-on-a-torus.cpp ├── 10851-2D-Hieroglyphs-decoder │ ├── 10851-2D-Hieroglyphs-decoder.cpp │ ├── a.out │ └── in ├── 10854-Number-of-Paths │ ├── 10854-Number-of-Paths.cpp │ ├── a.out │ └── in ├── 10855RotatedSquares │ └── 10855RotatedSquares.cpp ├── 10859-Placing-Lampposts │ ├── 10859-Placing-Lampposts.cpp │ ├── a.out │ └── in ├── 10871-Primed-Subsequence │ ├── 10871-Primed-Subsequence.cpp │ ├── a.out │ └── in ├── 10878-Decode-the-tape │ └── in ├── 10879-Code-Refactoring │ └── 10879-Code-Refactoring.cpp ├── 10880-Colin-and-Ryan │ ├── 10880-Colin-and-Ryan.cpp │ └── a.out ├── 10891-Game-of-Sum │ ├── 10891-Game-of-Sum.cpp │ ├── a.out │ └── in ├── 10892-LCM-Cardinality │ ├── 10892-LCM-Cardinality.cpp │ ├── a.out │ └── in ├── 10895MatrixTranspose │ └── 10895MatrixTranspose.cpp ├── 10898-Combo-Deal │ ├── 10898-Combo-Deal.cpp │ ├── a.out │ └── in ├── 10901FerryLoading │ └── 10901FerryLoading.cpp ├── 10910-Marks-Distribution │ └── 10910-Marks-Distribution.cpp ├── 10911-Forming-Quiz-Teams │ ├── 10911-Forming-Quiz-Teams.cpp │ ├── a.out │ └── in ├── 10912-Simple-Minded-Hashing │ └── 10912-Simple-Minded-Hashing.cpp ├── 10913-Walking-on-a-Grid │ └── 10913-Walking-on-a-Grid.cpp ├── 10916-Factstone-Benchmark │ └── 10916---Factstone-Benchmark.py ├── 10917-A-Walk-Through-the-Forest │ ├── 10917-A-Walk-Through-the-Forest.cpp │ ├── a.out │ └── in ├── 10920SpiralTap │ └── 10920SpiralTap.cpp ├── 10925-Krakovia │ └── 10925---Krakovia.py ├── 10927-Bright-Lights │ └── 10927-Bright-Lights.cpp ├── 10937-Blackbeard-the-Pirate │ ├── 10937-Blackbeard-the-Pirate.cpp │ ├── a.out │ └── in ├── 10940-Throwing-cards-away-II │ └── 10940-Throwing-cards-away-II.cpp ├── 10943-How-do-you-add │ ├── .10943-How-do-you-add.cpp.swp │ └── 10943-How-do-you-add.cpp ├── 10944-Nuts-for-nuts.. │ └── 10944-Nuts-for-nuts...cpp ├── 10950-Bad-Code │ ├── 10950-Bad-Code.cpp │ ├── a.out │ ├── in │ ├── out │ └── out2 ├── 10954AddAll │ └── 10954AddAll.cpp ├── 10976FractionAgain? │ └── 10976FractionAgain?.cpp ├── 10978-Lets-Play-Magic │ ├── 10978-Lets-Play-Magic.cpp │ ├── a.out │ └── in ├── 1098-Robots-on-Ice │ ├── 1098-Robots-on-Ice.cpp │ ├── a.out │ └── in ├── 10980-Lowest-Price-in-Town │ └── 10980-Lowest-Price-in-Town.cpp ├── 10983-Buy-one,-get-the-rest-free │ └── 10983-Buy-one,-get-the-rest-free.cpp ├── 10986-Sending-email │ └── 10986-Sending-email.cpp ├── 1099-Sharing-Chocolate │ ├── 1099-Sharing-Chocolate.cpp │ ├── a.out │ ├── in │ └── in1 ├── 10990-Another-New-Function │ ├── 10990-Another-New-Function.cpp │ ├── a.out │ └── in ├── 10992-The-Ghost-of-Programmers │ └── 10992-The-Ghost-of-Programmers.cpp ├── 11015-052-Rendezvous │ └── 11015-052-Rendezvous.cpp ├── 11022-String-Factoring │ ├── 11022-String-Factoring.cpp │ ├── a.out │ ├── in │ └── inn ├── 11029-Leading-and-Trailing │ └── 11029-Leading-and-Trailing.py ├── 1103-Ancient-Messages │ └── 1103-Ancient-Messages.cpp ├── 11034FerryLoadingIV │ └── 11034FerryLoadingIV.cpp ├── 11045-My-Tshirt-suits-me │ └── 11045-My-Tshirt-suits-me.cpp ├── 11048-Automatic-Correction-of-Misspellings │ ├── 11048-Automatic-Correction-of-Misspellings.cpp │ ├── a.out │ └── in ├── 11053-Flavius-Josephus-Reloaded │ ├── 11053-Flavius-Josephus-Reloaded.cpp │ ├── a.out │ └── in ├── 11057-Exact-Sum │ └── 11057-Exact-Sum.cpp ├── 11059-Maximum-Product │ ├── 11059-Maximum-Product.cpp │ ├── a.out │ └── in ├── 11060-Beverages │ └── 11060-Beverages.cpp ├── 11065-A-Gentlemen’s-Agreement │ ├── 11065-A-Gentlemen’s-Agreement.cpp │ ├── a.out │ └── in ├── 11069-A-Graph-Problem │ ├── 11069-A-Graph-Problem.cpp │ └── a.out ├── 11078-Open-Credit-System │ ├── 11078-Open-Credit-System.cpp │ ├── a.out │ └── in ├── 11080-Place-the-Guards │ └── 11080-Place-the-Guards.cpp ├── 11088-End-up-with-More-Teams │ └── 11088-End-up-with-More-Teams.cpp ├── 11094-Continents │ └── 11094-Continents.cpp ├── 111-History-Grading │ └── 111-History-Grading.cpp ├── 11100-The-Trip,-2007 │ └── 11100-The-Trip,-2007.cpp ├── 11101-Mall-Mania │ └── 11101-Mall-Mania.cpp ├── 11105-Semi-prime-H-numbers │ ├── 11105-Semi-prime-H-numbers.cpp │ ├── a.out │ └── in ├── 11107-Life-Forms │ ├── 11107-Life-Forms.cpp │ ├── a.out │ ├── in │ └── inn ├── 1111-Trash-Removal │ ├── 1111-Trash-Removal.cpp │ ├── a.out │ └── in ├── 1112-Mice-and-Maze │ └── 1112-Mice-and-Maze.cpp ├── 11130-Billiard-bounces │ └── 11130-Billiard-bounces.cpp ├── 11134-Fabled-Rooks │ ├── 11134-Fabled-Rooks.cpp │ ├── a.out │ └── in ├── 11136HoaxOrWhat │ └── 11136HoaxOrWhat.cpp ├── 11138-Nuts-and-Bolts │ └── 11138-Nuts-and-Bolts.cpp ├── 11149-Power-of-Matrix │ ├── 11149-Power-of-Matrix.cpp │ ├── a.out │ └── in ├── 11151-Longest-Palindrome │ ├── 11151-Longest-Palindrome.cpp │ ├── a.out │ ├── in │ └── inn ├── 11152-Colourful-Flowers │ ├── 11152-Colourful-Flowers.cpp │ └── a.out ├── 11157-Dynamic-Frog │ └── -11157-Dynamic-Frog.cpp ├── 11158-Elegant-Permuted-Sum │ ├── 11158-Elegant-Permuted-Sum.cpp │ ├── a.out │ └── in ├── 11159-Factors-and-Multiples │ └── 11159-Factors-and-Multiples.cpp ├── 11173GrayCode │ └── 11173GrayCode.cpp ├── 11176-Winning-Streak │ ├── 11176-Winning-Streak.cpp │ ├── a.out │ └── in ├── 11182-Zeroes-III │ ├── 11182-Zeroes-III.cpp │ ├── a.out │ ├── in │ └── out ├── 11192GroupReverse │ └── 11192GroupReverse.cpp ├── 11195-Another-n-Queen-Problem │ ├── 11195-Another-n-Queen-Problem.cpp │ ├── a.out │ └── cmp ├── 11198-Dancing-Digits │ ├── 11198-Dancing-Digits.cpp │ ├── a.out │ └── in ├── 11207-The-easiest-way │ ├── 11207-The-easiest-way.cpp │ ├── a.out │ └── in ├── 11212-Editing-a-Book │ ├── 11212-Editing-a-Book.cpp │ ├── a.out │ └── in ├── 11227-The-silver-bullet │ ├── 11227-The-silver-bullet.cpp │ ├── a.out │ └── in ├── 11228-Transportation-system. │ └── 11228-Transportation-system..cpp ├── 11231-Black-and-white-painting │ └── 11231-Black-and-white-painting.cpp ├── 11235FrequentValues │ └── 11235FrequentValues.cpp ├── 11236-GroceryStore │ └── 11236-GroceryStore.cpp ├── 11239-Open-Source │ └── 11239-Open-Source.cpp ├── 11242TourDeFrence │ └── 11242TourDeFrence.cpp ├── 11254-Consecutive-Integers │ └── 11254-Consecutive-Integers.cpp ├── 11258-String-Partition │ ├── 11258-String-Partition.cpp │ └── a.out ├── 11262-Weird-Fence │ ├── 11262-Weird-Fence.cpp │ ├── a.out │ └── in ├── 11264-Coin-Collector │ └── 11264-Coin-Collector.cpp ├── 11265-The-Sultans-Problem │ ├── 11265-The-Sultans-Problem.cpp │ ├── a.out │ └── in ├── 11278-One-Handed-Typist │ ├── 11278-One-Handed-Typist.cpp │ └── a.out ├── 11283-Playing-Boggle │ └── 11283-Playing-Boggle.cpp ├── 11284-Shopping-Trip │ └── 11284-Shopping-Trip.cpp ├── 11286Conformity │ └── 11286Conformity.cpp ├── 11287-Pseudoprime-Numbers │ └── main.py ├── 11291-Smeech │ ├── 11291-Smeech.py │ ├── in │ └── inn ├── 11292-The-Dragon-of-Loowater │ └── 11292-The-Dragon-of-Loowater.cpp ├── 11307-Alternative-Arborescence │ ├── 11307-Alternative-Arborescence.cpp │ ├── a.out │ ├── in │ └── inn ├── 11310-Delivery-Debacle │ ├── 11310-Delivery-Debacle.cpp │ ├── a.out │ └── in ├── 11311-Exclusively-Edible │ ├── 11311-Exclusively-Edible.cpp │ ├── a.out │ └── in ├── 11324-The-Largest-Clique │ ├── 11324-The-Largest-Clique.cpp │ ├── a.out │ ├── in │ └── inn ├── 11329-Curious-Fleas │ ├── 11329-Curious-Fleas.cpp │ ├── a.out │ └── in ├── 11332-Summing-Digits │ └── 11332-Summing-Digits.cpp ├── 11340NewsPaper │ └── 11340NewsPaper.cpp ├── 11344-The-Huge-One │ ├── 11344-The-Huge-One.cpp │ ├── a.out │ └── in ├── 11350SternBrocotTree │ └── 11350SternBrocotTree.cpp ├── 11357-Ensuring-Truth │ ├── 11357-Ensuring-Truth.py │ └── in ├── 11367-Full-Tank? │ └── 11367-Full-Tank?.cpp ├── 11368-Nested-Dolls │ ├── 11368-Nested-Dolls.cpp │ ├── a.out │ └── in ├── 11369-Shopaholic │ └── 11369-Shopaholic.cpp ├── 11371-Number-Theory-for-Newbies │ ├── 11371-Number-Theory-for-Newbies.cpp │ ├── a.out │ └── in ├── 11380-Down-Went-The-Titanic │ └── 11380-Down-Went-The-Titanic.cpp ├── 11385-Da-Vinci-Code │ ├── 11385-Da-Vinci-Code.cpp │ ├── a.out │ └── in ├── 11389-The-Bus-Driver-Problem │ └── 11389-The-Bus-Driver-Problem.cpp ├── 11396-Claw-Decomposition │ └── 11396-Claw-Decomposition.cpp ├── 11401-Triangle-Counting │ └── 11401-Triangle-Counting.py ├── 11402Ahoy,-Pirates! │ └── 11402Ahoy,-Pirates!.cpp ├── 11407-Squares-typical-coin-change-algo │ └── 11407-Squares-typical-coin-change-algo.cpp ├── 11413-Fill-the-Containers │ └── 11413-Fill-the-Containers.cpp ├── 11420-Chest-of-Drawers │ └── 11420-Chest-of-Drawers.cpp ├── 11424-GCD-Extreme-(I) │ └── 11424-GCD-Extreme-(I).cpp ├── 11450-Wedding-shopping(TopDown) │ └── 11450-Wedding-shopping(TopDown).cpp ├── 11452-Dancing-the-Cheeky-Cheeky │ ├── 11452-Dancing-the-Cheeky-Cheeky.cpp │ └── a.out ├── 11456-Trainsorting │ └── 11456-Trainsorting.cpp ├── 11463-Commandos │ └── 11463-Commandos.cpp ├── 11466-Largest-Prime-Divisor │ ├── 11466-Largest-Prime-Divisor.cpp │ ├── a.out │ └── in ├── 11473-Campus-Roads │ ├── 11473-Campus-Roads.cpp │ └── a.out ├── 11475-Extend-to-Palindrome │ ├── 11475-Extend-to-Palindrome.cpp │ ├── a.out │ └── in ├── 11487-Gathering-Food │ └── 11487-Gathering-Food.cpp ├── 11489-Integer-Game │ ├── 11489-Integer-Game.cpp │ ├── a.out │ ├── in │ └── out ├── 1149-Bin-Packing │ └── 1149-Bin-Packing.cpp ├── 11492-Babel │ └── 11492-Babel.cpp ├── 11496-Musical-Loop │ └── 11496-Musical-Loop.cpp ├── 11504-Dominos │ └── 11504-Dominos.cpp ├── 11506-Angry-Programmer │ └── 11506-Angry-Programmer.cpp ├── 11507VirtualFriends │ └── 11507VirtualFriends.cpp ├── 11512-GATTACA │ └── 11512-GATTACA.cpp ├── 11517-Exact-Change │ └── 11517-Exact-Change.cpp ├── 1152-4-Values-whose-Sum-is-0 │ ├── 1152-4-Values-whose-Sum-is-0.cpp │ ├── a.out │ └── in ├── 11526-H(n) │ └── 11526---H(n).cpp ├── 11538-Chess-Queen │ ├── 11538-Chess-Queen.cpp │ └── a.out ├── 11541-Decoding │ └── 11541-Decoding.cpp ├── 11556-Best-Compression-Ever │ └── 11556-Best-Compression-Ever.cpp ├── 11565SimpleEquetion │ └── 11565SimpleEquetion.cpp ├── 11566-Let's-Yum-Cha! │ └── 11566-Let's-Yum-Cha!.cpp ├── 11576-Scrolling-Sign │ ├── 11576-Scrolling-Sign.cpp │ ├── a.out │ └── in ├── 11581GridSuccessors │ └── 11581GridSuccessors.cpp ├── 11583-Alien-DNA │ └── 11583-Alien-DNA.cpp ├── 11588-Image-Coding │ └── 11588-Image-Coding.cpp ├── 11597-Spanning-Subtree │ ├── 11597-Spanning-Subtree.cpp │ ├── a.out │ └── in ├── 116-Unidirectional-TSP │ └── 116-Unidirectional-TSP.cpp ├── 11614-Etruscan-Warriors-Never-Play-Chess │ └── 11614---Etruscan-Warriors-Never-Play-Chess.cpp ├── 11621-Small-Factors │ └── 11621-Small-Factors.cpp ├── 11631-Dark-roads │ └── 11631-Dark-roads.cpp ├── 11634-Generate-random-numbers │ ├── 11634-Generate-random-numbers.cpp │ └── a.out ├── 11635-Hotel-booking │ ├── 11635-Hotel-booking.cpp │ ├── a.out │ └── in ├── 11646-Athletics-Track │ ├── 11646-Athletics-Track.cpp │ ├── a.out │ └── in ├── 11673-Enemy-at-the-Gateway │ └── 11673-Enemy-at-the-Gateway.cpp ├── 11678-Exchanging-Cards │ └── 11678-Exchanging-Cards.cpp ├── 11690MoneyMatters │ └── 11690MoneyMatters.cpp ├── 11695-Flight-Planning │ └── 11695-Flight-Planning.cpp ├── 11697-Playfair-Cipher │ └── 11697-Playfair-Cipher.py ├── 11703-sqrt-log-sin │ └── 11703-sqrt-log-sin.cpp ├── 11718Fantasy-of-a-Summation │ ├── 11718.cpp │ ├── a.out │ └── in ├── 1172-The-Bridges-of-Kölsberg │ ├── 1172-The-Bridges-of-Kölsberg.cpp │ ├── a.out │ └── in ├── 11723-Numbering-Roads │ └── 11723-Numbering-Roads.cpp ├── 11728-Alternate-Task │ ├── 11728-Alternate-Task.cpp │ ├── a.out │ └── in ├── 11730-Number-Transformation │ ├── 11730-Number-Transformation.cpp │ ├── a.out │ ├── in │ ├── out │ └── out2 ├── 11742SocialConstrains │ └── 11742SocialConstrains.cpp ├── 11742socialConstrains │ └── 11742socialConstrains.cpp ├── 11747-Heavy-Cycle-Edges │ └── 11747-Heavy-Cycle-Edges.cpp ├── 11780-Miles-2-Km │ └── 11780-Miles-2-Km.cpp ├── 11790-Murcia's-Skyline │ └── 11790-Murcia's-Skyline.cpp ├── 11827-Maximum-GCD │ ├── 11827-Maximum-GCD.cpp │ ├── a.out │ └── in ├── 11831-Sticker-Collector-Robot │ └── 11831-Sticker-Collector-Robot.cpp ├── 11834-Elevator │ ├── 11834-Elevator.cpp │ ├── a.out │ └── in ├── 11838-Come-and-Go │ └── 11838-Come-and-Go.cpp ├── 11847-Cut-the-Silver-Bar │ └── 11847---Cut-the-Silver-Bar.cpp ├── 11875-Brick-Game │ └── 11875-Brick-Game.cpp ├── 11878-Homework-Checker │ ├── 11878-Homework-Checker.py │ └── in ├── 11879-Multiple-of-17 │ └── main.py ├── 11889-Benefit │ ├── 11889-Benefit.cpp │ └── a.out ├── 11902-Dominator │ └── 11902-Dominator.cpp ├── 11906-Knight-in-a-War-Grid │ └── 11906-Knight-in-a-War-Grid.cpp ├── 11909-Soya-Milk │ └── 11909-Soya-Milk.cpp ├── 11926MultiTasking │ └── 11926MultiTasking.cpp ├── 11928MyDearNei │ └── 11928MyDearNei.cpp ├── 11947-Cancer-or-Scorpio │ └── 11947-Cancer-or-Scorpio.cpp ├── 11951-Area │ └── 11951-Area.cpp ├── 11953-Battleships │ └── 11953-Battleships.cpp ├── 11955-Binomial-Theorem │ └── 11955-Binomial-Theorem.py ├── 11957-Checkers │ └── 11957-Checkers.cpp ├── 11968-In-The-Airport │ └── 11968-In-The-Airport.cpp ├── 1197TheSuspects │ └── 1197TheSuspects.cpp ├── 11987-Almost-Union-Find │ └── 11987-Almost-Union-Find.cpp ├── 11988BrokenKeyboard │ └── 11988BrokenKeyboard.cpp ├── 11991EasyProblemFrom │ └── 11991EasyProblemFrom.cpp ├── 11995ICanGuessTheData │ └── 11995ICanGuessTheData.cpp ├── 12036-Stable-Grid │ └── 12036---Stable-Grid.cpp ├── 1203Argus │ └── 1203Argus.cpp ├── 12050-Palindrome-Numbers │ ├── 12050-Palindrome-Numbers.cpp │ ├── a.out │ └── in ├── 12060-AVGAllINt │ └── 12060-AVGAllINt.cpp ├── 12068-Harmonic-Mean │ └── 12068-Harmonic-Mean.cpp ├── 12083-Guardian-of-Decency │ └── 12083-Guardian-of-Decency.cpp ├── 12085MbCasanova │ └── 12085MbCasanova.cpp ├── 12086Potentiometer(SegTree) │ └── 12086Potentiometer(SegTree).cpp ├── 12086Potentiometers(FenwickTree) │ └── 12086Potentiometers(FenwickTree).cpp ├── 1210-Sum-of-Consecutive-Prime-Numbers │ └── 1210---Sum-of-Consecutive-Prime-Numbers.cpp ├── 12100PrinterQueue │ └── 12100PrinterQueue.cpp ├── 1211-Atomic-Car-Race │ ├── 1211-Atomic-Car-Race.cpp │ ├── a.out │ └── in ├── 12124-Assemble │ ├── 12124-Assemble.cpp │ ├── a.out │ └── in ├── 12125-March-of-the-Penguins │ └── 12125-March-of-the-Penguins.cpp ├── 12148-Electricity │ └── 12148-Electricity.cpp ├── 12149-Feynman │ └── 12149---Feynman.cpp ├── 12160-Unlock-the-Lock │ └── 12160-Unlock-the-Lock.cpp ├── 12192Grapevine │ └── 12192Grapevine.cpp ├── 1220-Party-at-Hali-Bula │ ├── 1220-Party-at-Hali-Bula.cpp │ ├── a.out │ └── in ├── 12210-A-Match-Making-Problem │ └── 12210-A-Match-Making-Problem.cpp ├── 123-BlockProblem │ └── 123-BlockProblem.cpp ├── 123-Searching-Quickly │ └── 123-Searching-Quickly.py ├── 1230-MODEX │ └── 1230---MODEX.cpp ├── 1231-ACORN │ ├── 1231-ACORN.cpp │ ├── a.out │ └── in ├── 12348-Fun-Coloring │ ├── 12348-Fun-Coloring.cpp │ ├── a.out │ └── in ├── 12356ArrmyBuddies │ └── 12356ArrmyBuddies.cpp ├── 1237ExpertEnough │ └── 1237ExpertEnough.cpp ├── 1238-Free-Parentheses │ ├── 1238-Free-Parentheses.cpp │ ├── a.out │ └── in ├── 12405-Scarecrow │ └── 12405-Scarecrow.cpp ├── 12406-Help-Dexter │ ├── 12406-Help-Dexter.cpp │ ├── a.out │ └── in ├── 12416-Excessive-Space-Remover │ └── 12416-Excessive-Space-Remover.cpp ├── 12442-Forwarding-Emails │ └── 12442-Forwarding-Emails.cpp ├── 12455-Bars │ └── 12455-Bars.cpp ├── 12455Bars │ └── 12455Bars.cpp ├── 1247-Interstar-Transport │ └── 1247-Interstar-Transport.cpp ├── 12488-Start-Grid │ ├── 12488-Start-Grid.cpp │ ├── a.out │ └── in ├── 125-Numbering-Paths │ └── 125-Numbering-Paths.cpp ├── 12527-Different-Digits │ └── 12527---Different-Digits.cpp ├── 12532IntervalProductsSegTree │ └── 12532IntervalProductsSegTree.cpp ├── 12608GarbageColl │ └── 12608GarbageColl.cpp ├── 1260Salses │ └── 1260Salses.cpp ├── 1261-String-Popping │ └── 1261-String-Popping.cpp ├── 1262Password │ └── 1262Password.cpp ├── 12667-Last-Blood │ └── 12667-Last-Blood.cpp ├── 12694-Meeting-Room-Arrangement │ └── 12694-Meeting-Room-Arrangement.cpp ├── 12704-Little-Masters │ └── 12704-Little-Masters.cpp ├── 12893-Count-It │ └── 12893-Count-It.cpp ├── 12895-Armstrong-Number │ └── 12895-Armstrong-Number.cpp ├── 12908-The-book-thief │ └── 12908-The-book-thief.cpp ├── 13007-D-as-in-Daedalus │ ├── 13007-D-as-in-Daedalus.cpp │ ├── a.out │ └── in ├── 13056-Jerry's-Game │ └── 13056-Jerry's-Game.cpp ├── 1315-Crazy-tea-party │ ├── 1315-Crazy-tea-party.cpp │ └── a.out ├── 1586-Molar-mass │ └── 1586-Molar-mass.cpp ├── 161-Traffic-Lights │ └── 161-Traffic-Lights.cpp ├── 170-Clock-Patience │ └── 170-Clock-Patience.cpp ├── 186-Trip-Routing │ └── 186-Trip-Routing.cpp ├── 193GraphColoring │ └── 193GraphColoring.cpp ├── 195-Anagram │ └── 195-Anagram.cpp ├── 196-Spreadsheet │ └── 196-Spreadsheet.cpp ├── 201-Squares │ └── 201-Squares.cpp ├── 216-Getting-in-Line │ └── 216-Getting-in-Line.cpp ├── 247-Calling-Circles │ └── 247-Calling-Circles.cpp ├── 259-Software-Allocation-(Dinic-Algo-O(V^2*E)) │ └── 259-Software-Allocation-(Dinic-Algo-O(V^2*E)).cpp ├── 259-Software-Allocation │ └── 259-Software-Allocation.cpp ├── 264-Count-on-Cantor │ └── 264-Count-on-Cantor.cpp ├── 294-Divisors │ ├── 294-Divisors.cpp │ └── a.out ├── 296-Safebreaker │ ├── 296-Safebreaker.cpp │ ├── a.out │ └── in ├── 299-Train-Swapping │ └── 299-Train-Swapping.cpp ├── 314-Robot │ └── 314-Robot.cpp ├── 315-Network │ └── 315-Network.cpp ├── 324-Factorial-Frequencies │ ├── 324-Factorial-Frequencies.py │ └── in ├── 325-Identifying-Legal-Pascal-Real-Constants │ ├── 325-Identifying-Legal-Pascal-Real-Constants.py │ └── in ├── 334-Identifying-Concurrent-Events-(tricky-output->-be-careful-of-tailing-spaces-:| │ └── 334-Identifying-Concurrent-Events-(tricky-output->-be-careful-of-tailing-spaces-:|.cpp ├── 343-What-Base-Is-This? │ └── main.py ├── 357-Let-Me-Count-The-Ways │ └── -357-Let-Me-Count-The-Ways.cpp ├── 374-Big-Mod │ ├── 374-Big-Mod.cpp │ └── a.out ├── 377-Cowculations │ └── 377---Cowculations.cpp ├── 3798-Treasure-of-the-Chimp-Island │ └── 3798-Treasure-of-the-Chimp-Island.cpp ├── 382-Perfection │ └── 382-Perfection.cpp ├── 389-Basically-Speaking │ └── main.py ├── 410-Station-Balance │ └── 410-Station-Balance.cpp ├── 416LEDTest │ └── 416LEDTest.cpp ├── 417-WordIndex │ └── 417-WordIndex.cpp ├── 422-Word-Search-Wonder │ ├── 422-Word-Search-Wonder.cpp │ ├── a.out │ └── in ├── 436-Arbitrage-(II) │ └── 436-Arbitrage-(II).cpp ├── 441Lotto │ └── 441Lotto.cpp ├── 443-Humble-Numbers │ └── 443---Humble-Numbers.py ├── 445-Marvelous-Mazes │ └── 445-Marvelous-Mazes.cpp ├── 452-Project-Scheduling │ └── 452-Project-Scheduling.cpp ├── 459-Graph-Connectivity │ └── 459-Graph-Connectivity.cpp ├── 460-Overlapping-Rectangles │ ├── 460-Overlapping-Rectangles.cpp │ ├── a.out │ └── in ├── 469-Wetlands-of-Florida │ └── 469-Wetlands-of-Florida.cpp ├── 481-What-Goes-Up │ └── 481-What-Goes-Up.py ├── 484-The-Department-of-Redundancy-Department │ ├── 484-The-Department-of-Redundancy-Department.py │ └── in ├── 484TheDepOfRedDep │ └── 484TheDepOfRedDep.cpp ├── 4853-Emoogle-Balance │ └── 4853-Emoogle-Balance.cpp ├── 4855-Hyper-Box │ ├── 4855-Hyper-Box.cpp │ ├── a.out │ └── in ├── 4856-OmniGravity │ ├── 4856-OmniGravity.cpp │ ├── a.out │ └── in ├── 4857-Halloween-Costumes │ ├── 4857-Halloween-Costumes.cpp │ ├── a.out │ └── in ├── 4859-Knockout-Tournaments │ ├── 4859-Knockout-Tournaments.cpp │ ├── a.out │ └── in ├── 486-EnglishNumber-Translator │ └── 486-EnglishNumber-Translator.cpp ├── 488-Triangle-Wave │ ├── 488-Triangle-Wave.cpp │ ├── a.out │ ├── in │ └── out ├── 494-Kindergarten-Counting-Game │ ├── 494-Kindergarten-Counting-Game.py │ └── in ├── 498-Polly-the-Polynomial │ └── 498---Polly-the-Polynomial.cpp ├── 507-Jill-Rides-Again │ └── 507-Jill-Rides-Again.cpp ├── 514Rails │ └── 514Rails.cpp ├── 516-Prime-Land │ ├── 516-Prime-Land.cpp │ ├── a.out │ └── in ├── 524PrimeRingProblem │ └── 524PrimeRingProblem.cpp ├── 526-String-Distance-and-Transform-Process │ ├── 526-String-Distance-and-Transform-Process.cpp │ ├── a.out │ ├── in │ ├── inn │ └── out ├── 543-Goldbachs-Conjecture │ ├── 543-Goldbachs-Conjecture.cpp │ └── a.out ├── 554-Caesar-Cypher │ ├── 554-Caesar-Cypher.cpp │ ├── a.out │ └── in ├── 558-Wormholes │ └── 558-Wormholes.cpp ├── 572-Oil-Deposits │ └── 572-Oil-Deposits.cpp ├── 574Sum-it-Up │ └── 574Sum-it-Up.cpp ├── 575-Skew-Binary │ └── 575---Skew-Binary.cpp ├── 583-Prime-Factors │ ├── 583-Prime-Factors.cpp │ ├── a.out │ └── in ├── 591-Box-of-Bricks │ └── 591-Box-of-Bricks.cpp ├── 599TheForrestForTheTrees │ └── 599TheForrestForTheTrees.cpp ├── 616-Coconuts,-Revisited │ └── 616-Coconuts,-Revisited.cpp ├── 622-Grammar-Evaluation │ ├── 622-Grammar-Evaluation.py │ └── in ├── 623-500 │ └── 623-500.py ├── 624-CD │ └── 624-CD.cpp ├── 644-Immediate-Decodability │ ├── 644-Immediate-Decodability.cpp │ ├── a.out │ └── in ├── 701-The │ └── 701---The.cpp ├── 713-Adding-Reversed-Numbers │ └── main.py ├── 714-Copying-Books │ ├── 714-Copying-Books.cpp │ ├── a.out │ └── in ├── 725-Division │ ├── 725-Division.cpp │ ├── a.out │ └── in ├── 725Division │ ├── 725Division.cpp │ └── a.out ├── 7336-Automatic-Cheater-Detection │ ├── 7336-Automatic-Cheater-Detection.cpp │ ├── a.out │ └── in ├── 7344-Numbered-Cards │ ├── 7344-Numbered-Cards.cpp │ └── a.out ├── 735DartDeMarina │ └── 735DartDeMarina.cpp ├── 737-Gleaming-the-Cubes │ ├── 737-Gleaming-the-Cubes.cpp │ ├── a.out │ └── in ├── 748-Exponentiation │ └── 748-Exponentiation.py ├── 750QueenChessProblem │ └── 750QueenChessProblem.cpp ├── 760-DNA-Sequencing │ ├── 760-DNA-Sequencing.cpp │ ├── a.out │ ├── in │ └── inn ├── 763-Fibinary-Numbers │ ├── 763-Fibinary-Numbers.py │ ├── in │ └── out ├── 7635-National-Bomb-Defusing-Squad │ ├── 7635-National-Bomb-Defusing-Squad.cpp │ ├── a.out │ └── in ├── 787-Maximum-Subsequence-Product │ └── 787_Maximum_Subsequence_Product .py ├── 793NetworkConnections │ └── 793NetworkConnections.cpp ├── 796-Critical-Links │ └── 796-Critical-Links.cpp ├── 804-Petri-Net-Simulation │ ├── 264-CountonCantor │ │ └── 264-CountonCantor.cpp │ ├── 804-Petri-Net-Simulation.cpp │ └── a.out ├── 815-Flooded │ ├── 815-Flooded.cpp │ ├── a.out │ └── in ├── 820-Internet-Bandwidth-(dinic-O(V^2-*-E)-algorithm │ └── 820-Internet-Bandwidth-(dinic-O(V^2-*-E)-algorithm.cpp ├── 820-Internet-Bandwidth │ └── 820-Internet-Bandwidth.cpp ├── 845-Gas-Station-Numbers │ └── 845-Gas-Station-Numbers.cpp ├── 872-Ordering │ └── 872-Ordering.cpp ├── 884-Factorial-Factors │ └── 884-Factorial-Factors.cpp ├── 895-Word-Problem │ └── 895-Word-Problem.cpp ├── 897-Anagrammatic-Primes │ ├── 897-Anagrammatic-Primes.cpp │ ├── a.out │ └── in ├── 902-Password-Search │ ├── .902-Password-Search.cpp.swp │ ├── 902-Password-Search.cpp │ ├── a.out │ └── in ├── 907-Winterim-Backpacking-Trip │ └── 907-Winterim-Backpacking-Trip.cpp ├── 920-Sunny-Mountains │ ├── 920-Sunny-Mountains.cpp │ ├── a.out │ └── in ├── 927IntSeqFrom.. │ └── 927IntSeqFrom...cpp ├── 939-Genes │ └── 939-Genes.cpp ├── 941-Permutations │ ├── 941-Permutations.cpp │ ├── a.out │ └── in ├── 976-Bridge-Building │ ├── 976-Bridge-Building.cpp │ ├── a.out │ └── in ├── 985-Round-and-Round-Maze │ ├── 985-Round-and-Round-Maze.cpp │ ├── a.out │ └── in ├── 988-Many-Paths,-One-Destination │ └── 988-Many-Paths,-One-Destination.cpp ├── 991-Safe-Salutations │ ├── 991-Safe-Salutations.cpp │ ├── 991-Safe-Salutations.py │ ├── a.out │ └── in ├── A-Ancient-Keyboard │ ├── A-Ancient-Keyboard.cpp │ ├── a.out │ └── in ├── A-System-of-Equations │ ├── A-System-of-Equations.cpp │ └── a.out ├── Anagram │ └── Anagram.cpp ├── B-Best-SMS-to-Type │ ├── B-Best-SMS-to-Type.cpp │ ├── a.out │ └── in ├── BeatTheSpread │ └── BeatTheSpread.cpp ├── BenderB- │ └── BenderB-.cpp ├── BlowingFuses │ └── BlowingFuses.cpp ├── BookletPrinting │ └── BookletPrinting.cpp ├── BrainF │ ├── BrainF.cpp │ └── a.out ├── BurgerTime │ └── BurgerTime.cpp ├── C.-Below-the-Diagonal │ ├── C.-Below-the-Diagonal.cpp │ ├── a.out │ └── in ├── ChessMetricTopCodder │ └── ChessMetricTopCodder.cpp ├── CitizenAttention10660 │ └── CitizenAttention10660.cpp ├── ClockHands │ └── ClockHands.cpp ├── D-Dramatic-Multiplications │ ├── D-Dramatic-Multiplications.py │ └── inn ├── Digits │ └── Digits.cpp ├── DivisionOfNlog │ └── DivisionOfNlog.cpp ├── E-Entertainment │ ├── E-Entertainment.cpp │ ├── E.cor │ ├── E.in │ ├── EE.in │ ├── a.out │ └── in ├── EventPlanning │ └── EventPlanning.cpp ├── GreedyGiftGivers │ └── GreedyGiftGivers.cpp ├── HangMan │ └── HangMan.cpp ├── HomeDis │ └── HomeDis.cpp ├── HorrorDash │ └── HorrorDash.cpp ├── IDCodes │ └── IDCodes.cpp ├── LaserSculpture │ └── LaserSculpture.cpp ├── LemmingsBattle978 │ └── LemmingsBattle978.cpp ├── LoveCal │ └── LoveCal.cpp ├── MagicSqurePanidrome │ └── MagicSqurePanidrome.cpp ├── MotherBear │ └── MotherBear.cpp ├── Palindromes │ └── Palindromes.cpp ├── PreRequesties │ └── PreRequesties.cpp ├── RelationalOperators │ └── RelationalOperators.cpp ├── RequestForProposal │ └── RequestForProposal.cpp ├── TheSnail │ └── TheSnail.cpp ├── TrainTracks │ └── TrainTracks.cpp ├── ZerosAndOnes │ └── ZerosAndOnes.cpp ├── cheatsheet │ ├── Graph │ │ ├── articulation-point-and-bridges-O(E+V) │ │ ├── bipartite-graph-check-O(E+V) │ │ ├── edges-property-check-O(E+V) │ │ ├── max-flow-EdmonsKarp-O(V*E^2) │ │ ├── max-flow-dinic-O(V^2*E) │ │ └── topological-sort-kahs's-O(V+E) │ └── dfs.cpp ├── checking-my-bash-scrip │ └── checking-my-bash-scrip.cpp ├── fileee │ └── fileee.cpp ├── hellome │ └── hellome.cpp ├── intervalTree!!!!!! │ └── intervalTree!!!!!!.cpp ├── no │ └── no.cpp ├── robot │ └── robot.cpp ├── testing │ ├── a.out │ ├── in │ ├── inn │ └── testing.cpp ├── thisIsAQuesion │ └── thisIsAQuesion.cpp └── throwing-cards-away-i │ └── 10935.cpp └── warmup ├── 2015-europe-regional ├── a │ ├── a.cpp │ ├── a.out │ └── in ├── b │ └── b.cpp ├── c │ └── c.cpp ├── d │ └── d.cpp ├── e │ └── e.cpp ├── f │ └── f.cpp ├── g │ └── g.cpp ├── h │ └── h.cpp ├── i │ └── i.cpp ├── j │ └── j.cpp ├── k │ └── k.cpp ├── nwerc2015problems.pdf └── nwerc2015slides.pdf ├── 2016-SWERC ├── .gitignore ├── f │ └── f.cpp └── h │ ├── a.out │ └── h.cpp ├── 2017-europe-central ├── a │ └── a.cpp ├── b │ └── b.cpp ├── c │ └── c.cpp ├── challenge.xml ├── d │ └── d.cpp ├── dl-link ├── e │ └── e.cpp ├── f │ └── f.cpp ├── g │ └── g.cpp ├── h │ └── h.cpp ├── i │ └── i.cpp ├── j │ └── j.cpp ├── k │ └── k.cpp └── l │ └── l.cpp ├── amirkabir-icpc-2017 └── g │ └── g.cpp ├── first-regional-warmup-2017 ├── a.out ├── a │ └── a.cpp ├── b │ └── b.cpp ├── c │ └── c.cpp ├── d │ └── d.cpp ├── e │ └── e.cpp ├── f │ └── f.cpp ├── g │ └── g.cpp ├── h │ └── h.cpp ├── i │ └── i.cpp ├── j │ └── j.cpp └── mem.cpp ├── first-selective-icpc-local ├── a │ └── a.cpp ├── b │ └── b.cpp ├── c │ └── c.cpp ├── d │ └── d.cpp ├── e │ └── e.cpp ├── f │ └── f.cpp ├── g │ └── g.cpp ├── h │ └── h.cpp ├── i │ └── i.cpp └── j │ └── j.cpp ├── northwestern-european-regional-contest-nwerc-2014 ├── .gitignore ├── a │ └── a.cpp ├── b │ └── b.cpp ├── c │ └── c.cpp ├── d │ └── d.cpp ├── dl-link ├── e │ └── e.py ├── f │ └── f.cpp ├── g │ └── g.cpp ├── h │ └── h.cpp ├── i │ └── i.cpp ├── j │ └── j.cpp ├── k │ ├── k.cpp │ └── template.cpp └── pdf │ └── 20142015-northwestern-european-regional-contest-nwerc-2014-en.pdf ├── second-selective-icpc-local-iut ├── a │ └── a.cpp ├── b │ └── b.cpp ├── c │ └── c.cpp ├── d │ └── d.cpp ├── e │ └── e.cpp ├── f │ └── f.cpp ├── g │ └── g.cpp ├── h │ └── h.cpp ├── i │ └── i.cpp ├── j │ └── j.cpp └── k │ └── k.cpp ├── tehran ├── a │ └── a.cpp ├── b │ └── b.cpp ├── c │ └── c.cpp ├── d │ └── d.cpp ├── e │ └── e.cpp ├── f │ └── f.cpp ├── g │ └── g.cpp ├── h │ └── h.cpp ├── i │ └── i.cpp ├── j │ └── j.cpp └── k │ └── k.cpp └── tmp └── g └── g.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IUT-ACM-LOCAL-2016/easyGCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/IUT-ACM-LOCAL-2016/easyGCD.cpp -------------------------------------------------------------------------------- /IUT-ACM-LOCAL-2016/numberOfWays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/IUT-ACM-LOCAL-2016/numberOfWays.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/README.md -------------------------------------------------------------------------------- /SOJ/COT2-count-on-a-tree-II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/SOJ/COT2-count-on-a-tree-II.cpp -------------------------------------------------------------------------------- /codecup/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codecup/a/a.cpp -------------------------------------------------------------------------------- /codecup/a/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codecup/a/a.out -------------------------------------------------------------------------------- /codecup/c/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codecup/c/a.out -------------------------------------------------------------------------------- /codecup/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codecup/c/c.cpp -------------------------------------------------------------------------------- /codecup/c/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codecup/c/in -------------------------------------------------------------------------------- /codecup/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codecup/e/e.cpp -------------------------------------------------------------------------------- /codeforces/266/b/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/266/b/a.out -------------------------------------------------------------------------------- /codeforces/266/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/266/b/b.cpp -------------------------------------------------------------------------------- /codeforces/266/b/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/266/b/c.cpp -------------------------------------------------------------------------------- /codeforces/266/b/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/266/b/in -------------------------------------------------------------------------------- /codeforces/266/b/inn: -------------------------------------------------------------------------------- 1 | 5 2 | 1 2 3 0 3 3 | 4 4 | 0 1 -1 0 5 | 2 6 | 4 1 7 | -------------------------------------------------------------------------------- /codeforces/266/b/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/266/b/out -------------------------------------------------------------------------------- /codeforces/266/b/outt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/266/b/outt -------------------------------------------------------------------------------- /codeforces/392/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/392/a.cpp -------------------------------------------------------------------------------- /codeforces/392/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/392/a.out -------------------------------------------------------------------------------- /codeforces/392/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/392/b.cpp -------------------------------------------------------------------------------- /codeforces/392/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/392/c.cpp -------------------------------------------------------------------------------- /codeforces/392/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/392/d.cpp -------------------------------------------------------------------------------- /codeforces/392/in: -------------------------------------------------------------------------------- 1 | !!!!YGRB 2 | -------------------------------------------------------------------------------- /codeforces/392/out: -------------------------------------------------------------------------------- 1 | 1 1 0 0 -------------------------------------------------------------------------------- /codeforces/394/B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/394/B.cpp -------------------------------------------------------------------------------- /codeforces/394/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/394/a.out -------------------------------------------------------------------------------- /codeforces/394/in: -------------------------------------------------------------------------------- 1 | 2 4 2 | 1 3 3 | 1 2 -------------------------------------------------------------------------------- /codeforces/434/a/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/434/a/a.py -------------------------------------------------------------------------------- /codeforces/434/d/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/434/d/a.out -------------------------------------------------------------------------------- /codeforces/434/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/434/d/d.cpp -------------------------------------------------------------------------------- /codeforces/434/d/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/434/d/in -------------------------------------------------------------------------------- /codeforces/451-div-2/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/451-div-2/a/a.cpp -------------------------------------------------------------------------------- /codeforces/451-div-2/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/451-div-2/b/b.cpp -------------------------------------------------------------------------------- /codeforces/451-div-2/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/451-div-2/c/c.cpp -------------------------------------------------------------------------------- /codeforces/451-div-2/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/451-div-2/d/d.cpp -------------------------------------------------------------------------------- /codeforces/451-div-2/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/451-div-2/e/e.cpp -------------------------------------------------------------------------------- /codeforces/451-div-2/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/451-div-2/f/f.cpp -------------------------------------------------------------------------------- /codeforces/453-div-2/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/453-div-2/a/a.cpp -------------------------------------------------------------------------------- /codeforces/453-div-2/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/453-div-2/b/b.cpp -------------------------------------------------------------------------------- /codeforces/453-div-2/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/453-div-2/c/c.cpp -------------------------------------------------------------------------------- /codeforces/453-div-2/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/453-div-2/d/d.cpp -------------------------------------------------------------------------------- /codeforces/453-div-2/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/453-div-2/e/e.cpp -------------------------------------------------------------------------------- /codeforces/454-div-2/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/454-div-2/a/a.cpp -------------------------------------------------------------------------------- /codeforces/454-div-2/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/454-div-2/b/b.cpp -------------------------------------------------------------------------------- /codeforces/454-div-2/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/454-div-2/c/c.cpp -------------------------------------------------------------------------------- /codeforces/454-div-2/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/454-div-2/d/d.cpp -------------------------------------------------------------------------------- /codeforces/454-div-2/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/454-div-2/e/e.cpp -------------------------------------------------------------------------------- /codeforces/454-div-2/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/454-div-2/f/f.cpp -------------------------------------------------------------------------------- /codeforces/455-div-2/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/455-div-2/a/a.cpp -------------------------------------------------------------------------------- /codeforces/455-div-2/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/455-div-2/b/b.cpp -------------------------------------------------------------------------------- /codeforces/455-div-2/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/455-div-2/c/c.cpp -------------------------------------------------------------------------------- /codeforces/455-div-2/d/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/455-div-2/d/a.out -------------------------------------------------------------------------------- /codeforces/455-div-2/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/455-div-2/d/d.cpp -------------------------------------------------------------------------------- /codeforces/455-div-2/d/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/455-div-2/d/in -------------------------------------------------------------------------------- /codeforces/455-div-2/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/455-div-2/e/e.cpp -------------------------------------------------------------------------------- /codeforces/455-div-2/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/455-div-2/f/f.cpp -------------------------------------------------------------------------------- /codeforces/456-div-2/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/456-div-2/a/a.cpp -------------------------------------------------------------------------------- /codeforces/456-div-2/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/456-div-2/b/b.cpp -------------------------------------------------------------------------------- /codeforces/456-div-2/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/456-div-2/c/c.cpp -------------------------------------------------------------------------------- /codeforces/456-div-2/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/456-div-2/d/d.cpp -------------------------------------------------------------------------------- /codeforces/456-div-2/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/456-div-2/e/e.cpp -------------------------------------------------------------------------------- /codeforces/461-div-2/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/461-div-2/a/a.cpp -------------------------------------------------------------------------------- /codeforces/461-div-2/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/461-div-2/b/b.cpp -------------------------------------------------------------------------------- /codeforces/461-div-2/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/461-div-2/c/c.cpp -------------------------------------------------------------------------------- /codeforces/461-div-2/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/461-div-2/d/d.cpp -------------------------------------------------------------------------------- /codeforces/461-div-2/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/461-div-2/e/e.cpp -------------------------------------------------------------------------------- /codeforces/461-div-2/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/461-div-2/f/f.cpp -------------------------------------------------------------------------------- /codeforces/471-div-2/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/471-div-2/a/a.cpp -------------------------------------------------------------------------------- /codeforces/471-div-2/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/471-div-2/b/b.cpp -------------------------------------------------------------------------------- /codeforces/471-div-2/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/471-div-2/c/c.cpp -------------------------------------------------------------------------------- /codeforces/471-div-2/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/471-div-2/d/d.cpp -------------------------------------------------------------------------------- /codeforces/471-div-2/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/471-div-2/e/e.cpp -------------------------------------------------------------------------------- /codeforces/471-div-2/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/471-div-2/f/f.cpp -------------------------------------------------------------------------------- /codeforces/472-div-2/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/472-div-2/a/a.cpp -------------------------------------------------------------------------------- /codeforces/472-div-2/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/472-div-2/b/b.cpp -------------------------------------------------------------------------------- /codeforces/472-div-2/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/472-div-2/c/c.cpp -------------------------------------------------------------------------------- /codeforces/472-div-2/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/472-div-2/d/d.cpp -------------------------------------------------------------------------------- /codeforces/472-div-2/e/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/472-div-2/e/a.out -------------------------------------------------------------------------------- /codeforces/472-div-2/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/472-div-2/e/e.cpp -------------------------------------------------------------------------------- /codeforces/472-div-2/e/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/472-div-2/e/in -------------------------------------------------------------------------------- /codeforces/472-div-2/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/472-div-2/f/f.cpp -------------------------------------------------------------------------------- /codeforces/472-div-2/test/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/472-div-2/test/a.cpp -------------------------------------------------------------------------------- /codeforces/472-div-2/test/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/472-div-2/test/a.out -------------------------------------------------------------------------------- /codeforces/472-div-2/test/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/472-div-2/test/in -------------------------------------------------------------------------------- /codeforces/473-div-2/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/473-div-2/a/a.cpp -------------------------------------------------------------------------------- /codeforces/473-div-2/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/473-div-2/b/b.cpp -------------------------------------------------------------------------------- /codeforces/473-div-2/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/473-div-2/c/c.cpp -------------------------------------------------------------------------------- /codeforces/473-div-2/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/473-div-2/d/d.cpp -------------------------------------------------------------------------------- /codeforces/473-div-2/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/473-div-2/e/e.cpp -------------------------------------------------------------------------------- /codeforces/473-div-2/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/473-div-2/f/f.cpp -------------------------------------------------------------------------------- /codeforces/499-div-2/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/499-div-2/a/a.cpp -------------------------------------------------------------------------------- /codeforces/499-div-2/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/499-div-2/b/b.cpp -------------------------------------------------------------------------------- /codeforces/499-div-2/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/499-div-2/c/c.cpp -------------------------------------------------------------------------------- /codeforces/499-div-2/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/499-div-2/d/d.cpp -------------------------------------------------------------------------------- /codeforces/499-div-2/e/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/499-div-2/e/a.out -------------------------------------------------------------------------------- /codeforces/499-div-2/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/499-div-2/e/e.cpp -------------------------------------------------------------------------------- /codeforces/499-div-2/e/in: -------------------------------------------------------------------------------- 1 | 3 10 2 | 10 20 30 -------------------------------------------------------------------------------- /codeforces/499-div-2/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/499-div-2/f/f.cpp -------------------------------------------------------------------------------- /codeforces/500-div-2/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/500-div-2/e.cpp -------------------------------------------------------------------------------- /codeforces/502-div-1-2/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/502-div-1-2/a/a.cpp -------------------------------------------------------------------------------- /codeforces/502-div-1-2/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/502-div-1-2/b/b.cpp -------------------------------------------------------------------------------- /codeforces/502-div-1-2/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/502-div-1-2/c/c.cpp -------------------------------------------------------------------------------- /codeforces/502-div-1-2/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/502-div-1-2/d/d.cpp -------------------------------------------------------------------------------- /codeforces/502-div-1-2/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/502-div-1-2/e/e.cpp -------------------------------------------------------------------------------- /codeforces/502-div-1-2/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/502-div-1-2/f/f.cpp -------------------------------------------------------------------------------- /codeforces/611/b/b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/611/b/b.py -------------------------------------------------------------------------------- /codeforces/757/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/757/a.cpp -------------------------------------------------------------------------------- /codeforces/757/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/757/a.out -------------------------------------------------------------------------------- /codeforces/757/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/757/b.cpp -------------------------------------------------------------------------------- /codeforces/757/in: -------------------------------------------------------------------------------- 1 | 5 2 | 2 3 4 6 7 -------------------------------------------------------------------------------- /codeforces/761/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/761/a.cpp -------------------------------------------------------------------------------- /codeforces/761/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/761/a.out -------------------------------------------------------------------------------- /codeforces/761/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/761/b.cpp -------------------------------------------------------------------------------- /codeforces/761/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/761/in -------------------------------------------------------------------------------- /codeforces/86D-powerful-array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/86D-powerful-array -------------------------------------------------------------------------------- /codeforces/C.-Jury-Marks/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/C.-Jury-Marks/a.out -------------------------------------------------------------------------------- /codeforces/C.-Jury-Marks/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/C.-Jury-Marks/in -------------------------------------------------------------------------------- /codeforces/educational-round-35/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/a/a.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-35/b/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/b/a.out -------------------------------------------------------------------------------- /codeforces/educational-round-35/b/a2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/b/a2.out -------------------------------------------------------------------------------- /codeforces/educational-round-35/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/b/b.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-35/b/dif: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /codeforces/educational-round-35/b/do.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/b/do.sh -------------------------------------------------------------------------------- /codeforces/educational-round-35/b/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/b/in -------------------------------------------------------------------------------- /codeforces/educational-round-35/b/out: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /codeforces/educational-round-35/b/out2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codeforces/educational-round-35/b/t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/b/t.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-35/b/t2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/b/t2.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-35/c/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/c/a.out -------------------------------------------------------------------------------- /codeforces/educational-round-35/c/a2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/c/a2.out -------------------------------------------------------------------------------- /codeforces/educational-round-35/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/c/c.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-35/c/dif: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /codeforces/educational-round-35/c/do.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/c/do.sh -------------------------------------------------------------------------------- /codeforces/educational-round-35/c/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/c/in -------------------------------------------------------------------------------- /codeforces/educational-round-35/c/out: -------------------------------------------------------------------------------- 1 | NO 2 | -------------------------------------------------------------------------------- /codeforces/educational-round-35/c/out2: -------------------------------------------------------------------------------- 1 | NO -------------------------------------------------------------------------------- /codeforces/educational-round-35/c/t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/c/t.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-35/c/t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/c/t.py -------------------------------------------------------------------------------- /codeforces/educational-round-35/c/t2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/c/t2.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-35/d/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/d/a.out -------------------------------------------------------------------------------- /codeforces/educational-round-35/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/d/d.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-35/d/t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/d/t.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-35/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/e/e.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-35/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-35/f/f.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-36/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-36/a/a.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-36/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-36/b/b.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-36/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-36/c/c.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-36/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-36/d/d.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-36/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-36/e/e.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-36/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-36/f/f.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-36/g/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-36/g/g.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-37/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-37/a/a.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-37/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-37/b/b.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-37/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-37/c/c.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-37/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-37/d/d.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-37/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-37/e/e.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-37/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-37/f/f.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-37/g/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-37/g/g.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-40/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-40/a/a.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-40/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-40/b/b.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-40/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-40/c/c.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-40/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-40/d/d.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-40/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-40/e/e.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-40/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-40/f/f.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-40/g/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-40/g/g.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-40/h/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-40/h/h.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-40/i/i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-40/i/i.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-41/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-41/a/a.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-41/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-41/b/b.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-41/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-41/c/c.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-41/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-41/d/d.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-41/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-41/e/e.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-41/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-41/f/f.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-41/g/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-41/g/g.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-48/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-48/a/a.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-48/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-48/b/b.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-48/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-48/c/c.cpp -------------------------------------------------------------------------------- /codeforces/educational-round-48/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/educational-round-48/d/d.cpp -------------------------------------------------------------------------------- /codeforces/goodbye-2017/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/goodbye-2017/a/a.cpp -------------------------------------------------------------------------------- /codeforces/goodbye-2017/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/goodbye-2017/b/b.cpp -------------------------------------------------------------------------------- /codeforces/goodbye-2017/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/goodbye-2017/c/c.cpp -------------------------------------------------------------------------------- /codeforces/goodbye-2017/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/goodbye-2017/d/d.cpp -------------------------------------------------------------------------------- /codeforces/goodbye-2017/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/goodbye-2017/e/e.cpp -------------------------------------------------------------------------------- /codeforces/goodbye-2017/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/goodbye-2017/f/f.cpp -------------------------------------------------------------------------------- /codeforces/goodbye-2017/g/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/goodbye-2017/g/g.cpp -------------------------------------------------------------------------------- /codeforces/goodbye-2017/h/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/goodbye-2017/h/h.cpp -------------------------------------------------------------------------------- /codeforces/hello-2018/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/hello-2018/a/a.cpp -------------------------------------------------------------------------------- /codeforces/hello-2018/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/hello-2018/b/b.cpp -------------------------------------------------------------------------------- /codeforces/hello-2018/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/hello-2018/c/c.cpp -------------------------------------------------------------------------------- /codeforces/hello-2018/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/hello-2018/d/d.cpp -------------------------------------------------------------------------------- /codeforces/hello-2018/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/hello-2018/e/e.cpp -------------------------------------------------------------------------------- /codeforces/hello-2018/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/hello-2018/f/f.cpp -------------------------------------------------------------------------------- /codeforces/hello-2018/g/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/hello-2018/g/g.cpp -------------------------------------------------------------------------------- /codeforces/hello-2018/h/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codeforces/hello-2018/h/h.cpp -------------------------------------------------------------------------------- /codejam/2017/distribution_round/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/distribution_round/a/a.cpp -------------------------------------------------------------------------------- /codejam/2017/distribution_round/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/distribution_round/b/b.cpp -------------------------------------------------------------------------------- /codejam/2017/qualification-round/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/qualification-round/a/a.cpp -------------------------------------------------------------------------------- /codejam/2017/qualification-round/a/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/qualification-round/a/a.out -------------------------------------------------------------------------------- /codejam/2017/qualification-round/a/in: -------------------------------------------------------------------------------- 1 | 1 38478921794371 34832874234 2 | -------------------------------------------------------------------------------- /codejam/2017/qualification-round/a/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/qualification-round/a/out -------------------------------------------------------------------------------- /codejam/2017/qualification-round/a/out2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/qualification-round/a/out2 -------------------------------------------------------------------------------- /codejam/2017/qualification-round/b/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/qualification-round/b/a.out -------------------------------------------------------------------------------- /codejam/2017/qualification-round/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/qualification-round/b/b.cpp -------------------------------------------------------------------------------- /codejam/2017/qualification-round/b/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/qualification-round/b/in -------------------------------------------------------------------------------- /codejam/2017/qualification-round/b/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/qualification-round/b/out -------------------------------------------------------------------------------- /codejam/2017/qualification-round/b/out2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/qualification-round/b/out2 -------------------------------------------------------------------------------- /codejam/2017/qualification-round/c/In: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codejam/2017/qualification-round/c/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/qualification-round/c/a.out -------------------------------------------------------------------------------- /codejam/2017/qualification-round/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/qualification-round/c/c.cpp -------------------------------------------------------------------------------- /codejam/2017/qualification-round/c/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/qualification-round/c/in -------------------------------------------------------------------------------- /codejam/2017/qualification-round/c/in2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/qualification-round/c/in2 -------------------------------------------------------------------------------- /codejam/2017/qualification-round/c/in3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/qualification-round/c/in3 -------------------------------------------------------------------------------- /codejam/2017/qualification-round/c/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/qualification-round/c/out -------------------------------------------------------------------------------- /codejam/2017/round-1-B/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-B/a/a.cpp -------------------------------------------------------------------------------- /codejam/2017/round-1-B/a/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-B/a/a.out -------------------------------------------------------------------------------- /codejam/2017/round-1-B/a/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-B/a/in -------------------------------------------------------------------------------- /codejam/2017/round-1-B/a/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-B/a/out -------------------------------------------------------------------------------- /codejam/2017/round-1-B/a/out2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-B/a/out2 -------------------------------------------------------------------------------- /codejam/2017/round-1-B/a/out3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-B/a/out3 -------------------------------------------------------------------------------- /codejam/2017/round-1-B/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-B/b/b.cpp -------------------------------------------------------------------------------- /codejam/2017/round-1-B/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-B/c/c.cpp -------------------------------------------------------------------------------- /codejam/2017/round-1-C/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/a/a.cpp -------------------------------------------------------------------------------- /codejam/2017/round-1-C/a/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/a/a.out -------------------------------------------------------------------------------- /codejam/2017/round-1-C/a/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/a/in -------------------------------------------------------------------------------- /codejam/2017/round-1-C/a/in2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/a/in2 -------------------------------------------------------------------------------- /codejam/2017/round-1-C/a/inn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/a/inn -------------------------------------------------------------------------------- /codejam/2017/round-1-C/a/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/a/out -------------------------------------------------------------------------------- /codejam/2017/round-1-C/a/out2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/a/out2 -------------------------------------------------------------------------------- /codejam/2017/round-1-C/a/out3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/a/out3 -------------------------------------------------------------------------------- /codejam/2017/round-1-C/a/outt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/a/outt -------------------------------------------------------------------------------- /codejam/2017/round-1-C/b/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/b/a.out -------------------------------------------------------------------------------- /codejam/2017/round-1-C/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/b/b.cpp -------------------------------------------------------------------------------- /codejam/2017/round-1-C/b/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/b/in -------------------------------------------------------------------------------- /codejam/2017/round-1-C/b/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/b/out -------------------------------------------------------------------------------- /codejam/2017/round-1-C/b/out2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/b/out2 -------------------------------------------------------------------------------- /codejam/2017/round-1-C/b/out3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/b/out3 -------------------------------------------------------------------------------- /codejam/2017/round-1-C/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-1-C/c/c.cpp -------------------------------------------------------------------------------- /codejam/2017/round-2/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-2/a/a.cpp -------------------------------------------------------------------------------- /codejam/2017/round-2/a/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-2/a/a.out -------------------------------------------------------------------------------- /codejam/2017/round-2/a/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-2/a/in -------------------------------------------------------------------------------- /codejam/2017/round-2/a/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-2/a/out -------------------------------------------------------------------------------- /codejam/2017/round-2/b/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-2/b/a.out -------------------------------------------------------------------------------- /codejam/2017/round-2/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-2/b/b.cpp -------------------------------------------------------------------------------- /codejam/2017/round-2/b/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-2/b/in -------------------------------------------------------------------------------- /codejam/2017/round-2/b/inn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-2/b/inn -------------------------------------------------------------------------------- /codejam/2017/round-2/b/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-2/b/out -------------------------------------------------------------------------------- /codejam/2017/round-2/b/out2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-2/b/out2 -------------------------------------------------------------------------------- /codejam/2017/round-2/b/out3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-2/b/out3 -------------------------------------------------------------------------------- /codejam/2017/round-2/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2017/round-2/c/c.cpp -------------------------------------------------------------------------------- /codejam/2018/qual-round/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2018/qual-round/a/a.cpp -------------------------------------------------------------------------------- /codejam/2018/qual-round/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2018/qual-round/b/b.cpp -------------------------------------------------------------------------------- /codejam/2018/qual-round/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2018/qual-round/c/c.cpp -------------------------------------------------------------------------------- /codejam/2018/subround-b/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2018/subround-b/a.cpp -------------------------------------------------------------------------------- /codejam/2018/subround-b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/codejam/2018/subround-b/b.cpp -------------------------------------------------------------------------------- /hackerCup/2016/qualification/a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/hackerCup/2016/qualification/a.py -------------------------------------------------------------------------------- /hackerCup/2016/qualification/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/hackerCup/2016/qualification/b.cpp -------------------------------------------------------------------------------- /hackerCup/2016/qualification/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/hackerCup/2016/qualification/c.py -------------------------------------------------------------------------------- /hackerCup/2016/round-1/.a.cpp.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/hackerCup/2016/round-1/.a.cpp.swp -------------------------------------------------------------------------------- /hackerCup/2016/round-1/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/hackerCup/2016/round-1/a.cpp -------------------------------------------------------------------------------- /hackerCup/2016/round-1/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/hackerCup/2016/round-1/a.out -------------------------------------------------------------------------------- /hackerCup/2016/round-1/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/hackerCup/2016/round-1/c.cpp -------------------------------------------------------------------------------- /hackerCup/2016/round-1/c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/hackerCup/2016/round-1/c.in -------------------------------------------------------------------------------- /hackerCup/2016/round-1/c.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/hackerCup/2016/round-1/c.out -------------------------------------------------------------------------------- /hackerCup/2016/round-1/des: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/hackerCup/2016/round-1/des -------------------------------------------------------------------------------- /hackerCup/2016/round-1/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/hackerCup/2016/round-1/in -------------------------------------------------------------------------------- /hackerCup/2016/round-1/in2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/hackerCup/2016/round-1/in2 -------------------------------------------------------------------------------- /hackerCup/2016/round-1/oout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/hackerCup/2016/round-1/oout -------------------------------------------------------------------------------- /hackerCup/2016/round-1/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/hackerCup/2016/round-1/out -------------------------------------------------------------------------------- /hackerCup/2016/round-1/outt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/hackerCup/2016/round-1/outt -------------------------------------------------------------------------------- /quera/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/quera/a/a.cpp -------------------------------------------------------------------------------- /quera/a/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/quera/a/a.out -------------------------------------------------------------------------------- /quera/a/in: -------------------------------------------------------------------------------- 1 | 4 2 | -2 3 3 0 -------------------------------------------------------------------------------- /quera/a/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/quera/a/test.txt -------------------------------------------------------------------------------- /quera/b/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/quera/b/a.out -------------------------------------------------------------------------------- /quera/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/quera/b/b.cpp -------------------------------------------------------------------------------- /quera/b/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/quera/b/in -------------------------------------------------------------------------------- /quera/c/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/quera/c/a.out -------------------------------------------------------------------------------- /quera/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/quera/c/c.cpp -------------------------------------------------------------------------------- /quera/c/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/quera/c/in -------------------------------------------------------------------------------- /quera/d/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/quera/d/a.out -------------------------------------------------------------------------------- /quera/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/quera/d/d.cpp -------------------------------------------------------------------------------- /quera/d/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/quera/d/in -------------------------------------------------------------------------------- /regionals/2007-tehran-site/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/a.cpp -------------------------------------------------------------------------------- /regionals/2007-tehran-site/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/a.out -------------------------------------------------------------------------------- /regionals/2007-tehran-site/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/b.cpp -------------------------------------------------------------------------------- /regionals/2007-tehran-site/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/c.cpp -------------------------------------------------------------------------------- /regionals/2007-tehran-site/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/d.cpp -------------------------------------------------------------------------------- /regionals/2007-tehran-site/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/e.cpp -------------------------------------------------------------------------------- /regionals/2007-tehran-site/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/f.cpp -------------------------------------------------------------------------------- /regionals/2007-tehran-site/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/g.cpp -------------------------------------------------------------------------------- /regionals/2007-tehran-site/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/h.cpp -------------------------------------------------------------------------------- /regionals/2007-tehran-site/i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/i.cpp -------------------------------------------------------------------------------- /regionals/2007-tehran-site/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/in -------------------------------------------------------------------------------- /regionals/2007-tehran-site/j.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/j.cpp -------------------------------------------------------------------------------- /regionals/2007-tehran-site/k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/k.cpp -------------------------------------------------------------------------------- /regionals/2007-tehran-site/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/out -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/a.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/a.in -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/a.out -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/b.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/b.in -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/b.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/b.out -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/c.in -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/c.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/c.out -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/d.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/d.in -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/d.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/d.out -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/e.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/e.in -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/e.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/e.out -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/f.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/f.in -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/f.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/f.out -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/g.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/g.in -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/g.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/g.out -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/h.in -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/h.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/h.out -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/i.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/i.in -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/i.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/i.out -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/j.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/j.in -------------------------------------------------------------------------------- /regionals/2007-tehran-site/tc/j.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2007-tehran-site/tc/j.out -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/E.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/E.in -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/E.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/E.out -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/TD87.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/TD87.zip -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/a.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/a.in -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/a.out -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/a/a.cpp -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/b/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/b/a.out -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/b/b.cpp -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/b/b.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/b/b.in -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/b/b.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/b/b.out -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/b/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/b/out -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/c.in -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/c.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/c.out -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/c/c.cpp -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/d.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/d.in -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/d.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/d.out -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/d/d.cpp -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/e/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/e/a.out -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/e/e.cpp -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/e/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/e/in -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/f.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/f.in -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/f.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/f.out -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/f/f.cpp -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/g.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/g.in -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/g.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/g.out -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/g/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/g/g.cpp -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/h.in -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/h.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/h.out -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/h/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/h/h.cpp -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/i.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/i.in -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/i.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/i.out -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/i/i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/i/i.cpp -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/j.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/j.in -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/j.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/j.out -------------------------------------------------------------------------------- /regionals/2008-tehran-site/a/j/j.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/a/j/j.cpp -------------------------------------------------------------------------------- /regionals/2008-tehran-site/b/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/b/b -------------------------------------------------------------------------------- /regionals/2008-tehran-site/c/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/c/c -------------------------------------------------------------------------------- /regionals/2008-tehran-site/d/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/d/d -------------------------------------------------------------------------------- /regionals/2008-tehran-site/e/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/e/e -------------------------------------------------------------------------------- /regionals/2008-tehran-site/f/f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/f/f -------------------------------------------------------------------------------- /regionals/2008-tehran-site/g/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/g/g -------------------------------------------------------------------------------- /regionals/2008-tehran-site/h/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/h/h -------------------------------------------------------------------------------- /regionals/2008-tehran-site/i/i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/i/i -------------------------------------------------------------------------------- /regionals/2008-tehran-site/j/j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2008-tehran-site/j/j -------------------------------------------------------------------------------- /regionals/2009-tehran-site/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2009-tehran-site/a/a.cpp -------------------------------------------------------------------------------- /regionals/2009-tehran-site/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2009-tehran-site/b/b.cpp -------------------------------------------------------------------------------- /regionals/2009-tehran-site/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2009-tehran-site/c/c.cpp -------------------------------------------------------------------------------- /regionals/2009-tehran-site/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2009-tehran-site/d/d.cpp -------------------------------------------------------------------------------- /regionals/2009-tehran-site/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2009-tehran-site/e/e.cpp -------------------------------------------------------------------------------- /regionals/2009-tehran-site/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2009-tehran-site/f/f.cpp -------------------------------------------------------------------------------- /regionals/2009-tehran-site/g/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2009-tehran-site/g/g.cpp -------------------------------------------------------------------------------- /regionals/2009-tehran-site/h/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2009-tehran-site/h/h.cpp -------------------------------------------------------------------------------- /regionals/2009-tehran-site/i/i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2009-tehran-site/i/i.cpp -------------------------------------------------------------------------------- /regionals/2009-tehran-site/j/j.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2009-tehran-site/j/j.cpp -------------------------------------------------------------------------------- /regionals/2010-tehran-site/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2010-tehran-site/a/a.cpp -------------------------------------------------------------------------------- /regionals/2010-tehran-site/a/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2010-tehran-site/a/a.out -------------------------------------------------------------------------------- /regionals/2010-tehran-site/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2010-tehran-site/b/b.cpp -------------------------------------------------------------------------------- /regionals/2010-tehran-site/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2010-tehran-site/c/c.cpp -------------------------------------------------------------------------------- /regionals/2010-tehran-site/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2010-tehran-site/d/d.cpp -------------------------------------------------------------------------------- /regionals/2010-tehran-site/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2010-tehran-site/e/e.cpp -------------------------------------------------------------------------------- /regionals/2010-tehran-site/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2010-tehran-site/f/f.cpp -------------------------------------------------------------------------------- /regionals/2010-tehran-site/g/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2010-tehran-site/g/g.cpp -------------------------------------------------------------------------------- /regionals/2010-tehran-site/h/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2010-tehran-site/h/h.cpp -------------------------------------------------------------------------------- /regionals/2010-tehran-site/i/i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2010-tehran-site/i/i.cpp -------------------------------------------------------------------------------- /regionals/2010-tehran-site/j/j.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2010-tehran-site/j/j.cpp -------------------------------------------------------------------------------- /regionals/2017-2018-tehran-site-regional/dl-link: -------------------------------------------------------------------------------- 1 | http://icpc.sharif.edu/acmicpc17/problems/TD96.zip 2 | -------------------------------------------------------------------------------- /regionals/2017-tehran-site/A.cor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/A.cor -------------------------------------------------------------------------------- /regionals/2017-tehran-site/A.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/A.in -------------------------------------------------------------------------------- /regionals/2017-tehran-site/B.cor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/B.cor -------------------------------------------------------------------------------- /regionals/2017-tehran-site/B.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/B.in -------------------------------------------------------------------------------- /regionals/2017-tehran-site/C.cor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/C.cor -------------------------------------------------------------------------------- /regionals/2017-tehran-site/C.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/C.in -------------------------------------------------------------------------------- /regionals/2017-tehran-site/D.cor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/D.cor -------------------------------------------------------------------------------- /regionals/2017-tehran-site/D.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/D.in -------------------------------------------------------------------------------- /regionals/2017-tehran-site/E/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/E/a.out -------------------------------------------------------------------------------- /regionals/2017-tehran-site/E/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/E/out -------------------------------------------------------------------------------- /regionals/2017-tehran-site/F.cor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/F.cor -------------------------------------------------------------------------------- /regionals/2017-tehran-site/F.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/F.in -------------------------------------------------------------------------------- /regionals/2017-tehran-site/G.cor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/G.cor -------------------------------------------------------------------------------- /regionals/2017-tehran-site/G.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/G.in -------------------------------------------------------------------------------- /regionals/2017-tehran-site/H.cor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/H.cor -------------------------------------------------------------------------------- /regionals/2017-tehran-site/H.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/H.in -------------------------------------------------------------------------------- /regionals/2017-tehran-site/I.cor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/I.cor -------------------------------------------------------------------------------- /regionals/2017-tehran-site/I.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/I.in -------------------------------------------------------------------------------- /regionals/2017-tehran-site/J.cor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/J.cor -------------------------------------------------------------------------------- /regionals/2017-tehran-site/J.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/J.in -------------------------------------------------------------------------------- /regionals/2017-tehran-site/tc05.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/regionals/2017-tehran-site/tc05.zip -------------------------------------------------------------------------------- /uva/10015/10015.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10015/10015.cpp -------------------------------------------------------------------------------- /uva/10018/10018.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10018/10018.cpp -------------------------------------------------------------------------------- /uva/10038JojUmbers/10038JojUmbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10038JojUmbers/10038JojUmbers.cpp -------------------------------------------------------------------------------- /uva/10061-How-many-zeros-and-how-many-digits/inn: -------------------------------------------------------------------------------- 1 | 23233 344 -------------------------------------------------------------------------------- /uva/10069/10069.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10069/10069.java -------------------------------------------------------------------------------- /uva/10090-Marbles/10090-Marbles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10090-Marbles/10090-Marbles.cpp -------------------------------------------------------------------------------- /uva/10091-The-Valentine’s-Day/inn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10091-The-Valentine’s-Day/inn -------------------------------------------------------------------------------- /uva/10150-Doublets/10150-Doublets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10150-Doublets/10150-Doublets.cpp -------------------------------------------------------------------------------- /uva/10176-Ocean-Deep!-Make-it-shallow/inn: -------------------------------------------------------------------------------- 1 | 111 2 | 1001# 3 | -------------------------------------------------------------------------------- /uva/10192-Vacation/10192-Vacation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10192-Vacation/10192-Vacation.cpp -------------------------------------------------------------------------------- /uva/102/102.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/102/102.cpp -------------------------------------------------------------------------------- /uva/10263-Railway/10263-Railway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10263-Railway/10263-Railway.cpp -------------------------------------------------------------------------------- /uva/10263-Railway/inn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10263-Railway/inn -------------------------------------------------------------------------------- /uva/10268-498-bis/10268---498-bis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10268-498-bis/10268---498-bis.cpp -------------------------------------------------------------------------------- /uva/10306-eCoins/10306-eCoins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10306-eCoins/10306-eCoins.cpp -------------------------------------------------------------------------------- /uva/10309-Turn-the-Lights-Off/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10309-Turn-the-Lights-Off/in -------------------------------------------------------------------------------- /uva/10310-Dog-and-Gopher/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10310-Dog-and-Gopher/a.out -------------------------------------------------------------------------------- /uva/10310-Dog-and-Gopher/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10310-Dog-and-Gopher/in -------------------------------------------------------------------------------- /uva/10310-Dog-and-Gopher/on: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10310-Dog-and-Gopher/on -------------------------------------------------------------------------------- /uva/10312-Expression-Bracketing/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10312-Expression-Bracketing/a.out -------------------------------------------------------------------------------- /uva/10317_Equating_Equations/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10317_Equating_Equations/a.out -------------------------------------------------------------------------------- /uva/10317_Equating_Equations/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10317_Equating_Equations/in -------------------------------------------------------------------------------- /uva/10334-Ray-Through-Glasses/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10334-Ray-Through-Glasses/in -------------------------------------------------------------------------------- /uva/10334-Ray-Through-Glasses/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10334-Ray-Through-Glasses/out -------------------------------------------------------------------------------- /uva/10338-Mischievous-Children/in: -------------------------------------------------------------------------------- 1 | 3 2 | HAPPY 3 | WEDDING 4 | ADAM -------------------------------------------------------------------------------- /uva/10359-Tiling/10359-Tiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10359-Tiling/10359-Tiling.py -------------------------------------------------------------------------------- /uva/10389-Subway/10389-Subway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10389-Subway/10389-Subway.cpp -------------------------------------------------------------------------------- /uva/10389-Subway/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10389-Subway/a.out -------------------------------------------------------------------------------- /uva/10393-The-One-Handed-Typist/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10393-The-One-Handed-Typist/a.out -------------------------------------------------------------------------------- /uva/10393-The-One-Handed-Typist/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10393-The-One-Handed-Typist/in -------------------------------------------------------------------------------- /uva/10394-Twin-Primes/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10394-Twin-Primes/a.out -------------------------------------------------------------------------------- /uva/104-Arbitrage/104-Arbitrage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/104-Arbitrage/104-Arbitrage.cpp -------------------------------------------------------------------------------- /uva/10407-Simple-division/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10407-Simple-division/a.out -------------------------------------------------------------------------------- /uva/10407-Simple-division/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10407-Simple-division/in -------------------------------------------------------------------------------- /uva/10409/10409.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10409/10409.py -------------------------------------------------------------------------------- /uva/10449-Traffic/10449-Traffic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10449-Traffic/10449-Traffic.cpp -------------------------------------------------------------------------------- /uva/1047Zones/1047Zones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1047Zones/1047Zones.cpp -------------------------------------------------------------------------------- /uva/10480-Sabotage/10480-Sabotage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10480-Sabotage/10480-Sabotage.cpp -------------------------------------------------------------------------------- /uva/10482-The-Candyman-Can/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10482-The-Candyman-Can/a.out -------------------------------------------------------------------------------- /uva/10482-The-Candyman-Can/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10482-The-Candyman-Can/in -------------------------------------------------------------------------------- /uva/10491-Cows-and-Cars/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10491-Cows-and-Cars/a.out -------------------------------------------------------------------------------- /uva/10500/10500.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10500/10500.cpp -------------------------------------------------------------------------------- /uva/10508-Word-Morphing/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10508-Word-Morphing/a.out -------------------------------------------------------------------------------- /uva/10508-Word-Morphing/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10508-Word-Morphing/in -------------------------------------------------------------------------------- /uva/10510-Cactus/10510-Cactus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10510-Cactus/10510-Cactus.cpp -------------------------------------------------------------------------------- /uva/10519-Really-Strange/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10519-Really-Strange/in -------------------------------------------------------------------------------- /uva/10523-Very-Easy-ls!/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10523-Very-Easy-ls!/main.py -------------------------------------------------------------------------------- /uva/10539-Almost-Prime-Numbers/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10539-Almost-Prime-Numbers/a.out -------------------------------------------------------------------------------- /uva/10539-Almost-Prime-Numbers/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10539-Almost-Prime-Numbers/in -------------------------------------------------------------------------------- /uva/10541-Stripe/10541-Stripe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10541-Stripe/10541-Stripe.py -------------------------------------------------------------------------------- /uva/10541-Stripe/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10541-Stripe/in -------------------------------------------------------------------------------- /uva/10557-XYZZY/10557-XYZZY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10557-XYZZY/10557-XYZZY.cpp -------------------------------------------------------------------------------- /uva/10577-Bounding-box/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10577-Bounding-box/a.out -------------------------------------------------------------------------------- /uva/10577-Bounding-box/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10577-Bounding-box/in -------------------------------------------------------------------------------- /uva/10589-Area/10589-Area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10589-Area/10589-Area.cpp -------------------------------------------------------------------------------- /uva/10589-Area/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10589-Area/a.out -------------------------------------------------------------------------------- /uva/10589-Area/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10589-Area/in -------------------------------------------------------------------------------- /uva/10608Friends/10608Friends.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10608Friends/10608Friends.cpp -------------------------------------------------------------------------------- /uva/10617-Again-Palindromes/in: -------------------------------------------------------------------------------- 1 | 3 2 | BAOBAB 3 | AAAA 4 | ABA -------------------------------------------------------------------------------- /uva/1062Containers/1062Containers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1062Containers/1062Containers.cpp -------------------------------------------------------------------------------- /uva/10652-Board-Wrapping/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10652-Board-Wrapping/a.out -------------------------------------------------------------------------------- /uva/10652-Board-Wrapping/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10652-Board-Wrapping/in -------------------------------------------------------------------------------- /uva/10673-Play-with-Floor-and-Ceil/in: -------------------------------------------------------------------------------- 1 | 123 2 | 2468 -------------------------------------------------------------------------------- /uva/10678-The-Grazing-Cow/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10678-The-Grazing-Cow/a.out -------------------------------------------------------------------------------- /uva/10678-The-Grazing-Cow/in: -------------------------------------------------------------------------------- 1 | 3 2 | 10 12 3 | 23 45 4 | 12 18 5 | -------------------------------------------------------------------------------- /uva/10680-LCM/10680-LCM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10680-LCM/10680-LCM.cpp -------------------------------------------------------------------------------- /uva/10680-LCM/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10680-LCM/a.out -------------------------------------------------------------------------------- /uva/10680-LCM/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10680-LCM/in -------------------------------------------------------------------------------- /uva/10685Nature/10685Nature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10685Nature/10685Nature.cpp -------------------------------------------------------------------------------- /uva/10699-Count-the-factors/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10699-Count-the-factors/a.out -------------------------------------------------------------------------------- /uva/10702-Travelling-Salesman/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10702-Travelling-Salesman/a.out -------------------------------------------------------------------------------- /uva/10702-Travelling-Salesman/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10702-Travelling-Salesman/in -------------------------------------------------------------------------------- /uva/10718-Bit-Mask/10718-Bit-Mask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10718-Bit-Mask/10718-Bit-Mask.cpp -------------------------------------------------------------------------------- /uva/10738-Riemann-vs-Mertens/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10738-Riemann-vs-Mertens/a.out -------------------------------------------------------------------------------- /uva/10738-Riemann-vs-Mertens/in: -------------------------------------------------------------------------------- 1 | 20 2 | 1 3 | 144 4 | 73 5 | 0 -------------------------------------------------------------------------------- /uva/10738-Riemann-vs-Mertens/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10738-Riemann-vs-Mertens/out -------------------------------------------------------------------------------- /uva/10759-Dice-Throwing/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10759-Dice-Throwing/a.out -------------------------------------------------------------------------------- /uva/10759-Dice-Throwing/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10759-Dice-Throwing/in -------------------------------------------------------------------------------- /uva/10759-Dice-Throwing/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10759-Dice-Throwing/out -------------------------------------------------------------------------------- /uva/10784-Diagonal/10784-Diagonal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10784-Diagonal/10784-Diagonal.cpp -------------------------------------------------------------------------------- /uva/10784-Diagonal/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10784-Diagonal/a.out -------------------------------------------------------------------------------- /uva/10800-Not-That-Kind-of-Graph/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10800-Not-That-Kind-of-Graph/a.out -------------------------------------------------------------------------------- /uva/10800-Not-That-Kind-of-Graph/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10800-Not-That-Kind-of-Graph/in -------------------------------------------------------------------------------- /uva/10800-Not-That-Kind-of-Graph/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10800-Not-That-Kind-of-Graph/out -------------------------------------------------------------------------------- /uva/10800-Not-That-Kind-of-Graph/outt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10800-Not-That-Kind-of-Graph/outt -------------------------------------------------------------------------------- /uva/10801-Lift-Hopping/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10801-Lift-Hopping/a.out -------------------------------------------------------------------------------- /uva/10807-Prim,-Prim/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10807-Prim,-Prim/a.out -------------------------------------------------------------------------------- /uva/10807-Prim,-Prim/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10807-Prim,-Prim/in -------------------------------------------------------------------------------- /uva/10851-2D-Hieroglyphs-decoder/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10851-2D-Hieroglyphs-decoder/a.out -------------------------------------------------------------------------------- /uva/10851-2D-Hieroglyphs-decoder/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10851-2D-Hieroglyphs-decoder/in -------------------------------------------------------------------------------- /uva/10854-Number-of-Paths/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10854-Number-of-Paths/a.out -------------------------------------------------------------------------------- /uva/10854-Number-of-Paths/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10854-Number-of-Paths/in -------------------------------------------------------------------------------- /uva/10859-Placing-Lampposts/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10859-Placing-Lampposts/a.out -------------------------------------------------------------------------------- /uva/10859-Placing-Lampposts/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10859-Placing-Lampposts/in -------------------------------------------------------------------------------- /uva/10871-Primed-Subsequence/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10871-Primed-Subsequence/a.out -------------------------------------------------------------------------------- /uva/10871-Primed-Subsequence/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10871-Primed-Subsequence/in -------------------------------------------------------------------------------- /uva/10878-Decode-the-tape/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10878-Decode-the-tape/in -------------------------------------------------------------------------------- /uva/10880-Colin-and-Ryan/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10880-Colin-and-Ryan/a.out -------------------------------------------------------------------------------- /uva/10891-Game-of-Sum/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10891-Game-of-Sum/a.out -------------------------------------------------------------------------------- /uva/10891-Game-of-Sum/in: -------------------------------------------------------------------------------- 1 | 4 2 | 4 -10 -20 7 3 | 4 4 | 1 2 3 4 5 | 0 -------------------------------------------------------------------------------- /uva/10892-LCM-Cardinality/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10892-LCM-Cardinality/a.out -------------------------------------------------------------------------------- /uva/10892-LCM-Cardinality/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10892-LCM-Cardinality/in -------------------------------------------------------------------------------- /uva/10898-Combo-Deal/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10898-Combo-Deal/a.out -------------------------------------------------------------------------------- /uva/10898-Combo-Deal/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10898-Combo-Deal/in -------------------------------------------------------------------------------- /uva/10911-Forming-Quiz-Teams/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10911-Forming-Quiz-Teams/a.out -------------------------------------------------------------------------------- /uva/10911-Forming-Quiz-Teams/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10911-Forming-Quiz-Teams/in -------------------------------------------------------------------------------- /uva/10917-A-Walk-Through-the-Forest/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10917-A-Walk-Through-the-Forest/in -------------------------------------------------------------------------------- /uva/10920SpiralTap/10920SpiralTap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10920SpiralTap/10920SpiralTap.cpp -------------------------------------------------------------------------------- /uva/10925-Krakovia/10925---Krakovia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10925-Krakovia/10925---Krakovia.py -------------------------------------------------------------------------------- /uva/10931/10931.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10931/10931.cpp -------------------------------------------------------------------------------- /uva/10937-Blackbeard-the-Pirate/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10937-Blackbeard-the-Pirate/a.out -------------------------------------------------------------------------------- /uva/10937-Blackbeard-the-Pirate/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10937-Blackbeard-the-Pirate/in -------------------------------------------------------------------------------- /uva/10950-Bad-Code/10950-Bad-Code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10950-Bad-Code/10950-Bad-Code.cpp -------------------------------------------------------------------------------- /uva/10950-Bad-Code/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10950-Bad-Code/a.out -------------------------------------------------------------------------------- /uva/10950-Bad-Code/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10950-Bad-Code/in -------------------------------------------------------------------------------- /uva/10950-Bad-Code/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10950-Bad-Code/out -------------------------------------------------------------------------------- /uva/10950-Bad-Code/out2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10950-Bad-Code/out2 -------------------------------------------------------------------------------- /uva/10954AddAll/10954AddAll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10954AddAll/10954AddAll.cpp -------------------------------------------------------------------------------- /uva/10978-Lets-Play-Magic/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10978-Lets-Play-Magic/a.out -------------------------------------------------------------------------------- /uva/10978-Lets-Play-Magic/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10978-Lets-Play-Magic/in -------------------------------------------------------------------------------- /uva/1098-Robots-on-Ice/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1098-Robots-on-Ice/a.out -------------------------------------------------------------------------------- /uva/1098-Robots-on-Ice/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1098-Robots-on-Ice/in -------------------------------------------------------------------------------- /uva/1099-Sharing-Chocolate/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1099-Sharing-Chocolate/a.out -------------------------------------------------------------------------------- /uva/1099-Sharing-Chocolate/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1099-Sharing-Chocolate/in -------------------------------------------------------------------------------- /uva/1099-Sharing-Chocolate/in1: -------------------------------------------------------------------------------- 1 | 4 2 | 3 4 3 | 6 3 2 1 4 | 2 5 | 2 3 6 | 1 5 7 | 0 -------------------------------------------------------------------------------- /uva/10990-Another-New-Function/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10990-Another-New-Function/a.out -------------------------------------------------------------------------------- /uva/10990-Another-New-Function/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/10990-Another-New-Function/in -------------------------------------------------------------------------------- /uva/11022-String-Factoring/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11022-String-Factoring/a.out -------------------------------------------------------------------------------- /uva/11022-String-Factoring/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11022-String-Factoring/in -------------------------------------------------------------------------------- /uva/11022-String-Factoring/inn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11022-String-Factoring/inn -------------------------------------------------------------------------------- /uva/11053-Flavius-Josephus-Reloaded/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11053-Flavius-Josephus-Reloaded/in -------------------------------------------------------------------------------- /uva/11059-Maximum-Product/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11059-Maximum-Product/a.out -------------------------------------------------------------------------------- /uva/11059-Maximum-Product/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11059-Maximum-Product/in -------------------------------------------------------------------------------- /uva/11065-A-Gentlemen’s-Agreement/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11065-A-Gentlemen’s-Agreement/in -------------------------------------------------------------------------------- /uva/11069-A-Graph-Problem/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11069-A-Graph-Problem/a.out -------------------------------------------------------------------------------- /uva/11078-Open-Credit-System/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11078-Open-Credit-System/a.out -------------------------------------------------------------------------------- /uva/11078-Open-Credit-System/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11078-Open-Credit-System/in -------------------------------------------------------------------------------- /uva/11105-Semi-prime-H-numbers/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11105-Semi-prime-H-numbers/a.out -------------------------------------------------------------------------------- /uva/11105-Semi-prime-H-numbers/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11105-Semi-prime-H-numbers/in -------------------------------------------------------------------------------- /uva/11107-Life-Forms/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11107-Life-Forms/a.out -------------------------------------------------------------------------------- /uva/11107-Life-Forms/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11107-Life-Forms/in -------------------------------------------------------------------------------- /uva/11107-Life-Forms/inn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11107-Life-Forms/inn -------------------------------------------------------------------------------- /uva/1111-Trash-Removal/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1111-Trash-Removal/a.out -------------------------------------------------------------------------------- /uva/1111-Trash-Removal/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1111-Trash-Removal/in -------------------------------------------------------------------------------- /uva/11134-Fabled-Rooks/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11134-Fabled-Rooks/a.out -------------------------------------------------------------------------------- /uva/11134-Fabled-Rooks/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11134-Fabled-Rooks/in -------------------------------------------------------------------------------- /uva/11149-Power-of-Matrix/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11149-Power-of-Matrix/a.out -------------------------------------------------------------------------------- /uva/11149-Power-of-Matrix/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11149-Power-of-Matrix/in -------------------------------------------------------------------------------- /uva/11151-Longest-Palindrome/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11151-Longest-Palindrome/a.out -------------------------------------------------------------------------------- /uva/11151-Longest-Palindrome/in: -------------------------------------------------------------------------------- 1 | 3 2 | ABA 3 | 4 | A -------------------------------------------------------------------------------- /uva/11151-Longest-Palindrome/inn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11151-Longest-Palindrome/inn -------------------------------------------------------------------------------- /uva/11152-Colourful-Flowers/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11152-Colourful-Flowers/a.out -------------------------------------------------------------------------------- /uva/11158-Elegant-Permuted-Sum/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11158-Elegant-Permuted-Sum/a.out -------------------------------------------------------------------------------- /uva/11158-Elegant-Permuted-Sum/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11158-Elegant-Permuted-Sum/in -------------------------------------------------------------------------------- /uva/11173GrayCode/11173GrayCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11173GrayCode/11173GrayCode.cpp -------------------------------------------------------------------------------- /uva/11176-Winning-Streak/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11176-Winning-Streak/a.out -------------------------------------------------------------------------------- /uva/11176-Winning-Streak/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11176-Winning-Streak/in -------------------------------------------------------------------------------- /uva/11182-Zeroes-III/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11182-Zeroes-III/a.out -------------------------------------------------------------------------------- /uva/11182-Zeroes-III/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11182-Zeroes-III/in -------------------------------------------------------------------------------- /uva/11182-Zeroes-III/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11182-Zeroes-III/out -------------------------------------------------------------------------------- /uva/11195-Another-n-Queen-Problem/cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11195-Another-n-Queen-Problem/cmp -------------------------------------------------------------------------------- /uva/11198-Dancing-Digits/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11198-Dancing-Digits/a.out -------------------------------------------------------------------------------- /uva/11198-Dancing-Digits/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11198-Dancing-Digits/in -------------------------------------------------------------------------------- /uva/11207-The-easiest-way/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11207-The-easiest-way/a.out -------------------------------------------------------------------------------- /uva/11207-The-easiest-way/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11207-The-easiest-way/in -------------------------------------------------------------------------------- /uva/11212-Editing-a-Book/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11212-Editing-a-Book/a.out -------------------------------------------------------------------------------- /uva/11212-Editing-a-Book/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11212-Editing-a-Book/in -------------------------------------------------------------------------------- /uva/11227-The-silver-bullet/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11227-The-silver-bullet/a.out -------------------------------------------------------------------------------- /uva/11227-The-silver-bullet/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11227-The-silver-bullet/in -------------------------------------------------------------------------------- /uva/11258-String-Partition/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11258-String-Partition/a.out -------------------------------------------------------------------------------- /uva/11262-Weird-Fence/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11262-Weird-Fence/a.out -------------------------------------------------------------------------------- /uva/11262-Weird-Fence/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11262-Weird-Fence/in -------------------------------------------------------------------------------- /uva/11265-The-Sultans-Problem/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11265-The-Sultans-Problem/a.out -------------------------------------------------------------------------------- /uva/11265-The-Sultans-Problem/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11265-The-Sultans-Problem/in -------------------------------------------------------------------------------- /uva/11278-One-Handed-Typist/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11278-One-Handed-Typist/a.out -------------------------------------------------------------------------------- /uva/11287-Pseudoprime-Numbers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11287-Pseudoprime-Numbers/main.py -------------------------------------------------------------------------------- /uva/11291-Smeech/11291-Smeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11291-Smeech/11291-Smeech.py -------------------------------------------------------------------------------- /uva/11291-Smeech/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11291-Smeech/in -------------------------------------------------------------------------------- /uva/11291-Smeech/inn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11291-Smeech/inn -------------------------------------------------------------------------------- /uva/11307-Alternative-Arborescence/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11307-Alternative-Arborescence/in -------------------------------------------------------------------------------- /uva/11307-Alternative-Arborescence/inn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11307-Alternative-Arborescence/inn -------------------------------------------------------------------------------- /uva/11310-Delivery-Debacle/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11310-Delivery-Debacle/a.out -------------------------------------------------------------------------------- /uva/11310-Delivery-Debacle/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11310-Delivery-Debacle/in -------------------------------------------------------------------------------- /uva/11311-Exclusively-Edible/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11311-Exclusively-Edible/a.out -------------------------------------------------------------------------------- /uva/11311-Exclusively-Edible/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11311-Exclusively-Edible/in -------------------------------------------------------------------------------- /uva/11324-The-Largest-Clique/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11324-The-Largest-Clique/a.out -------------------------------------------------------------------------------- /uva/11324-The-Largest-Clique/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11324-The-Largest-Clique/in -------------------------------------------------------------------------------- /uva/11324-The-Largest-Clique/inn: -------------------------------------------------------------------------------- 1 | 1 2 | 3 1 3 | 3 3 4 | -------------------------------------------------------------------------------- /uva/11329-Curious-Fleas/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11329-Curious-Fleas/a.out -------------------------------------------------------------------------------- /uva/11329-Curious-Fleas/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11329-Curious-Fleas/in -------------------------------------------------------------------------------- /uva/11340NewsPaper/11340NewsPaper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11340NewsPaper/11340NewsPaper.cpp -------------------------------------------------------------------------------- /uva/11344-The-Huge-One/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11344-The-Huge-One/a.out -------------------------------------------------------------------------------- /uva/11344-The-Huge-One/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11344-The-Huge-One/in -------------------------------------------------------------------------------- /uva/11357-Ensuring-Truth/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11357-Ensuring-Truth/in -------------------------------------------------------------------------------- /uva/11368-Nested-Dolls/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11368-Nested-Dolls/a.out -------------------------------------------------------------------------------- /uva/11368-Nested-Dolls/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11368-Nested-Dolls/in -------------------------------------------------------------------------------- /uva/11371-Number-Theory-for-Newbies/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11371-Number-Theory-for-Newbies/in -------------------------------------------------------------------------------- /uva/11385-Da-Vinci-Code/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11385-Da-Vinci-Code/a.out -------------------------------------------------------------------------------- /uva/11385-Da-Vinci-Code/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11385-Da-Vinci-Code/in -------------------------------------------------------------------------------- /uva/11466-Largest-Prime-Divisor/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11466-Largest-Prime-Divisor/a.out -------------------------------------------------------------------------------- /uva/11466-Largest-Prime-Divisor/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11466-Largest-Prime-Divisor/in -------------------------------------------------------------------------------- /uva/11473-Campus-Roads/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11473-Campus-Roads/a.out -------------------------------------------------------------------------------- /uva/11475-Extend-to-Palindrome/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11475-Extend-to-Palindrome/a.out -------------------------------------------------------------------------------- /uva/11475-Extend-to-Palindrome/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11475-Extend-to-Palindrome/in -------------------------------------------------------------------------------- /uva/11489-Integer-Game/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11489-Integer-Game/a.out -------------------------------------------------------------------------------- /uva/11489-Integer-Game/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11489-Integer-Game/in -------------------------------------------------------------------------------- /uva/11489-Integer-Game/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11489-Integer-Game/out -------------------------------------------------------------------------------- /uva/11492-Babel/11492-Babel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11492-Babel/11492-Babel.cpp -------------------------------------------------------------------------------- /uva/11504-Dominos/11504-Dominos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11504-Dominos/11504-Dominos.cpp -------------------------------------------------------------------------------- /uva/11512-GATTACA/11512-GATTACA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11512-GATTACA/11512-GATTACA.cpp -------------------------------------------------------------------------------- /uva/1152-4-Values-whose-Sum-is-0/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1152-4-Values-whose-Sum-is-0/a.out -------------------------------------------------------------------------------- /uva/1152-4-Values-whose-Sum-is-0/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1152-4-Values-whose-Sum-is-0/in -------------------------------------------------------------------------------- /uva/11526-H(n)/11526---H(n).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11526-H(n)/11526---H(n).cpp -------------------------------------------------------------------------------- /uva/11538-Chess-Queen/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11538-Chess-Queen/a.out -------------------------------------------------------------------------------- /uva/11541-Decoding/11541-Decoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11541-Decoding/11541-Decoding.cpp -------------------------------------------------------------------------------- /uva/11553/11553.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11553/11553.cpp -------------------------------------------------------------------------------- /uva/11576-Scrolling-Sign/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11576-Scrolling-Sign/a.out -------------------------------------------------------------------------------- /uva/11576-Scrolling-Sign/in: -------------------------------------------------------------------------------- 1 | 1 2 | 3 3 3 | CAT 4 | ATE 5 | TEA 6 | -------------------------------------------------------------------------------- /uva/11597-Spanning-Subtree/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11597-Spanning-Subtree/a.out -------------------------------------------------------------------------------- /uva/11597-Spanning-Subtree/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11597-Spanning-Subtree/in -------------------------------------------------------------------------------- /uva/11635-Hotel-booking/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11635-Hotel-booking/a.out -------------------------------------------------------------------------------- /uva/11635-Hotel-booking/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11635-Hotel-booking/in -------------------------------------------------------------------------------- /uva/11646-Athletics-Track/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11646-Athletics-Track/a.out -------------------------------------------------------------------------------- /uva/11646-Athletics-Track/in: -------------------------------------------------------------------------------- 1 | 3 : 2 2 | 5 : 4 -------------------------------------------------------------------------------- /uva/11718Fantasy-of-a-Summation/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11718Fantasy-of-a-Summation/a.out -------------------------------------------------------------------------------- /uva/11718Fantasy-of-a-Summation/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11718Fantasy-of-a-Summation/in -------------------------------------------------------------------------------- /uva/1172-The-Bridges-of-Kölsberg/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1172-The-Bridges-of-Kölsberg/a.out -------------------------------------------------------------------------------- /uva/1172-The-Bridges-of-Kölsberg/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1172-The-Bridges-of-Kölsberg/in -------------------------------------------------------------------------------- /uva/11728-Alternate-Task/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11728-Alternate-Task/a.out -------------------------------------------------------------------------------- /uva/11728-Alternate-Task/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11728-Alternate-Task/in -------------------------------------------------------------------------------- /uva/11730-Number-Transformation/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11730-Number-Transformation/a.out -------------------------------------------------------------------------------- /uva/11730-Number-Transformation/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11730-Number-Transformation/in -------------------------------------------------------------------------------- /uva/11730-Number-Transformation/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11730-Number-Transformation/out -------------------------------------------------------------------------------- /uva/11730-Number-Transformation/out2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11730-Number-Transformation/out2 -------------------------------------------------------------------------------- /uva/11764/11764.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11764/11764.cpp -------------------------------------------------------------------------------- /uva/11827-Maximum-GCD/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11827-Maximum-GCD/a.out -------------------------------------------------------------------------------- /uva/11827-Maximum-GCD/in: -------------------------------------------------------------------------------- 1 | 3 2 | 10 20 30 40 3 | 7 5 12 4 | 125 15 25 5 | -------------------------------------------------------------------------------- /uva/11834-Elevator/11834-Elevator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11834-Elevator/11834-Elevator.cpp -------------------------------------------------------------------------------- /uva/11834-Elevator/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11834-Elevator/a.out -------------------------------------------------------------------------------- /uva/11834-Elevator/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11834-Elevator/in -------------------------------------------------------------------------------- /uva/11878-Homework-Checker/in: -------------------------------------------------------------------------------- 1 | 1+2=3 2 | 3-1=5 3 | 6+7=? 4 | 99-0=99 -------------------------------------------------------------------------------- /uva/11879-Multiple-of-17/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11879-Multiple-of-17/main.py -------------------------------------------------------------------------------- /uva/11889-Benefit/11889-Benefit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11889-Benefit/11889-Benefit.cpp -------------------------------------------------------------------------------- /uva/11889-Benefit/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11889-Benefit/a.out -------------------------------------------------------------------------------- /uva/11928MyDearNei/11928MyDearNei.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11928MyDearNei/11928MyDearNei.cpp -------------------------------------------------------------------------------- /uva/11951-Area/11951-Area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11951-Area/11951-Area.cpp -------------------------------------------------------------------------------- /uva/11957-Checkers/11957-Checkers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/11957-Checkers/11957-Checkers.cpp -------------------------------------------------------------------------------- /uva/12034/12034.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12034/12034.cpp -------------------------------------------------------------------------------- /uva/1203Argus/1203Argus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1203Argus/1203Argus.cpp -------------------------------------------------------------------------------- /uva/12050-Palindrome-Numbers/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12050-Palindrome-Numbers/a.out -------------------------------------------------------------------------------- /uva/12050-Palindrome-Numbers/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12050-Palindrome-Numbers/in -------------------------------------------------------------------------------- /uva/12097/12097.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12097/12097.cpp -------------------------------------------------------------------------------- /uva/12097/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12097/a.out -------------------------------------------------------------------------------- /uva/1211-Atomic-Car-Race/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1211-Atomic-Car-Race/a.out -------------------------------------------------------------------------------- /uva/1211-Atomic-Car-Race/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1211-Atomic-Car-Race/in -------------------------------------------------------------------------------- /uva/12124-Assemble/12124-Assemble.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12124-Assemble/12124-Assemble.cpp -------------------------------------------------------------------------------- /uva/12124-Assemble/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12124-Assemble/a.out -------------------------------------------------------------------------------- /uva/12124-Assemble/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12124-Assemble/in -------------------------------------------------------------------------------- /uva/12149-Feynman/12149---Feynman.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12149-Feynman/12149---Feynman.cpp -------------------------------------------------------------------------------- /uva/12192Grapevine/12192Grapevine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12192Grapevine/12192Grapevine.cpp -------------------------------------------------------------------------------- /uva/1220-Party-at-Hali-Bula/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1220-Party-at-Hali-Bula/a.out -------------------------------------------------------------------------------- /uva/1220-Party-at-Hali-Bula/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1220-Party-at-Hali-Bula/in -------------------------------------------------------------------------------- /uva/1225/1225.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1225/1225.cpp -------------------------------------------------------------------------------- /uva/1230-MODEX/1230---MODEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1230-MODEX/1230---MODEX.cpp -------------------------------------------------------------------------------- /uva/1231-ACORN/1231-ACORN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1231-ACORN/1231-ACORN.cpp -------------------------------------------------------------------------------- /uva/1231-ACORN/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1231-ACORN/a.out -------------------------------------------------------------------------------- /uva/1231-ACORN/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1231-ACORN/in -------------------------------------------------------------------------------- /uva/12348-Fun-Coloring/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12348-Fun-Coloring/a.out -------------------------------------------------------------------------------- /uva/12348-Fun-Coloring/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12348-Fun-Coloring/in -------------------------------------------------------------------------------- /uva/1238-Free-Parentheses/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1238-Free-Parentheses/a.out -------------------------------------------------------------------------------- /uva/1238-Free-Parentheses/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1238-Free-Parentheses/in -------------------------------------------------------------------------------- /uva/12406-Help-Dexter/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12406-Help-Dexter/a.out -------------------------------------------------------------------------------- /uva/12406-Help-Dexter/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12406-Help-Dexter/in -------------------------------------------------------------------------------- /uva/12455-Bars/12455-Bars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12455-Bars/12455-Bars.cpp -------------------------------------------------------------------------------- /uva/12455Bars/12455Bars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12455Bars/12455Bars.cpp -------------------------------------------------------------------------------- /uva/12488-Start-Grid/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12488-Start-Grid/a.out -------------------------------------------------------------------------------- /uva/12488-Start-Grid/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12488-Start-Grid/in -------------------------------------------------------------------------------- /uva/12496/12496.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12496/12496.cpp -------------------------------------------------------------------------------- /uva/1260Salses/1260Salses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1260Salses/1260Salses.cpp -------------------------------------------------------------------------------- /uva/1262Password/1262Password.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1262Password/1262Password.cpp -------------------------------------------------------------------------------- /uva/12703/12703.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12703/12703.cpp -------------------------------------------------------------------------------- /uva/12893-Count-It/12893-Count-It.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12893-Count-It/12893-Count-It.cpp -------------------------------------------------------------------------------- /uva/12995/12995.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/12995/12995.cpp -------------------------------------------------------------------------------- /uva/13007-D-as-in-Daedalus/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/13007-D-as-in-Daedalus/a.out -------------------------------------------------------------------------------- /uva/13007-D-as-in-Daedalus/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/13007-D-as-in-Daedalus/in -------------------------------------------------------------------------------- /uva/1315-Crazy-tea-party/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/1315-Crazy-tea-party/a.out -------------------------------------------------------------------------------- /uva/195-Anagram/195-Anagram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/195-Anagram/195-Anagram.cpp -------------------------------------------------------------------------------- /uva/201-Squares/201-Squares.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/201-Squares/201-Squares.cpp -------------------------------------------------------------------------------- /uva/294-Divisors/294-Divisors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/294-Divisors/294-Divisors.cpp -------------------------------------------------------------------------------- /uva/294-Divisors/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/294-Divisors/a.out -------------------------------------------------------------------------------- /uva/296-Safebreaker/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/296-Safebreaker/a.out -------------------------------------------------------------------------------- /uva/296-Safebreaker/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/296-Safebreaker/in -------------------------------------------------------------------------------- /uva/314-Robot/314-Robot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/314-Robot/314-Robot.cpp -------------------------------------------------------------------------------- /uva/315-Network/315-Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/315-Network/315-Network.cpp -------------------------------------------------------------------------------- /uva/324-Factorial-Frequencies/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/324-Factorial-Frequencies/in -------------------------------------------------------------------------------- /uva/340/340.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/340/340.cpp -------------------------------------------------------------------------------- /uva/343-What-Base-Is-This?/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/343-What-Base-Is-This?/main.py -------------------------------------------------------------------------------- /uva/374-Big-Mod/374-Big-Mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/374-Big-Mod/374-Big-Mod.cpp -------------------------------------------------------------------------------- /uva/374-Big-Mod/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/374-Big-Mod/a.out -------------------------------------------------------------------------------- /uva/382-Perfection/382-Perfection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/382-Perfection/382-Perfection.cpp -------------------------------------------------------------------------------- /uva/389-Basically-Speaking/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/389-Basically-Speaking/main.py -------------------------------------------------------------------------------- /uva/412/412.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/412/412.cpp -------------------------------------------------------------------------------- /uva/416LEDTest/416LEDTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/416LEDTest/416LEDTest.cpp -------------------------------------------------------------------------------- /uva/417-WordIndex/417-WordIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/417-WordIndex/417-WordIndex.cpp -------------------------------------------------------------------------------- /uva/422-Word-Search-Wonder/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/422-Word-Search-Wonder/a.out -------------------------------------------------------------------------------- /uva/422-Word-Search-Wonder/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/422-Word-Search-Wonder/in -------------------------------------------------------------------------------- /uva/441Lotto/441Lotto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/441Lotto/441Lotto.cpp -------------------------------------------------------------------------------- /uva/460-Overlapping-Rectangles/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/460-Overlapping-Rectangles/a.out -------------------------------------------------------------------------------- /uva/460-Overlapping-Rectangles/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/460-Overlapping-Rectangles/in -------------------------------------------------------------------------------- /uva/4855-Hyper-Box/4855-Hyper-Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/4855-Hyper-Box/4855-Hyper-Box.cpp -------------------------------------------------------------------------------- /uva/4855-Hyper-Box/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/4855-Hyper-Box/a.out -------------------------------------------------------------------------------- /uva/4855-Hyper-Box/in: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 | 4 4 4 | 3 5 | 5 7 8 -------------------------------------------------------------------------------- /uva/4856-OmniGravity/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/4856-OmniGravity/a.out -------------------------------------------------------------------------------- /uva/4856-OmniGravity/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/4856-OmniGravity/in -------------------------------------------------------------------------------- /uva/4857-Halloween-Costumes/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/4857-Halloween-Costumes/a.out -------------------------------------------------------------------------------- /uva/4857-Halloween-Costumes/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/4857-Halloween-Costumes/in -------------------------------------------------------------------------------- /uva/4859-Knockout-Tournaments/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/4859-Knockout-Tournaments/a.out -------------------------------------------------------------------------------- /uva/4859-Knockout-Tournaments/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/4859-Knockout-Tournaments/in -------------------------------------------------------------------------------- /uva/488-Triangle-Wave/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/488-Triangle-Wave/a.out -------------------------------------------------------------------------------- /uva/488-Triangle-Wave/in: -------------------------------------------------------------------------------- 1 | 2 2 | 9 3 | 4 4 | 5 5 | 2 6 | -------------------------------------------------------------------------------- /uva/488-Triangle-Wave/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/488-Triangle-Wave/out -------------------------------------------------------------------------------- /uva/494-Kindergarten-Counting-Game/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/494-Kindergarten-Counting-Game/in -------------------------------------------------------------------------------- /uva/514Rails/514Rails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/514Rails/514Rails.cpp -------------------------------------------------------------------------------- /uva/516-Prime-Land/516-Prime-Land.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/516-Prime-Land/516-Prime-Land.cpp -------------------------------------------------------------------------------- /uva/516-Prime-Land/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/516-Prime-Land/a.out -------------------------------------------------------------------------------- /uva/516-Prime-Land/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/516-Prime-Land/in -------------------------------------------------------------------------------- /uva/526-String-Distance-and-Transform-Process/in: -------------------------------------------------------------------------------- 1 | bcd 2 | abcd -------------------------------------------------------------------------------- /uva/543-Goldbachs-Conjecture/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/543-Goldbachs-Conjecture/a.out -------------------------------------------------------------------------------- /uva/554-Caesar-Cypher/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/554-Caesar-Cypher/a.out -------------------------------------------------------------------------------- /uva/554-Caesar-Cypher/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/554-Caesar-Cypher/in -------------------------------------------------------------------------------- /uva/558-Wormholes/558-Wormholes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/558-Wormholes/558-Wormholes.cpp -------------------------------------------------------------------------------- /uva/572/572.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/572/572.cpp -------------------------------------------------------------------------------- /uva/574Sum-it-Up/574Sum-it-Up.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/574Sum-it-Up/574Sum-it-Up.cpp -------------------------------------------------------------------------------- /uva/583-Prime-Factors/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/583-Prime-Factors/a.out -------------------------------------------------------------------------------- /uva/583-Prime-Factors/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/583-Prime-Factors/in -------------------------------------------------------------------------------- /uva/622-Grammar-Evaluation/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/622-Grammar-Evaluation/in -------------------------------------------------------------------------------- /uva/623-500/623-500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/623-500/623-500.py -------------------------------------------------------------------------------- /uva/624-CD/624-CD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/624-CD/624-CD.cpp -------------------------------------------------------------------------------- /uva/644-Immediate-Decodability/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/644-Immediate-Decodability/a.out -------------------------------------------------------------------------------- /uva/644-Immediate-Decodability/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/644-Immediate-Decodability/in -------------------------------------------------------------------------------- /uva/701-The/701---The.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/701-The/701---The.cpp -------------------------------------------------------------------------------- /uva/714-Copying-Books/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/714-Copying-Books/a.out -------------------------------------------------------------------------------- /uva/714-Copying-Books/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/714-Copying-Books/in -------------------------------------------------------------------------------- /uva/725-Division/725-Division.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/725-Division/725-Division.cpp -------------------------------------------------------------------------------- /uva/725-Division/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/725-Division/a.out -------------------------------------------------------------------------------- /uva/725-Division/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/725-Division/in -------------------------------------------------------------------------------- /uva/725Division/725Division.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/725Division/725Division.cpp -------------------------------------------------------------------------------- /uva/725Division/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/725Division/a.out -------------------------------------------------------------------------------- /uva/7344-Numbered-Cards/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/7344-Numbered-Cards/a.out -------------------------------------------------------------------------------- /uva/737-Gleaming-the-Cubes/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/737-Gleaming-the-Cubes/a.out -------------------------------------------------------------------------------- /uva/737-Gleaming-the-Cubes/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/737-Gleaming-the-Cubes/in -------------------------------------------------------------------------------- /uva/760-DNA-Sequencing/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/760-DNA-Sequencing/a.out -------------------------------------------------------------------------------- /uva/760-DNA-Sequencing/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/760-DNA-Sequencing/in -------------------------------------------------------------------------------- /uva/760-DNA-Sequencing/inn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/760-DNA-Sequencing/inn -------------------------------------------------------------------------------- /uva/763-Fibinary-Numbers/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/763-Fibinary-Numbers/in -------------------------------------------------------------------------------- /uva/763-Fibinary-Numbers/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/763-Fibinary-Numbers/out -------------------------------------------------------------------------------- /uva/7635-National-Bomb-Defusing-Squad/in: -------------------------------------------------------------------------------- 1 | 2 1 2 | 0 0 1 1 3 | 1 4 | -------------------------------------------------------------------------------- /uva/804-Petri-Net-Simulation/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/804-Petri-Net-Simulation/a.out -------------------------------------------------------------------------------- /uva/815-Flooded/815-Flooded.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/815-Flooded/815-Flooded.cpp -------------------------------------------------------------------------------- /uva/815-Flooded/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/815-Flooded/a.out -------------------------------------------------------------------------------- /uva/815-Flooded/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/815-Flooded/in -------------------------------------------------------------------------------- /uva/821/821.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/821/821.cpp -------------------------------------------------------------------------------- /uva/872-Ordering/872-Ordering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/872-Ordering/872-Ordering.cpp -------------------------------------------------------------------------------- /uva/897-Anagrammatic-Primes/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/897-Anagrammatic-Primes/a.out -------------------------------------------------------------------------------- /uva/897-Anagrammatic-Primes/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/897-Anagrammatic-Primes/in -------------------------------------------------------------------------------- /uva/902-Password-Search/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/902-Password-Search/a.out -------------------------------------------------------------------------------- /uva/902-Password-Search/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/902-Password-Search/in -------------------------------------------------------------------------------- /uva/920-Sunny-Mountains/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/920-Sunny-Mountains/a.out -------------------------------------------------------------------------------- /uva/920-Sunny-Mountains/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/920-Sunny-Mountains/in -------------------------------------------------------------------------------- /uva/939-Genes/939-Genes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/939-Genes/939-Genes.cpp -------------------------------------------------------------------------------- /uva/941-Permutations/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/941-Permutations/a.out -------------------------------------------------------------------------------- /uva/941-Permutations/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/941-Permutations/in -------------------------------------------------------------------------------- /uva/976-Bridge-Building/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/976-Bridge-Building/a.out -------------------------------------------------------------------------------- /uva/976-Bridge-Building/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/976-Bridge-Building/in -------------------------------------------------------------------------------- /uva/985-Round-and-Round-Maze/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/985-Round-and-Round-Maze/a.out -------------------------------------------------------------------------------- /uva/985-Round-and-Round-Maze/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/985-Round-and-Round-Maze/in -------------------------------------------------------------------------------- /uva/991-Safe-Salutations/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/991-Safe-Salutations/a.out -------------------------------------------------------------------------------- /uva/991-Safe-Salutations/in: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | 9 10 | 10 -------------------------------------------------------------------------------- /uva/A-Ancient-Keyboard/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/A-Ancient-Keyboard/a.out -------------------------------------------------------------------------------- /uva/A-Ancient-Keyboard/in: -------------------------------------------------------------------------------- 1 | 2 2 | 2 3 | X 2 6 4 | Y 4 9 5 | 3 6 | A 1 5 7 | B 4 8 8 | C 9 10 -------------------------------------------------------------------------------- /uva/A-System-of-Equations/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/A-System-of-Equations/a.out -------------------------------------------------------------------------------- /uva/Anagram/Anagram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/Anagram/Anagram.cpp -------------------------------------------------------------------------------- /uva/B-Best-SMS-to-Type/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/B-Best-SMS-to-Type/a.out -------------------------------------------------------------------------------- /uva/B-Best-SMS-to-Type/in: -------------------------------------------------------------------------------- 1 | 1 2 | 2 10 3 | ABBAS SALAM -------------------------------------------------------------------------------- /uva/BeatTheSpread/BeatTheSpread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/BeatTheSpread/BeatTheSpread.cpp -------------------------------------------------------------------------------- /uva/BenderB-/BenderB-.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/BenderB-/BenderB-.cpp -------------------------------------------------------------------------------- /uva/BlowingFuses/BlowingFuses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/BlowingFuses/BlowingFuses.cpp -------------------------------------------------------------------------------- /uva/BrainF/BrainF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/BrainF/BrainF.cpp -------------------------------------------------------------------------------- /uva/BrainF/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/BrainF/a.out -------------------------------------------------------------------------------- /uva/BurgerTime/BurgerTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/BurgerTime/BurgerTime.cpp -------------------------------------------------------------------------------- /uva/C.-Below-the-Diagonal/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/C.-Below-the-Diagonal/a.out -------------------------------------------------------------------------------- /uva/C.-Below-the-Diagonal/in: -------------------------------------------------------------------------------- 1 | 3 2 | 3 1 3 | 1 3 -------------------------------------------------------------------------------- /uva/ClockHands/ClockHands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/ClockHands/ClockHands.cpp -------------------------------------------------------------------------------- /uva/D-Dramatic-Multiplications/inn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/D-Dramatic-Multiplications/inn -------------------------------------------------------------------------------- /uva/Digits/Digits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/Digits/Digits.cpp -------------------------------------------------------------------------------- /uva/DivisionOfNlog/DivisionOfNlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/DivisionOfNlog/DivisionOfNlog.cpp -------------------------------------------------------------------------------- /uva/E-Entertainment/E.cor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/E-Entertainment/E.cor -------------------------------------------------------------------------------- /uva/E-Entertainment/E.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/E-Entertainment/E.in -------------------------------------------------------------------------------- /uva/E-Entertainment/EE.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/E-Entertainment/EE.in -------------------------------------------------------------------------------- /uva/E-Entertainment/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/E-Entertainment/a.out -------------------------------------------------------------------------------- /uva/E-Entertainment/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/E-Entertainment/in -------------------------------------------------------------------------------- /uva/EventPlanning/EventPlanning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/EventPlanning/EventPlanning.cpp -------------------------------------------------------------------------------- /uva/HangMan/HangMan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/HangMan/HangMan.cpp -------------------------------------------------------------------------------- /uva/HomeDis/HomeDis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/HomeDis/HomeDis.cpp -------------------------------------------------------------------------------- /uva/HorrorDash/HorrorDash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/HorrorDash/HorrorDash.cpp -------------------------------------------------------------------------------- /uva/IDCodes/IDCodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/IDCodes/IDCodes.cpp -------------------------------------------------------------------------------- /uva/LaserSculpture/LaserSculpture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/LaserSculpture/LaserSculpture.cpp -------------------------------------------------------------------------------- /uva/LoveCal/LoveCal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/LoveCal/LoveCal.cpp -------------------------------------------------------------------------------- /uva/MotherBear/MotherBear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/MotherBear/MotherBear.cpp -------------------------------------------------------------------------------- /uva/Palindromes/Palindromes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/Palindromes/Palindromes.cpp -------------------------------------------------------------------------------- /uva/PreRequesties/PreRequesties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/PreRequesties/PreRequesties.cpp -------------------------------------------------------------------------------- /uva/TheSnail/TheSnail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/TheSnail/TheSnail.cpp -------------------------------------------------------------------------------- /uva/TrainTracks/TrainTracks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/TrainTracks/TrainTracks.cpp -------------------------------------------------------------------------------- /uva/ZerosAndOnes/ZerosAndOnes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/ZerosAndOnes/ZerosAndOnes.cpp -------------------------------------------------------------------------------- /uva/cheatsheet/dfs.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uva/fileee/fileee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/fileee/fileee.cpp -------------------------------------------------------------------------------- /uva/hellome/hellome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/hellome/hellome.cpp -------------------------------------------------------------------------------- /uva/no/no.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/no/no.cpp -------------------------------------------------------------------------------- /uva/robot/robot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/robot/robot.cpp -------------------------------------------------------------------------------- /uva/testing/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/testing/a.out -------------------------------------------------------------------------------- /uva/testing/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/testing/in -------------------------------------------------------------------------------- /uva/testing/inn: -------------------------------------------------------------------------------- 1 | 3⊄ -------------------------------------------------------------------------------- /uva/testing/testing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/testing/testing.cpp -------------------------------------------------------------------------------- /uva/thisIsAQuesion/thisIsAQuesion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/thisIsAQuesion/thisIsAQuesion.cpp -------------------------------------------------------------------------------- /uva/throwing-cards-away-i/10935.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/uva/throwing-cards-away-i/10935.cpp -------------------------------------------------------------------------------- /warmup/2015-europe-regional/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2015-europe-regional/a/a.cpp -------------------------------------------------------------------------------- /warmup/2015-europe-regional/a/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2015-europe-regional/a/a.out -------------------------------------------------------------------------------- /warmup/2015-europe-regional/a/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2015-europe-regional/a/in -------------------------------------------------------------------------------- /warmup/2015-europe-regional/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2015-europe-regional/b/b.cpp -------------------------------------------------------------------------------- /warmup/2015-europe-regional/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2015-europe-regional/c/c.cpp -------------------------------------------------------------------------------- /warmup/2015-europe-regional/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2015-europe-regional/d/d.cpp -------------------------------------------------------------------------------- /warmup/2015-europe-regional/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2015-europe-regional/e/e.cpp -------------------------------------------------------------------------------- /warmup/2015-europe-regional/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2015-europe-regional/f/f.cpp -------------------------------------------------------------------------------- /warmup/2015-europe-regional/g/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2015-europe-regional/g/g.cpp -------------------------------------------------------------------------------- /warmup/2015-europe-regional/h/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2015-europe-regional/h/h.cpp -------------------------------------------------------------------------------- /warmup/2015-europe-regional/i/i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2015-europe-regional/i/i.cpp -------------------------------------------------------------------------------- /warmup/2015-europe-regional/j/j.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2015-europe-regional/j/j.cpp -------------------------------------------------------------------------------- /warmup/2015-europe-regional/k/k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2015-europe-regional/k/k.cpp -------------------------------------------------------------------------------- /warmup/2016-SWERC/.gitignore: -------------------------------------------------------------------------------- 1 | solio/* 2 | -------------------------------------------------------------------------------- /warmup/2016-SWERC/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2016-SWERC/f/f.cpp -------------------------------------------------------------------------------- /warmup/2016-SWERC/h/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2016-SWERC/h/a.out -------------------------------------------------------------------------------- /warmup/2016-SWERC/h/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2016-SWERC/h/h.cpp -------------------------------------------------------------------------------- /warmup/2017-europe-central/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2017-europe-central/a/a.cpp -------------------------------------------------------------------------------- /warmup/2017-europe-central/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2017-europe-central/b/b.cpp -------------------------------------------------------------------------------- /warmup/2017-europe-central/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2017-europe-central/c/c.cpp -------------------------------------------------------------------------------- /warmup/2017-europe-central/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2017-europe-central/d/d.cpp -------------------------------------------------------------------------------- /warmup/2017-europe-central/dl-link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2017-europe-central/dl-link -------------------------------------------------------------------------------- /warmup/2017-europe-central/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2017-europe-central/e/e.cpp -------------------------------------------------------------------------------- /warmup/2017-europe-central/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2017-europe-central/f/f.cpp -------------------------------------------------------------------------------- /warmup/2017-europe-central/g/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2017-europe-central/g/g.cpp -------------------------------------------------------------------------------- /warmup/2017-europe-central/h/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2017-europe-central/h/h.cpp -------------------------------------------------------------------------------- /warmup/2017-europe-central/i/i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2017-europe-central/i/i.cpp -------------------------------------------------------------------------------- /warmup/2017-europe-central/j/j.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2017-europe-central/j/j.cpp -------------------------------------------------------------------------------- /warmup/2017-europe-central/k/k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2017-europe-central/k/k.cpp -------------------------------------------------------------------------------- /warmup/2017-europe-central/l/l.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/2017-europe-central/l/l.cpp -------------------------------------------------------------------------------- /warmup/amirkabir-icpc-2017/g/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/amirkabir-icpc-2017/g/g.cpp -------------------------------------------------------------------------------- /warmup/tehran/a/a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/tehran/a/a.cpp -------------------------------------------------------------------------------- /warmup/tehran/b/b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/tehran/b/b.cpp -------------------------------------------------------------------------------- /warmup/tehran/c/c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/tehran/c/c.cpp -------------------------------------------------------------------------------- /warmup/tehran/d/d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/tehran/d/d.cpp -------------------------------------------------------------------------------- /warmup/tehran/e/e.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/tehran/e/e.cpp -------------------------------------------------------------------------------- /warmup/tehran/f/f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/tehran/f/f.cpp -------------------------------------------------------------------------------- /warmup/tehran/g/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/tehran/g/g.cpp -------------------------------------------------------------------------------- /warmup/tehran/h/h.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/tehran/h/h.cpp -------------------------------------------------------------------------------- /warmup/tehran/i/i.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/tehran/i/i.cpp -------------------------------------------------------------------------------- /warmup/tehran/j/j.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/tehran/j/j.cpp -------------------------------------------------------------------------------- /warmup/tehran/k/k.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/tehran/k/k.cpp -------------------------------------------------------------------------------- /warmup/tmp/g/g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehranagh20/ACM-ICPC/HEAD/warmup/tmp/g/g.cpp --------------------------------------------------------------------------------