Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 다익스트라
- 그리디 알고리즘
- 정렬
- Team Fortress 2
- 그래프
- VR
- 스택
- 우선순위 큐
- 알고리즘
- 누적 합
- 백준
- 구현
- Unreal Engine 5
- 자료구조
- 재귀
- 수학
- BFS
- 문자열
- 백트래킹
- 시뮬레이션
- XR Interaction Toolkit
- 트리
- 투 포인터
- ue5
- 유니티
- DFS
- c++
- 브루트포스
- 다이나믹 프로그래밍
- 유니온 파인드
Archives
- Today
- Total
목록슬라임 합치기 C++ (1)
1일1알
백준 14241번 슬라임 합치기 C++
https://www.acmicpc.net/problem/14241 14241번: 슬라임 합치기 영선이와 효빈이는 슬라임을 합치는 게임을 하고 있다. 두 사람은 두 슬라임을 골라서 하나로 합쳐야 한다. 게임은 슬라임이 하나 남았을 때 끝난다. 모든 슬라임은 양수 크기를 가지고 있다. 두 www.acmicpc.net 우선순위 큐 #include #include #include #include #include #include #include using namespace std; int main() { int n; cin >> n; priority_queue pq; for (int i = 0; i > input; pq.push(input); } int scor..
알고리즘
2022. 11. 9. 16:20