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

문제에 쓰여있는 대로 구현을 했는데 구현하는데 시간이 꽤 걸렸다. 생각보다 까다로웠던 문제였다. #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; vector v(11, vector(5)); vector visited(11, false); vector th; int origin_match = 0; int match_max = 100; void Solve() { bool isOrigin = true; for (int i = 0; i < 5; i++) { v[1][i] = t..
알고리즘
2022. 2. 1. 22:25