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
- VR
- 그리디 알고리즘
- ue5
- 다이나믹 프로그래밍
- BFS
- 백트래킹
- 수학
- 우선순위 큐
- 문자열
- 스택
- 트리
- DFS
- 누적 합
- Unreal Engine 5
- 구현
- c++
- XR Interaction Toolkit
- 자료구조
- 정렬
- 다익스트라
- 백준
- 알고리즘
- 재귀
- 유니온 파인드
- 브루트포스
- 시뮬레이션
- Team Fortress 2
- 투 포인터
- 유니티
- 그래프
Archives
- Today
- Total
목록뮤탈리스크 C++ (1)
1일1알
백준 12869번 뮤탈리스크 C++
https://www.acmicpc.net/problem/12869 12869번: 뮤탈리스크 1, 3, 2 순서대로 공격을 하면, 남은 체력은 (12-9, 10-1, 4-3) = (3, 9, 1)이다. 2, 1, 3 순서대로 공격을 하면, 남은 체력은 (0, 0, 0)이다. www.acmicpc.net dp #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using int64 = long long; int n; vector v; vector cache; int ..
알고리즘
2022. 10. 22. 15:07