Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit cc47088

Browse files
레벨 추가
1 parent 4eb19e0 commit cc47088

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

‎README.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,30 @@
77

88
## 푼 문제
99

10-
| 문제 이름 | 난이도 | 메모 | 풀이 | 문제 출처 |
11-
|:----------:|:--------:|:-----:|:------:|:------:|
12-
| ATM | 🟩 | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ11399.md) | [문제](https://www.acmicpc.net/problem/11399) |
13-
| 연료 채우기 | 🟨 | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1826.md) | [문제](https://www.acmicpc.net/problem/1826) |
14-
| 로프 | 🟩 | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2217.md) | [문제](https://www.acmicpc.net/problem/2217) |
15-
| 전화번호 목록 | 🟨 | Trie(PrefixTree) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ5052.md) | [문제](https://www.acmicpc.net/problem/5052) |
16-
| 포도주 시식 | 🟨 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2156.md) | [문제](https://www.acmicpc.net/problem/2156) |
17-
| 알약 | 🟥 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ4811.md) | [문제](https://www.acmicpc.net/problem/4811) |
18-
| 쇠막대기 | 🟩 | 자료구조(스택) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ10799.md) | [문제](https://www.acmicpc.net/problem/10799) |
19-
| 나무 자르기 | 🟩 | 이진 탐색 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2805.md) | [문제](https://www.acmicpc.net/problem/2805) |
20-
| 강의실 배정 | 🟩 | 그리디 알고리즘, 자료구조(우선순위 큐) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ11000.md) | [문제](https://www.acmicpc.net/problem/11000) |
21-
| 최소 스패닝 트리 | 🟨 | Kruskal 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1197.md) | [문제](https://www.acmicpc.net/problem/1197) |
22-
| 숫자 정사각형 | 🟩 | 브루트 포스 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1051.md) | [문제](https://www.acmicpc.net/problem/1051) |
23-
| 파스타 | 🟥 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ5546.md) | [문제](https://www.acmicpc.net/problem/5546) |
24-
| 리모컨 | 🟨 | 브루트 포스 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1107.md) | [문제](https://www.acmicpc.net/problem/1107) |
25-
| 이중 우선순위 큐 | 🟩 | 자료구조(MULTI SET) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ7662.md) | [문제](https://www.acmicpc.net/problem/7662) |
26-
| 1로 만들기 | 🟩 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1463.md) | [문제](https://www.acmicpc.net/problem/1463) |
27-
| 맥주마시면서 걸어가기 | 🟨 | 그래프 이론 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ9205.md) | [문제](https://www.acmicpc.net/problem/9205) |
28-
| 적록색약 | 🟩 | 깊이우선 탐색 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ10026.md) | [문제](https://www.acmicpc.net/problem/10026) |
29-
| 제곱 ᄂᄂ 수 | 🟥 | 에라토스테네스의 체 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1016.md) | [문제](https://www.acmicpc.net/problem/1016) |
30-
| RGB 거리 | 🟨 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1149.md) | [문제](https://www.acmicpc.net/problem/1149) |
31-
| 트리의 지름 | 🟨 | 그래프 이론 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1167.md) | [문제](https://www.acmicpc.net/problem/1167) |
32-
| 트리의 순회 | 🟥 | 분할 정복 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2263.md) | [문제](https://www.acmicpc.net/problem/2263) |
33-
| 서강 그라운드 | 🟨 | 프롤이드 와샬 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ14938.md) | [문제](https://www.acmicpc.net/problem/14938) |
10+
| 레벨 |문제 이름 | 난이도 | 메모 | 풀이 | 문제 출처 |
11+
|:----------:|:--------:|:-----:|:------:|:------:|:------:|
12+
| <imgsrc="https://static.solved.ac/tier_small/8.svg"height="18px"> |[ATM](https://www.acmicpc.net/problem/11399) | 🟩 | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ11399.md) | [문제](https://www.acmicpc.net/problem/11399) |
13+
| <imgsrc="https://static.solved.ac/tier_small/13.svg"height="18px"> |[연료 채우기](https://www.acmicpc.net/problem/1826) | 🟨 | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1826.md) | [문제](https://www.acmicpc.net/problem/1826) |
14+
| <imgsrc="https://static.solved.ac/tier_small/7.svg"height="18px"> |[로프](https://www.acmicpc.net/problem/2217) | 🟩 | 그리디 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2217.md) | [문제](https://www.acmicpc.net/problem/2217) |
15+
| <imgsrc="https://static.solved.ac/tier_small/12.svg"height="18px"> |[전화번호 목록](https://www.acmicpc.net/problem/5052) | 🟨 | Trie(PrefixTree) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ5052.md) | [문제](https://www.acmicpc.net/problem/5052) |
16+
| <imgsrc="https://static.solved.ac/tier_small/10.svg"height="18px"> |[포도주 시식](https://www.acmicpc.net/problem/2156) | 🟨 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2156.md) | [문제](https://www.acmicpc.net/problem/2156) |
17+
| <imgsrc="https://static.solved.ac/tier_small/11.svg"height="18px"> |[알약](https://www.acmicpc.net/problem/4811) | 🟥 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ4811.md) | [문제](https://www.acmicpc.net/problem/4811) |
18+
| <imgsrc="https://static.solved.ac/tier_small/8.svg"height="18px"> |[쇠막대기](https://www.acmicpc.net/problem/10799) | 🟩 | 자료구조(스택) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ10799.md) | [문제](https://www.acmicpc.net/problem/10799) |
19+
| <imgsrc="https://static.solved.ac/tier_small/8.svg"height="18px"> |[나무 자르기](https://www.acmicpc.net/problem/2805) | 🟩 | 이진 탐색 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2805.md) | [문제](https://www.acmicpc.net/problem/2805) |
20+
| <imgsrc="https://static.solved.ac/tier_small/11.svg"height="18px"> |[강의실 배정](https://www.acmicpc.net/problem/11000) | 🟩 | 그리디 알고리즘, 자료구조(우선순위 큐) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ11000.md) | [문제](https://www.acmicpc.net/problem/11000) |
21+
| <imgsrc="https://static.solved.ac/tier_small/12.svg"height="18px"> |[최소 스패닝 트리](https://www.acmicpc.net/problem/1197) | 🟨 | Kruskal 알고리즘 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1197.md) | [문제](https://www.acmicpc.net/problem/1197) |
22+
| <imgsrc="https://static.solved.ac/tier_small/8.svg"height="18px"> |[숫자 정사각형](https://www.acmicpc.net/problem/1051) | 🟩 | 브루트 포스 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1051.md) | [문제](https://www.acmicpc.net/problem/1051) |
23+
| <imgsrc="https://static.solved.ac/tier_small/11.svg"height="18px"> |[파스타](https://www.acmicpc.net/problem/5546) | 🟥 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ5546.md) | [문제](https://www.acmicpc.net/problem/5546) |
24+
| <imgsrc="https://static.solved.ac/tier_small/11.svg"height="18px"> |[리모컨](https://www.acmicpc.net/problem/1107) | 🟨 | 브루트 포스 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1107.md) | [문제](https://www.acmicpc.net/problem/1107) |
25+
| <imgsrc="https://static.solved.ac/tier_small/11.svg"height="18px"> |[이중 우선순위 큐](https://www.acmicpc.net/problem/7662) | 🟩 | 자료구조(MULTI SET) | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ7662.md) | [문제](https://www.acmicpc.net/problem/7662) |
26+
| <imgsrc="https://static.solved.ac/tier_small/8.svg"height="18px"> |[1로 만들기](https://www.acmicpc.net/problem/1463) | 🟩 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1463.md) | [문제](https://www.acmicpc.net/problem/1463) |
27+
| <imgsrc="https://static.solved.ac/tier_small/10.svg"height="18px"> |[맥주 마시면서 걸어가기](https://www.acmicpc.net/problem/9205) | 🟨 | 그래프 이론 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ9205.md) | [문제](https://www.acmicpc.net/problem/9205) |
28+
| <imgsrc="https://static.solved.ac/tier_small/11.svg"height="18px"> |[적록색약](https://www.acmicpc.net/problem/10026) | 🟩 | 깊이우선 탐색 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ10026.md) | [문제](https://www.acmicpc.net/problem/10026) |
29+
| <imgsrc="https://static.solved.ac/tier_small/15.svg"height="18px"> |[제곱 ᄂᄂ 수](https://www.acmicpc.net/problem/1016) | 🟥 | 에라토스테네스의 체 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1016.md) | [문제](https://www.acmicpc.net/problem/1016) |
30+
| <imgsrc="https://static.solved.ac/tier_small/10.svg"height="18px"> |[RGB 거리](https://www.acmicpc.net/problem/1149) | 🟨 | 다이나믹 프로그래밍 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1149.md) | [문제](https://www.acmicpc.net/problem/1149) |
31+
| <imgsrc="https://static.solved.ac/tier_small/13.svg"height="18px"> |[트리의 지름](https://www.acmicpc.net/problem/1167) | 🟨 | 그래프 이론 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ1167.md) | [문제](https://www.acmicpc.net/problem/1167) |
32+
| <imgsrc="https://static.solved.ac/tier_small/13.svg"height="18px"> |[트리의 순회](https://www.acmicpc.net/problem/2263) | 🟥 | 분할 정복 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ2263.md) | [문제](https://www.acmicpc.net/problem/2263) |
33+
| <imgsrc="https://static.solved.ac/tier_small/12.svg"height="18px"> |[서강 그라운드](https://www.acmicpc.net/problem/14938) | 🟨 | 프롤이드 와샬 | [C++](https://github.com/techbless/algorithm-playground/blob/master/challenges/BOJ14938.md) | [문제](https://www.acmicpc.net/problem/14938) |
3434

3535

3636
## 자료구조 & 알고리즘

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /