Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ivaniscoding/competitiveprogramming
Solutions to 1500+ problems from ACM ICPC and OIs hosted on DMOJ, SPOJ, and beecrowd
https://github.com/ivaniscoding/competitiveprogramming
algorithm-competitions algorithms algorithms-and-data-structures beecrowd beecrowd-solutions competitive-programming cplusplus data-structures dmoj dmoj-solutions dmoj-submissions python spoj spoj-solutions uri-online-judge
Last synced: 21 days ago
JSON representation
Solutions to 1500+ problems from ACM ICPC and OIs hosted on DMOJ, SPOJ, and beecrowd
- Host: GitHub
- URL: https://github.com/ivaniscoding/competitiveprogramming
- Owner: IvanIsCoding
- Created: 2018-04-30T13:58:32.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-03-14T03:46:50.000Z (8 months ago)
- Last Synced: 2024-10-11T09:34:44.988Z (about 1 month ago)
- Topics: algorithm-competitions, algorithms, algorithms-and-data-structures, beecrowd, beecrowd-solutions, competitive-programming, cplusplus, data-structures, dmoj, dmoj-solutions, dmoj-submissions, python, spoj, spoj-solutions, uri-online-judge
- Language: C++
- Homepage:
- Size: 2.25 MB
- Stars: 73
- Watchers: 2
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Competitive Programming [![Algorithms](https://img.shields.io/badge/-algorithms-green.svg)](https://github.com/topics/algorithms) [![Data Structures](https://img.shields.io/badge/-data%20structures-green.svg)](https://github.com/topics/data-structures)
This repository contains solutions to a plethora of competitive programming problems that come mainly from 3 online judges:* [DMOJ](https://dmoj.ca/) - 400+ problems
* [SPOJ](http://www.spoj.com/) - 200+ problems
* [Beecrowd (formerly known as URI Online Judge)](https://www.beecrowd.com.br/judge/pt) - 850+ problems## Structure
The files are separated in folders according to the judge. Each file has the name of the problem it is meant to solve plus the extension of the language it uses (C++ or Python). In addition, each file has a header that links to the problem it solves.
## About the solutions
Most solutions were coded between Mid 2016 and Late 2018. They were inteded as a training for the [Brazilian Olympiad in Informatics](https://olimpiada.ic.unicamp.br/) and the [International Olympiad in Informatics](http://ioinformatics.org/index.shtml). These solutions might be helpful to future competitors, so I am sharing them as a form of reference.Because the solutions were meant for competitions, they **do** contain software practices that should be avoided. Global variables are frequent in the codes, all the C++ librarys are imported and most of the code is not commented. The readers should keep this is mind and be aware that they should not code like that outstide programming contests.
## About the author
I have participated in many programming competitions, such as the International Olympiad in Informatics, the Brazilian Olympiad in Informatics, the Ibero-American Contest in Informatics and ICPC PacNW. To read more about my experience in competitive programming, see my [blog](https://ivaniscoding.github.io/about/index.html).