This repository contains results of my struggles with codeforces -> my solutions to various problems implemented in C++. Each problem solution is written in a separate file, organized by the problem code and round number. On top of each file I included problem name and link to the problemn page
I'm still new into competitive programming, but after first year of theoretical computer science at uni I decided to give it a go. Keep in mind those might not be the most optimal solutions, and there may be some errors or bad practices, even though I try my best to refine the code.
You can browse through the repository to find solutions for specific Codeforces problems. Each solution is contained in a separate C++ file, named after the problem code.
To use the solutions, follow these steps:
- Clone the repository to your local machine using the following command:
git clone https://github.com/akwasniewski/CodeForces.git
- Navigate to correct directory using the following command:
cd CodeForces
To run specific solution having it's code (filename excluding extension) make sure you have g++ installed and use the following commands. Input structure can be found in problem description on codeforces website which you can use access via the link on top.
g++ -o solution_code solution_code.cc
./solution_code
This repository is licensed under the MIT License