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

a에서 b로 옮기는 경우와 b에서 a로 옮기는 경우가 배치되는 순서만 다를 뿐, 결과는 같기 때문에 순서를 신경쓰지 않고 방문 표시를 하며 bfs 탐색으로 문제를 해결하였다. #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; struct Stones { int a; int b; int c; }; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int a, b, c; ..
알고리즘
2022. 3. 2. 12:10