Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jdeokkim/atc-lab
A collection of my submissions for AtCoder contest problems.
https://github.com/jdeokkim/atc-lab
algorithms atcoder atcoder-contests atcoder-solutions c c99 data-structures
Last synced: 8 days ago
JSON representation
A collection of my submissions for AtCoder contest problems.
- Host: GitHub
- URL: https://github.com/jdeokkim/atc-lab
- Owner: jdeokkim
- License: mit
- Created: 2023-05-27T03:24:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-10T08:15:17.000Z (7 months ago)
- Last Synced: 2024-04-10T09:53:24.956Z (7 months ago)
- Topics: algorithms, atcoder, atcoder-contests, atcoder-solutions, c, c99, data-structures
- Homepage: https://github.com/jdeokkim/atc-lab
- Size: 54.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## 주의 사항
- 한 문제당 20 ~ 30분 정도 생각해보고 모르겠으면 바로 해설지의 풀이 과정을 꼼꼼하게 읽고 이해한 다음, 코드 직접 짜보기
- 해설지를 안 보고 문제를 풀었더라도 해설지를 읽어보며 또다른 풀이 과정이나 더 효율적인 방법이 있는지 꼭 확인하기```console
$ valgrind --tool=memcheck --leak-check=full --show-reachable=yes ./bin/main.out
```## 참고 자료
- [codeforces.com: Competitive Programming Roadmap (Target: [Gray, Blue])](https://codeforces.com/blog/entry/111099)
- [kenkooo.com: AtCoder Problems](https://kenkoooo.com/atcoder#/table/)
- [reddit.com: A Guide to Competitive Programming: r/csMajors](https://www.reddit.com/r/csMajors/comments/z4qjzx/a_guide_to_competitive_programming/)---
- [algs4.cs.princeton.edu: Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne](https://algs4.cs.princeton.edu/home/)
- [codeforces.com: On "Is this greedy or DP?", forcing and rubber bands](https://codeforces.com/blog/entry/106346)
- [zhu45.org: How to Write Binary Search Correctly](https://zhu45.org/posts/2018/Jan/12/how-to-write-binary-search-correctly/)