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 | 31 |
Tags
- Team Fortress 2
- 수학
- 트리
- 유니온 파인드
- 누적 합
- 다이나믹 프로그래밍
- 다익스트라
- 문자열
- 그래프
- 우선순위 큐
- 재귀
- ue5
- 백준
- VR
- 투 포인터
- DFS
- 브루트포스
- 구현
- c++
- 정렬
- 알고리즘
- 그리디 알고리즘
- 유니티
- BFS
- XR Interaction Toolkit
- 시뮬레이션
- 스택
- Unreal Engine 5
- 자료구조
- 백트래킹
Archives
- Today
- Total
목록캐슬 디펜스 C++ (1)
1일1알

문제에 나와있는대로 구현을 하면 되는데 구현 난이도가 은근 높았다. #include #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, m, d; int Cnt = 0; int ans = 0; struct Pos { int row; int col; bool operator==(const Pos& other) const{ if (row == other.row && col == other.col) return t..
알고리즘
2022. 9. 18. 13:13