├── .gitignore ├── AtCoder ├── AtCoder Beginner Contest 261 │ └── Intersection.cpp ├── NS Solutions Corporation Programming Contest 2022 │ ├── NS Solutions Corporation Programming Contest 2022.cbp │ ├── NS Solutions Corporation Programming Contest 2022.depend │ ├── NS Solutions Corporation Programming Contest 2022.layout │ └── main.cpp └── Practice │ └── Hammer.cpp ├── CodeChef ├── Ranklist Pages.cpp ├── Reach The Target.cpp └── Remove Bad Elements.cpp ├── Codeforces ├── Codeforces Global Round 21 │ └── CodeForces Global Round │ │ ├── CodeForces Global Round.cbp │ │ ├── CodeForces Global Round.depend │ │ └── main.cpp ├── Codeforces Global Round 22 │ └── Glory Addicts.cpp ├── Codeforces Round 774 Div 2 │ ├── Codeforces Round 774 Div 2.cbp │ ├── Codeforces Round 774 Div 2.depend │ ├── Codeforces Round 774 Div 2.layout │ ├── Problem 1 │ ├── main.cpp │ └── main.cpp~ ├── Codeforces Round 810 Div 2 │ └── Perfect Permutation.cpp ├── Codeforces Round 824 │ ├── Tea with Tangerines.cpp │ └── Working Week.cpp ├── Codeforces_Round_295 │ ├── .first.cpp.un~ │ ├── first.cpp │ └── first.cpp~ ├── Practice │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── launch.json │ │ └── settings.json │ ├── Anton and Letters.cpp │ ├── Anton_and_Danik.cpp │ ├── Bear and Big Brother.cpp │ ├── Beautiful Matrix.cpp │ ├── Black Square.cpp │ ├── Boy or Girl.cpp │ ├── BrainPhoto.cpp │ ├── Buy a Shovel.cpp │ ├── Carrot Cakes.cpp │ ├── Colorful Stones.cpp │ ├── Die Roll.cpp │ ├── Dubstep.cpp │ ├── Football.cpp │ ├── Free Ice Cream.cpp │ ├── Games.cpp │ ├── Helpful Maths.cpp │ ├── Is your horseshoe on the other hoof │ ├── Is your horseshoe on the other hoof.cpp │ ├── Iwannabetheguy.cpp │ ├── Juicer.cpp │ ├── Keyboard.cpp │ ├── Lineland Mail.cpp │ ├── Magnets.cpp │ ├── Mahmoud and Longest Uncommon Subsequence.cpp │ ├── New Password.cpp │ ├── Night at the Museum.cpp │ ├── Oath of the Night's Watch.cpp │ ├── OlesyaAndRodion.cpp │ ├── Petya and Strings.cpp │ ├── Police Recruits.cpp │ ├── Presents.cpp │ ├── Sereja and Dima.cpp │ ├── Shaass and Oskols.cpp │ ├── Snacktower.cpp │ ├── Stones on a Table.cpp │ ├── Team Olympiad.cpp │ ├── Team.cpp │ ├── Twins.cpp │ ├── ValeraAndX.cpp │ ├── Vanya and Fence.cpp │ ├── WatermelonProblem.cpp │ ├── Word.cpp │ ├── chatonline.cpp │ ├── evenodds.cpp │ ├── isItRated.cpp │ └── main.cpp ├── Round837 │ └── probA.cpp └── Round840Div2 │ ├── AbsoluteMaximization.cpp │ └── Incinerate.cpp ├── README.md └── USACO ├── Training Pages ├── Friday the 13.cpp ├── SquarePasture.cpp ├── beads.cpp ├── beads.cpp~ ├── friday.cpp ├── gift1.cpp ├── gift1.in ├── gift1.txt ├── ride.cpp └── test.cpp └── shellgame.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/.gitignore -------------------------------------------------------------------------------- /AtCoder/AtCoder Beginner Contest 261/Intersection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/AtCoder/AtCoder Beginner Contest 261/Intersection.cpp -------------------------------------------------------------------------------- /AtCoder/NS Solutions Corporation Programming Contest 2022/NS Solutions Corporation Programming Contest 2022.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/AtCoder/NS Solutions Corporation Programming Contest 2022/NS Solutions Corporation Programming Contest 2022.cbp -------------------------------------------------------------------------------- /AtCoder/NS Solutions Corporation Programming Contest 2022/NS Solutions Corporation Programming Contest 2022.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/AtCoder/NS Solutions Corporation Programming Contest 2022/NS Solutions Corporation Programming Contest 2022.depend -------------------------------------------------------------------------------- /AtCoder/NS Solutions Corporation Programming Contest 2022/NS Solutions Corporation Programming Contest 2022.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/AtCoder/NS Solutions Corporation Programming Contest 2022/NS Solutions Corporation Programming Contest 2022.layout -------------------------------------------------------------------------------- /AtCoder/NS Solutions Corporation Programming Contest 2022/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/AtCoder/NS Solutions Corporation Programming Contest 2022/main.cpp -------------------------------------------------------------------------------- /AtCoder/Practice/Hammer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/AtCoder/Practice/Hammer.cpp -------------------------------------------------------------------------------- /CodeChef/Ranklist Pages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/CodeChef/Ranklist Pages.cpp -------------------------------------------------------------------------------- /CodeChef/Reach The Target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/CodeChef/Reach The Target.cpp -------------------------------------------------------------------------------- /CodeChef/Remove Bad Elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/CodeChef/Remove Bad Elements.cpp -------------------------------------------------------------------------------- /Codeforces/Codeforces Global Round 21/CodeForces Global Round/CodeForces Global Round.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces Global Round 21/CodeForces Global Round/CodeForces Global Round.cbp -------------------------------------------------------------------------------- /Codeforces/Codeforces Global Round 21/CodeForces Global Round/CodeForces Global Round.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces Global Round 21/CodeForces Global Round/CodeForces Global Round.depend -------------------------------------------------------------------------------- /Codeforces/Codeforces Global Round 21/CodeForces Global Round/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces Global Round 21/CodeForces Global Round/main.cpp -------------------------------------------------------------------------------- /Codeforces/Codeforces Global Round 22/Glory Addicts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces Global Round 22/Glory Addicts.cpp -------------------------------------------------------------------------------- /Codeforces/Codeforces Round 774 Div 2/Codeforces Round 774 Div 2.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces Round 774 Div 2/Codeforces Round 774 Div 2.cbp -------------------------------------------------------------------------------- /Codeforces/Codeforces Round 774 Div 2/Codeforces Round 774 Div 2.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces Round 774 Div 2/Codeforces Round 774 Div 2.depend -------------------------------------------------------------------------------- /Codeforces/Codeforces Round 774 Div 2/Codeforces Round 774 Div 2.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces Round 774 Div 2/Codeforces Round 774 Div 2.layout -------------------------------------------------------------------------------- /Codeforces/Codeforces Round 774 Div 2/Problem 1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces Round 774 Div 2/Problem 1 -------------------------------------------------------------------------------- /Codeforces/Codeforces Round 774 Div 2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces Round 774 Div 2/main.cpp -------------------------------------------------------------------------------- /Codeforces/Codeforces Round 774 Div 2/main.cpp~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces Round 774 Div 2/main.cpp~ -------------------------------------------------------------------------------- /Codeforces/Codeforces Round 810 Div 2/Perfect Permutation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces Round 810 Div 2/Perfect Permutation.cpp -------------------------------------------------------------------------------- /Codeforces/Codeforces Round 824/Tea with Tangerines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces Round 824/Tea with Tangerines.cpp -------------------------------------------------------------------------------- /Codeforces/Codeforces Round 824/Working Week.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces Round 824/Working Week.cpp -------------------------------------------------------------------------------- /Codeforces/Codeforces_Round_295/.first.cpp.un~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces_Round_295/.first.cpp.un~ -------------------------------------------------------------------------------- /Codeforces/Codeforces_Round_295/first.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces_Round_295/first.cpp -------------------------------------------------------------------------------- /Codeforces/Codeforces_Round_295/first.cpp~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Codeforces_Round_295/first.cpp~ -------------------------------------------------------------------------------- /Codeforces/Practice/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Codeforces/Practice/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/.vscode/launch.json -------------------------------------------------------------------------------- /Codeforces/Practice/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/.vscode/settings.json -------------------------------------------------------------------------------- /Codeforces/Practice/Anton and Letters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Anton and Letters.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Anton_and_Danik.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Anton_and_Danik.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Bear and Big Brother.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Bear and Big Brother.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Beautiful Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Beautiful Matrix.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Black Square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Black Square.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Boy or Girl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Boy or Girl.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/BrainPhoto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/BrainPhoto.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Buy a Shovel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Buy a Shovel.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Carrot Cakes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Carrot Cakes.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Colorful Stones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Colorful Stones.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Die Roll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Die Roll.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Dubstep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Dubstep.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Football.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Football.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Free Ice Cream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Free Ice Cream.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Games.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Games.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Helpful Maths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Helpful Maths.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Is your horseshoe on the other hoof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Is your horseshoe on the other hoof -------------------------------------------------------------------------------- /Codeforces/Practice/Is your horseshoe on the other hoof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Is your horseshoe on the other hoof.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Iwannabetheguy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Iwannabetheguy.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Juicer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Juicer.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Keyboard.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Lineland Mail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Lineland Mail.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Magnets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Magnets.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Mahmoud and Longest Uncommon Subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Mahmoud and Longest Uncommon Subsequence.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/New Password.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/New Password.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Night at the Museum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Night at the Museum.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Oath of the Night's Watch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Oath of the Night's Watch.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/OlesyaAndRodion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/OlesyaAndRodion.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Petya and Strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Petya and Strings.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Police Recruits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Police Recruits.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Presents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Presents.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Sereja and Dima.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Sereja and Dima.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Shaass and Oskols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Shaass and Oskols.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Snacktower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Snacktower.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Stones on a Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Stones on a Table.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Team Olympiad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Team Olympiad.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Team.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Team.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Twins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Twins.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/ValeraAndX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/ValeraAndX.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Vanya and Fence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Vanya and Fence.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/WatermelonProblem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/WatermelonProblem.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/Word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/Word.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/chatonline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/chatonline.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/evenodds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/evenodds.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/isItRated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/isItRated.cpp -------------------------------------------------------------------------------- /Codeforces/Practice/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Practice/main.cpp -------------------------------------------------------------------------------- /Codeforces/Round837/probA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Round837/probA.cpp -------------------------------------------------------------------------------- /Codeforces/Round840Div2/AbsoluteMaximization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Round840Div2/AbsoluteMaximization.cpp -------------------------------------------------------------------------------- /Codeforces/Round840Div2/Incinerate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/Codeforces/Round840Div2/Incinerate.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/README.md -------------------------------------------------------------------------------- /USACO/Training Pages/Friday the 13.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /USACO/Training Pages/SquarePasture.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /USACO/Training Pages/beads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/USACO/Training Pages/beads.cpp -------------------------------------------------------------------------------- /USACO/Training Pages/beads.cpp~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/USACO/Training Pages/beads.cpp~ -------------------------------------------------------------------------------- /USACO/Training Pages/friday.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/USACO/Training Pages/friday.cpp -------------------------------------------------------------------------------- /USACO/Training Pages/gift1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/USACO/Training Pages/gift1.cpp -------------------------------------------------------------------------------- /USACO/Training Pages/gift1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/USACO/Training Pages/gift1.in -------------------------------------------------------------------------------- /USACO/Training Pages/gift1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /USACO/Training Pages/ride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/USACO/Training Pages/ride.cpp -------------------------------------------------------------------------------- /USACO/Training Pages/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevbit/CompetitiveProgramming/HEAD/USACO/Training Pages/test.cpp -------------------------------------------------------------------------------- /USACO/shellgame.cpp: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------