https://github.com/hrishibawane/cses-problem-set-solutions
Solutions to CSES Problem Set
https://github.com/hrishibawane/cses-problem-set-solutions
algorithms cses-solutions data-structures
Last synced: 7 months ago
JSON representation
Solutions to CSES Problem Set
- Host: GitHub
- URL: https://github.com/hrishibawane/cses-problem-set-solutions
- Owner: hrishibawane
- Created: 2020-06-14T21:45:21.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-03T20:45:38.000Z (over 5 years ago)
- Last Synced: 2025-03-16T00:26:45.788Z (about 1 year ago)
- Topics: algorithms, cses-solutions, data-structures
- Language: C++
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cses-problem-set-solutions
Solutions to CSES Problem Set
Here is the link to the [CSES problem set site](https://cses.fi/problemset/)
Notes:
- **Graph Problems**:
1. *Shortest Path in Unweighted Graph* => DS: Adj list, Algo: BFS(with distance and predecessor track)
2. *Min. edges to make graph connected* => No. of connected components - 1
3. *Bipartite check* => DS: Adj list, Algo: BFS(graph coloring with 2-colors)